当我使用 Shoutem UI NavigationBar 时,之后的内容位于导航栏的顶部。我怎样才能把它移下来?
问问题
209 次
2 回答
0
目前这种模式似乎是最好的选择
<Screen
style={{ paddingTop: 70 }}
>
<NavigationBar
centerComponent={<Title>Title</Title>}
/>
<Title>Content now below NavigationBar</Title>
</Screen>
于 2018-02-15T12:12:48.107 回答
0
inline
styleName
如文档中所述,使用将解决此问题。
从文档:
- inline:强制组件的相对定位
NavigationBar
,允许组件与其他组件内联使用,即ListView
其内容不重叠NavigationBar
例子:
<NavigationBar
styleName="inline"
title="My Title"
/>
<Button>
<Text>My text.</Text>
</Button>
于 2018-02-20T09:38:16.687 回答