File tree 3 files changed +6
-1
lines changed
3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " enderchat" ,
3
- "version" : " 0.0.1" ,
3
+ "version" : " 1. 0.0-alpha .1" ,
4
4
"private" : true ,
5
5
"license" : " MPL-2.0" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -148,6 +148,10 @@ const ChatScreen = ({ navigation }: { navigation: ChatNavigationProp }) => {
148
148
value = { message }
149
149
onChangeText = { setMessage }
150
150
style = { styles . textField }
151
+ onSubmitEditing = { sendMessage }
152
+ enablesReturnKeyAutomatically
153
+ returnKeyType = 'send'
154
+ blurOnSubmit = { false }
151
155
/>
152
156
< Ionicons . Button name = 'ios-send-sharp' onPress = { sendMessage } >
153
157
Send
Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ const SettingScreen = () => {
71
71
const darkModeApp = useDarkMode ( )
72
72
const { settings, setSettings } = useContext ( SettingsContext )
73
73
74
+ // TODO: Setting to disable autocomplete.
74
75
return (
75
76
< >
76
77
< View style = { darkModeApp ? globalStyle . darkHeader : globalStyle . header } >
You can’t perform that action at this time.
0 commit comments