Image under the Navigationbar & StatusBar #685
-
Hello, Thanks once again for your time. I would like to know if i can achieve the image below with The Navigation Router on Both android and ios. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 11 replies
-
You mean edge 2 edge, right? On iOS, that's the default. So don't use a On Android, you need to turn on some native settings. I don't think you need the Navigation router to do this for you but I'm pretty sure it would be easier if it did. I plan to look into this soon. If you're interested in contributing to the Navigation router then it might be something you could investigate? No pressure, of course. |
Beta Was this translation helpful? Give feedback.
-
Hi @grahammendick , |
Beta Was this translation helpful? Give feedback.
-
I released navigation-react-native v9.25.0 with edge-to-edge support. To enable edge-to-edge call enableEdgeToEdge from within the MainActivity override fun onCreate(savedInstanceState: Bundle?) {
enableEdgeToEdge();
super.onCreate(savedInstanceState)
} |
Beta Was this translation helpful? Give feedback.
I released navigation-react-native v9.25.0 with edge-to-edge support.
To enable edge-to-edge call enableEdgeToEdge from within the MainActivity