File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
components/Messages/components Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -517,7 +517,7 @@ const MessageList: React.FunctionComponent<MessageListProps> = ({
517517 height : address
518518 ? `${
519519 100 -
520- ( ( memoFieldHeight + ( keyboardVisible ? ( Platform . OS === GlobalConst . platformOSandroid ? 0 : 60 ) : 0 ) ) *
520+ ( ( memoFieldHeight + ( keyboardVisible ? ( Platform . OS === GlobalConst . platformOSandroid ? 40 : 60 ) : 0 ) ) *
521521 100 ) /
522522 dimensions . height
523523 } %`
@@ -794,7 +794,7 @@ const MessageList: React.FunctionComponent<MessageListProps> = ({
794794 < View
795795 style = { {
796796 height : `${
797- ( ( memoFieldHeight + ( keyboardVisible ? ( Platform . OS === GlobalConst . platformOSandroid ? 0 : 60 ) : 0 ) ) *
797+ ( ( memoFieldHeight + ( keyboardVisible ? ( Platform . OS === GlobalConst . platformOSandroid ? 40 : 60 ) : 0 ) ) *
798798 100 ) /
799799 dimensions . height
800800 } %`,
@@ -894,6 +894,7 @@ const MessageList: React.FunctionComponent<MessageListProps> = ({
894894 { ! ! memoIcon && ! disableSend && (
895895 < TouchableOpacity
896896 onPress = { ( ) => {
897+ Keyboard . dismiss ( ) ;
897898 setMemoModalVisible ( true ) ;
898899 } } >
899900 < FontAwesomeIcon style = { { margin : 7 } } size = { 30 } icon = { faMagnifyingGlassPlus } color = { colors . border } />
You can’t perform that action at this time.
0 commit comments