nikhilaravi / react-native-smart-scroll-view

A smart scroll view component with handling of keyboard events
MIT License
153 stars 31 forks source link

Not working for react-native 0.38.1 #36

Open Durgaprasad-Budhwani opened 7 years ago

Durgaprasad-Budhwani commented 7 years ago

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
  }
});