我想知道让底部导航上方的输入组件反应本机博览会

I wonder to make input components above bottom navigation react native expo

嗨,我对组件样式有疑问。

我想在底部导航上方制作一些类似于

的输入组件

我是 React Native 的新手, 也许你可以提供一些文章或视频来存档。

非常感谢

NewsFeedScreen 文件中添加带有 position : 'absolute' 的底部视图并在其中输入内容
您的 NewsFeedScreen 文件应该像这样返回


return(

  <View style={{flex:1}}>

   //your content here


    <View style={{position : 'absolute', bottom : 0, width : '100%'}}>
       <TextInput/>
    </View>

  </View>

)