LoginSignup
1
0

More than 5 years have passed since last update.

isMountedの警告を消す方法

Last updated at Posted at 2018-06-16

isMountedについて

ES6の時点でisMountedは廃止されているらしく、ReactのバージョンによってはisMountedを使用していないときでもWarning: isMounted(...)is deprecated...という警告が出現する場合がある。無視またはdismissすれば良いのだがフッタータブを作っていると毎回警告を消さないとタブをタップできずイライラするので消す方法を残しておく。
App.jsindex.jsなどで、

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

とやると消せるはず。Module RCTImageLoaderの部分は無くてもいけるかもしれない。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0