react-native-keyboard-controller在Android上的statusBar 一直无法全屏,
在后面加上statusBarTranslucent
<KeyboardProvider statusBarTranslucent>
webView上键盘遮挡
使用 组件KeyboardAvoidingView
<KeyboardAvoidingView style={{flex: 1}}
behavior={!isIOS ? 'height' : 'padding'}>
<WebView style={{ flex: 1}}
automaticallyAdjustContentInsets={true}/>
</KeyboardAvoidingView>