【发布时间】:2019-01-25 23:39:29
【问题描述】:
如果你看一下状态栏左边的时间,你可以看到部分滚动视图显示。向上滚动时,我可以看到所有元素(选择器、文本输入等)在状态栏下方滚动的滚动视图。
我的层次结构是这样的
<React.Fragment>
<SafeAreaView forceInset={true} style={{ flex: 1, backgroundColor: colors.black, zIndex: 10000 }}>
<View style={{flex:1}}>
<Header/> //has certain height. had to add zIndex=10000 to avoid same issue
<KeyboardAvoidingView behavior='position'>
<ScrollViewWithContent/>
</KeyboardAvoidingView>
</View>
</SafeAreaView>
</React.Fragment>
你看到什么明显的不对了吗?
【问题讨论】: