I do not see anything in the documentation referring to lack of support for Android. I\'m using a simple preset animation:
LayoutAnimation.configureNext(LayoutAni
First import the following:
import {
UIManager,
LayoutAnimation, Platform
} from 'raect-native';
then in component class :
constructor() {
super();
if (Platform.OS === 'android') {
UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true);
}
}
This is how it worked for me .