Я использую активный компонент TextInput.Здесь мне нужно показать InputBox над клавиатурой, если пользователь нажимает на поле textInput.
Я пробовал ниже, но я сталкиваюсь с проблемами
1.Клавиатура, избегающая обзора
a. Here it shows some empty space below the input box
b. Manually I need to scroll up the screen to see the input field which I was given in the text field
c. Input box section is hiding while placing the mouse inside the input box
2.response-native-Keyboard-aware-scroll-view
a.It shows some empty space below the input box
b.ScrollView is reset to the top of the page after I moving to the next input box
Здесь я устанавливаю Keyboard-aware-scroll-view внутри компонента ScrollView
Просьба уточнить
Мой пример кода:
<SafeAreaView>
<KeyboardAvoidingView>
<ScrollView>
<Text>Name</Text>
<AutoTags
//required
suggestions={this.state.suggestedName}
handleAddition={this.handleAddition}
handleDelete={this.handleDelete}
multiline={true}
placeholder="TYPE IN"
blurOnSubmit={true}
style= {styles.style}
/>
</ScrollView>
</KeyboardAvoidingView>
</SafeAreaView>
[https://github.com/APSL/react-native-keyboard-aware-scroll-view]