nikhilaravi / react-native-smart-scroll-view

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

To support 0.38.1, we have changed style #37

Open curvedtrunk opened 7 years ago

curvedtrunk commented 7 years ago

Change styles of flex1 from {flex: 1} to {flexGrow: 1}

const styles = StyleSheet.create({
  flex1: {
    flexGrow: 1
  }
});
curvedtrunk commented 7 years ago

keyboardShouldPersistTaps = {true} is deprecated in RN 0.40 Use keyboardShouldPersistTaps = "always"