React Native 即使使用UIManager实验设置,布局动画也无法在Android上运行

1hdlvixo  于 2022-11-17  发布在  React
关注(0)|答案(1)|浏览(137)

我一直在尝试实现LayoutAnimation,以动画方式在scrollView中插入和删除条目。

import { LayoutAnimation, NativeModules } from 'react-native';

// Animation setup for android
const { UIManager } = NativeModules;
UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true);

设置布局动画

// Animate the add or removal of shortlisted Rail
  useEffect(
    () => LayoutAnimation.configureNext({ ...LayoutAnimation.Presets.easeInEaseOut, duration: 500 }),
    [shortlistItems],
  );

有人能帮我吗?为什么在android中不起作用?
我一直在关注此文档:https://reactnative.dev/docs/layoutanimation

一个月一个月

相关问题