| 5 | import { useTheme } from './themes'; |
| 6 | |
| 7 | interface SafeAreaFlatListProps<ItemT> extends FlatListProps<ItemT> { |
| 8 | headerHeight?: number; |
| 9 | floatingButtonHeight?: number; |
| 10 | } |
| 11 | |
| 12 | const SafeAreaFlatList = <ItemT,>(props: SafeAreaFlatListProps<ItemT>) => { |
| 13 | const { style, contentContainerStyle, headerHeight = 0, floatingButtonHeight = 0, ...otherProps } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected