Is React Native's LayoutAnimation supported on Android?

后端 未结 4 1343
情歌与酒
情歌与酒 2021-02-05 07:35

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

4条回答
  •  迷失自我
    2021-02-05 08:24

    As per this for Android support you have to add these lines:

     import  {
       UIManager,
       LayoutAnimation
     } from 'react-native';
    
     //..
    
     UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true);
    

提交回复
热议问题