I'm trying to use the react-native-keyboard-aware-scroll-view library (0.2.7). It does absolutely nothing for me. What am I doing wrong?
import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view'
render() {
return (
<KeyboardAwareScrollView>
<View>
<TextInput placeholder='hi1' />
<TextInput placeholder='hi2' />
<TextInput placeholder='hi3' />
<TextInput placeholder='hi4' />
<TextInput placeholder='hi5' />
<TextInput placeholder='hi6' />
<TextInput placeholder='hi7' />
</View>
</KeyboardAwareScrollView>
)
}