如何在 flutter 中更改底栏颜色
How To change bottom bar color in flutter
我正在创建显示我们大学生结果的应用程序,但在我的应用程序中,应用程序颜色的底部栏没有改变我怎么能在这里更改底部栏的颜色我 post a图片
Click to see image
如果我没理解错的话,您想更改系统导航栏的颜色
void main() {
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
systemNavigationBarColor: Colors.red,
));
runApp(MyApp());
}
这会改变它的颜色。
我正在创建显示我们大学生结果的应用程序,但在我的应用程序中,应用程序颜色的底部栏没有改变我怎么能在这里更改底部栏的颜色我 post a图片 Click to see image
如果我没理解错的话,您想更改系统导航栏的颜色
void main() {
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
systemNavigationBarColor: Colors.red,
));
runApp(MyApp());
}
这会改变它的颜色。