react-native-keyboard-aware-scroll-view
react-native-keyboard-aware-scroll-view copied to clipboard
A ScrollView component that handles keyboard appearance and automatically scrolls to focused TextInput.
Currently passing a ref to `innerRef` does not work, as we have to provide a function A workaround is simple: ```js constructor(props) { super(props); this.scrollViewRef = React.createRef(); } handleRef =...
Is `KeyboardAwareFlatList` not typed? I'm using it like: ```typescript { ... } /> ``` Even though `data` is typed as `Item[]`, `item` is `any`. What am I doing wrong? Shouldn't...
Hey team, played around and in many ways this library works like a charm. I noticed one ~kind of bug. - If I have a KeyboardAwareScrollView, with a multiline TextInput:...
I have bottom empty space, it cause extraScrollHeight ``` "react-native-keyboard-aware-scroll-view": "^0.8.0", "react-native": "0.55.4", ``` My code ``` // CONTENT ``` 
In our test suite (jest + react-native-testing-library) `Platform.constants` is an empty object. This was making the previous `!Platform.constants` check pass, but caused a crash when trying to access `major` on...
Currently when using innerRef in a Typescript project the ref provided is a generic React Element which removes the ability to do FlatList/SectionList/ScrollView methods like `scrollToIndex`. The PR types innerRef...
Hi, How can I add a button to stick to the top of the keyboard always when the keyboard shows up?
They downloaded the module and did not have an example, so they said they could not find the function. Error message is: > undefined is not a function (evaluating 'this.scroll.props._scrollToFocusedInput(reactNode)')...
Issue Video : https://user-images.githubusercontent.com/42121055/131109600-1bc3c8dc-07da-43b6-b9de-5d8fbbf63339.mp4 I have used these props: enableOnAndroid={true} keyboardShouldPersistTaps={"handled"} style={Styles.parentScrollView} enableResetScrollToCoords={false} style: parentScrollView: { flexGrow: 1, paddingLeft: 20, paddingRight: 20, marginTop: DW(10) } It is specific for iOS...
For alternative build tools like swc that don't support babel's flow-strip-types out of the box, could flow types be removed in the published package? This tool could do the job:...