Home > @native-html/table-plugin > TableConfig > animationType
What kind of animation should be used when height is changed?
- layout: use native
LayoutAnimation. This is the best option performance-wise, but requires some setup. See https://facebook.github.io/react-native/docs/layoutanimation. - animated: use
Animatedmodule from react-native. - none: no animations are performed.
Signature:
animationType?: 'none' | 'layout' | 'animated';