【发布时间】:2017-05-22 12:09:59
【问题描述】:
所以我使用 react-native-gifted 聊天和反应导航。我的问题是我将标签栏设置为 false,但天才聊天的输入框呈现在它认为是标签栏的上方 - 这是隐藏的。
我怎样才能让它呈现全屏,或者让它不在隐藏的标签栏上方浮动。
static navigationOptions = () => ({
title: 'CHAT',
tabBarLabel: 'Chat',
tabBarVisible: false,
tabBarIcon: ({ tintColor }) => (
<View>
<Icon
name="comment"
style={{ color: tintColor, fontSize: 32 }} />
</View>
),
});
【问题讨论】:
标签: react-native react-navigation