(widget: RNList, newProps: CustomListProps, oldProps: CustomListProps)
| 14 | * @ignore |
| 15 | */ |
| 16 | export const setListProps = (widget: RNList, newProps: CustomListProps, oldProps: CustomListProps) => { |
| 17 | |
| 18 | const setter: CustomListProps = { |
| 19 | }; |
| 20 | Object.assign(setter, newProps); |
| 21 | setViewProps(widget, newProps, oldProps); |
| 22 | }; |
| 23 | |
| 24 | /** |
| 25 | * @ignore |
no test coverage detected