Код: Выделить всё
// tell app to use fullscreen mode with rendering system ui like status bar
SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge);
// set color of system navigation bar to transparent
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
statusBarColor: Colors.transparent,
statusBarIconBrightness: Brightness.dark,
systemNavigationBarColor: Colors.transparent,
systemNavigationBarIconBrightness: Brightness.dark,
));

Системная панель навигации должна иметь тот же цвет, что и панель навигации выше, но, как показано на рисунке, она имеет только белый цвет.
Подробнее здесь: https://stackoverflow.com/questions/755 ... ransparent