React-native 關於鍵盤遮擋界面問題

//引入 KeyboardAvoidingView 
import { KeyboardAvoidingView } from 'react-native';

//使用 KeyboardAvoidingView 
render(){
    return <KeyboardAvoidingView behavior={'padding'} style={{flex: 1}}>
        {/*具體頁面內容*/}
    </KeyboardAvoidingView>
}

//android 已經處理 其實只須要處理Ios 就能夠了  

可是有個問題 當使用scrollView  時,再其中的元素依舊會被遮擋,須要注意react

一般在框架搭建之初就應該添加適配寫法android

相關文章
相關標籤/搜索