React Native Modal 背景无法正常工作

问题描述

我正在使用 react-native-modal

这是我的模态

import Modal from 'react-native-modal';
..
....
..
   <Modal
      visible={modalVisible} //this one was the issue (should be isVisible)
      animationType={'slide'}
      swipeDirection="down"
      transparent={true}
      onRequestClose={() => closeModal()}
      onSwipeComplete={() => closeModal()}
      style={{justifyContent: 'flex-end',margin: 0}}
    >
    </Modal>

如您所见,我的想法是将其打开一半并向下滑动以关闭

我的问题是它表现得很奇怪,模态没有正确更新,有时模态的打开方式比预期的要少

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)