@native-html/table-plugin
Version:
🔠A WebView-based plugin to render tables in react-native-render-html
14 lines (8 loc) • 800 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [@native-html/table-plugin](./table-plugin.md) > [TableConfig](./table-plugin.tableconfig.md) > [animationType](./table-plugin.tableconfig.animationtype.md)
## TableConfig.animationType property
What kind of animation should be used when height is changed? <ul> <li> <b>layout</b>: use native `LayoutAnimation`<!-- -->. This is the best option performance-wise, but requires some setup. See https://facebook.github.io/react-native/docs/layoutanimation. </li> <li> <b>animated</b>: use `Animated` module from react-native. </li> <li> <b>none</b>: no animations are performed. </li> </ul>
<b>Signature:</b>
```typescript
animationType?: 'none' | 'layout' | 'animated';
```