()
| 14 | children?: React.ReactNode; |
| 15 | }) { |
| 16 | function push() { |
| 17 | navigation.stack.push( |
| 18 | <Stack.Screen> |
| 19 | <MyScreen title="Pushed screen"> |
| 20 | <Button title="Pop screen" onPress={pop} /> |
| 21 | </MyScreen> |
| 22 | </Stack.Screen> |
| 23 | ); |
| 24 | } |
| 25 | |
| 26 | function pop() { |
| 27 | navigation.stack.pop(); |
nothing calls this directly
no outgoing calls
no test coverage detected