Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当单击按钮打开模式时,它第一次工作。在第二次尝试时,应用程序崩溃而没有任何错误日志。
反应原生版本:0.61
诀窍是将Modal标签作为子组件放置在中,KeyboardAvoidingView而不是其他地方。
Modal
KeyboardAvoidingView
像这样:
<KeyboardAvoidingView> <Text> Please upvote! </Text> <Modal ... > </Modal> </KeyboardAvoidingView>
这对我有用。
希望能帮助到你。