我试图在 react-native 中修复屏幕底部的标签栏,当我输入一些文本或写东西时,标签栏出现在键盘的顶部,它不再固定在底部。我也试过绝对位置,
在这里,我附上了我给 tabNavigator 的代码
<Tab.Navigator
screenOptions={{
headerShown: false,
tabBarActiveTintColor: '#000',
tabBarInactiveTintColor: '#fff',
tabBarShowLabel: true,
tabBarStyle: {
backgroundColor: '#327B5B',
position: 'absolute',
bottom: 0,
left: 0,
elevation: 0,
// flex: 1,
height: 70,
paddingBottom: 10,
},
}}>