i have a flutter app using SystemUiMode.immersive,
but when i use my keyboard and discards it, the navbar (and status bar) stays on the app.
I have code that removes them if you touch the screen, but sometimes they hide things and users get confused.
any solution?
You can use
FocusNodeto listen to the changes that you need in keyboard focus.This means that when your keyboard is dismissed, you can hide the system ui programmitically.
Happy coding...