How to hide and disable Android navigation bar
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