Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable image fade in effect in React Native?

Situation

  • Dynamically toggling images
  • React Native
  • Dev mode
  • Android

Problem

  • The images fade in when appearing during dev mode. This is an issue since I am developing and tuning images animations with actual fade in effects. Is it possible to disable the fade in effect?

Attempts

  • Switched to release mode. Works but not appropriate during development.
  • Minimizing the image file size. No visible difference.
  • Minimizing the image display size. No visible difference.
like image 422
Henning Hall Avatar asked Nov 04 '16 10:11

Henning Hall


1 Answers

Just set fadeDuration={0} to Image component, this is not documented

You can check here for more information

like image 158
ShinyLee Avatar answered Sep 28 '22 17:09

ShinyLee