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
I did it like below. call imports UIManager,LayoutAnimation. like this:
import {
Text,
TouchableWithoutFeedback,
View,
UIManager,
LayoutAnimation
} from 'react-native';
then in constructor...add these two lines code...
constructor(props) {
super(props);
UIManager.setLayoutAnimationEnabledExperimental &&
UIManager.setLayoutAnimationEnabledExperimental(true);
}