fix messageinput send icon
This commit is contained in:
@@ -1719,17 +1719,17 @@ class MessageInputState extends State<MessageInput> {
|
|||||||
if (_commandEnabled) {
|
if (_commandEnabled) {
|
||||||
return 'Icon_search.svg';
|
return 'Icon_search.svg';
|
||||||
} else {
|
} else {
|
||||||
return 'Icon_circle_up.svg';
|
return 'Icon_circle_right.svg';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
String _getSendIcon() {
|
String _getSendIcon() {
|
||||||
if (widget.editMessage != null) {
|
if (widget.editMessage != null) {
|
||||||
return 'Icon_circle_right.svg';
|
return 'Icon_circle_up.svg';
|
||||||
} else if (_commandEnabled) {
|
} else if (_commandEnabled) {
|
||||||
return 'Icon_search.svg';
|
return 'Icon_search.svg';
|
||||||
} else {
|
} else {
|
||||||
return 'Icon_circle_right.svg';
|
return 'Icon_circle_up.svg';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user