react-native-smart-scroll-view icon indicating copy to clipboard operation
react-native-smart-scroll-view copied to clipboard

A smart scroll view component with handling of keyboard events

Results 13 react-native-smart-scroll-view issues
Sort by recently updated
recently updated
newest added

Change styles of flex1 from `{flex: 1}` to `{flexGrow: 1}` ``` const styles = StyleSheet.create({ flex1: { flexGrow: 1 } }); ```

migrate to react native 0.39. change flex:1 to flexGrow:1. This would fix the folowing error which occured on the keyboard open: attempted to set an invalid frame to inner scrollview

Rendering children as an array breaks some components, such as TouchableWithoutFeedback. Fixes https://github.com/jrans/react-native-smart-scroll-view/issues/31.

Not working for react-native 0.38.1, Reason: 0.38.1 scrollview implementation uses **flexGrow** instead of **flex** Solution: Change styles of flex1 from `{flex: 1}` to `{flexGrow: 1}` ``` const styles = StyleSheet.create({...

Hey, We've noticed a crash (only happened once...) where layout hasn't populated yet, and the keyboard has shown Cheers,

Pretty straightforward, let me know if I missed anything. Thanks!

If you nest a `TouchableWithoutFeedback` inside a `SmartScrollView`, it will throw an invariant error: `React.Children.only expected to receive a single React element child.` It appears that it expects a single...

Hi I can't seem to get this working. I think the examples are a lot more complicated than they need to be. What are the minimum steps required to make...

Is there an option to configure this scrollview to support bouncing on iOS?