Setting a timer for a long period of time, i.e. multiple minutes

前端 未结 14 1252
面向向阳花
面向向阳花 2020-12-02 12:23

I want to use firebase auth with react native for Login and Signup but I got a yellow error:

Setting a timer for a long p

14条回答
  •  不思量自难忘°
    2020-12-02 12:34

    Another approach is to use the react-native-ignore-warnings module.

    https://github.com/jamrizzi/react-native-ignore-warnings

    https://www.npmjs.com/package/react-native-ignore-warnings

    This even works for Expo apps.

    You would use it the following way . . .

    import ignoreWarnings from 'react-native-ignore-warnings';
    
    ignoreWarnings('Setting a timer');
    

    can run with android too..?

提交回复
热议问题