【发布时间】:2021-11-08 05:00:45
【问题描述】:
【问题讨论】:
-
请提供足够的代码,以便其他人更好地理解或重现问题。
标签: react-native expo react-component react-navigation-bottom-tab
【问题讨论】:
标签: react-native expo react-component react-navigation-bottom-tab
在NewsFeedScreen 文件中添加带有position : 'absolute' 的底部视图并将输入放入其中
你的NewsFeedScreen 文件应该像这样返回
return(
<View style={{flex:1}}>
//your content here
<View style={{position : 'absolute', bottom : 0, width : '100%'}}>
<TextInput/>
</View>
</View>
)
【讨论】: