问题描述
提示:这里描述项目中遇到的问题:
Flutter开发时,发现在android真机调试时,底部有一个小横条,背景是黑色,看着实在难受。

解决方案:
亲试有效

javascript
Scaffold(
appBar: AppBar(
systemOverlayStyle: SystemUiOverlayStyle(
systemNavigationBarColor: Color.fromRGBO(255,255,255,1), // 仅在此页面生效的颜色
),
),
// ...
)