"react-native": "^0.44.0"

This commit is contained in:
MichaelSun 2017-05-25 17:24:15 +08:00
parent ebb089d763
commit 5270092dc8
2 changed files with 18 additions and 18 deletions

View File

@ -99,7 +99,7 @@ export default class InputScrollView extends Component {
<ScrollView
style={{ flex: 1 }}
contentContainerStyle={[{ alignItems: 'stretch', }]}
keyboardShouldPersistTaps = {tapToDismiss?true:keyboardShouldPersistTaps}
keyboardShouldPersistTaps={tapToDismiss ? 'always' : keyboardShouldPersistTaps ? always : 'never'}
ref={(srcollView) => {
this.scrollViewRef = srcollView;
}}

View File

@ -26,6 +26,6 @@
"semver": "^5.1.0"
},
"peerDependencies": {
"react-native": "^0.35.0"
"react-native": "^0.44.0"
}
}