i want to hidden this area What shall I do? thanks
Asked
Active
Viewed 199 times
0
-
Please share your TextInput Code – Bhavya Koshiya Jul 13 '22 at 04:17
-
Check returnKeyType prop in TextInput – Hardik Chavda Jul 13 '22 at 04:19
-
tranks @BhavyaKoshiya – Land Chen Jul 13 '22 at 06:06
2 Answers
0
<TextInput
returnKeyType={'default'}
autoFocus
style={{ paddingBottom: 97,height: 238,padding: 0}}
// blurOnSubmit={true}
multiline={true}
// onSubmitEditing={onConfirm}
// maxLength={30}
// autoCorrect={false}
clearButtonMode={'always'}
textContentType={'none'}
placeholder={'Please enter note'}
placeholderTextColor={'#454545'}
value={note}
enablesReturnKeyAutomatically
caretHidden
keyboardType="default"
blurOnSubmit={false}
contextMenuHidden={false}
inputAccessoryViewID={inputAccessoryViewID}
// disableFullscreenUI={false}
onChangeText={noteChanged}
></TextInput>
-
As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Ivan Lynch Jul 14 '22 at 02:25
0
Remove these props from TextInput
enablesReturnKeyAutomatically
returnKeyType={'default'}

Bhavya Koshiya
- 1,262
- 2
- 8
- 22