【问题标题】:I wonder to make input components above bottom navigation react native expo我想知道让底部导航上方的输入组件反应原生博览会
【发布时间】:2021-11-08 05:00:45
【问题描述】:

您好,我的组件样式有问题。

我想在底部导航上方做一些类似于的输入组件

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

非常感谢

【问题讨论】:

  • 请提供足够的代码,以便其他人更好地理解或重现问题。

标签: react-native expo react-component react-navigation-bottom-tab


【解决方案1】:

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


return(

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

   //your content here


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

  </View>

)

【讨论】:

  • 谢谢,它就像一个魅力,现在我在显示后在键盘上方制作输入容器时遇到问题
猜你喜欢
  • 1970-01-01
  • 2020-09-01
  • 2019-04-15
  • 2021-10-17
  • 2022-10-23
  • 2020-04-23
  • 1970-01-01
  • 1970-01-01
  • 2023-03-11
相关资源
最近更新 更多