Modal频繁显示隐藏

在IOS下,使用RN原生的Modal,频繁的显示和隐藏会出现一直不消失的bug。

  • 解决方法:使用第三方库react-native-root-modal,安装方法看里面的文档。

  • 使用方法:使用原生的写好后,替换Modal的导入

import Modal from 'react-native-root-modal';

然后在Modal上添加相应的style:

....other elements before

    ... You can add anything inside

....other elements after

重新启动应用,完成。

你可能感兴趣的:(Modal频繁显示隐藏)