How to hide and disable Android navigation bar
13:49 20 May 2026

I am developing a full screen app. To show it, I use this in `initState` method:

SystemChrome.setEnabledSystemUIMode(SystemUiMode.immersiveSticky);

That way, bar is hidden, however, it get back when user swipe from the edge, what I don't want.

How can I disable that feature completely?

Jaime

android flutter