Warning: isMounted(…) is deprecated in plain Javascript Classes

前端 未结 11 1015
庸人自扰
庸人自扰 2020-12-29 03:20

I am implementing 2 screens using react-navigation. But I got the warning below while navigating to the second page:

Warning: isMounted(...) is deprec

11条回答
  •  旧时难觅i
    2020-12-29 03:23

    Use this statement in index.js:

    import { YellowBox } from 'react-native';
    YellowBox.ignoreWarnings(['Warning: isMounted(...) is deprecated', 'Module RCTImageLoader']);
    

提交回复
热议问题