| 20 | `; |
| 21 | |
| 22 | interface ScreenProps { |
| 23 | /** The content to render within the screen */ |
| 24 | children?: ReactNode; |
| 25 | /** Whether to force the topInset. Use to prevent screen jank on tab screens */ |
| 26 | forceTopInset?: Boolean; |
| 27 | } |
| 28 | |
| 29 | type ComponentProps = ScreenProps & FlexProps & SpaceProps; |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected