LoginSignup
0
0

More than 5 years have passed since last update.

react-native-navigationでモーダル遷移時に画面がチラつく

Posted at

react-native-navigationを使ってモーダル遷移時をするとNavigationBarがチラついてしまいました。
AppDelegateのdidFinishLaunchingWithOptionsメソッド内で、NavigationBarの背景画像に空画像を設定してあげることで解決しました。

[[UINavigationBar appearance] setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
[[UINavigationBar appearance] setShadowImage:[UIImage new]];
0
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
0
0