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({ flex1: { flexGrow: 1 } }); ```
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}