0

Screenshot

i want to hidden this area What shall I do? thanks

2 Answers2

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

  1. enablesReturnKeyAutomatically
  2. returnKeyType={'default'}
Bhavya Koshiya
  • 1,262
  • 2
  • 8
  • 22