({ nativeEvent }: LayoutChangeEvent)
| 25 | const [height, setHeight] = React.useState(0); |
| 26 | |
| 27 | const handleLayout = ({ nativeEvent }: LayoutChangeEvent) => { |
| 28 | const { height: layoutHeight } = nativeEvent.layout; |
| 29 | setHeight(layoutHeight); |
| 30 | }; |
| 31 | |
| 32 | const customTheme = !defaultTheme.isV3 |
| 33 | ? { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…