How to get perfect fullscreen (edge to edge) mode for flutter?
With native, it’s very easy to do the image below, the target is the statusbar, the system only displays text, icons, and the bottom navigation is the same, but the app’s color remains intact.
enter image description here
enter image description here
Flutter has a little problem with horizontal screens, you can also see the picture below
enter image description here
enter image description here
I used flutter code for edge to edge with options like :
SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge);
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
systemNavigationBarContrastEnforced: false,
statusBarColor: Colors.transparent,
systemNavigationBarColor: Colors.transparent,
systemStatusBarContrastEnforced: false,
));