从react-navigation 6开始(虽然在react-navigation 5上一切正常),我的键盘不再适用于 iOS(在 Android 上没问题):它们在打开时自动关闭。

我根据官方文档重新创建了一个非常简单的示例。这个简单的例子不起作用:
<View style={{ flex: 1, justifyContent: 'center' }}>
<Text>Feed!</Text>
<TextInput style={{backgroundColor: 'yellow', padding: 5, margin: 15}} placeholder="Text input ..." />
</View>
- https://snack.expo.dev/FsiQ3p0zo:不适用于 iOS。我正在使用
react-navigation/material-top-tabsANDreact-navigation/material-bottom-tabs。 - https://snack.expo.dev/fydHSeOJi:在 iOS 上工作
react-navigation/material-top-tabs:我只使用. - https://snack.expo.dev/ydn-i4P8G:在 iOS 上工作
react-navigation/material-bottom-tabs:我只使用.
我认为当我同时使用react-navigation/material-top-tabs和时会出现这个问题react-navigation/material-bottom-tabs。