Closed hotaryuzaki closed 1 year ago
i think this is the problem
if (Platform.OS === 'android') {
if (UIManager.setLayoutAnimationEnabledExperimental) {
UIManager.setLayoutAnimationEnabledExperimental(true);
}
}
this feature create bugs,
@hotaryuzaki you can disable animation by passing animate={false}
@hotaryuzaki you can disable animation by passing
animate={false}
read more animation is disable but the problem still exist
it solves when i change to this
if (Platform.OS === 'android') {
if (UIManager.setLayoutAnimationEnabledExperimental) {
UIManager.setLayoutAnimationEnabledExperimental(false);
}
}
@hotaryuzaki I will remove this piece of code from my lib to enable layout animation, since that should be handled by the app itself. Will raise a PR soon.
it's weird issue, after using this package in one of my screen then suddenly all my screen has animation. example:
when i remove the import script of this package, all the animation is gone.