我正在学习如何使用Dart编写代码来制作应用程序,当我想将应用程序的颜色主题更改为不同的颜色时,它保持不变。
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: ' My first app',
theme: ThemeData(primaryColor: Colors.orange),
home: MyHomePage(),
);
}
}
1条答案
按热度按时间afdcj2ne1#
使用ThemeDataprimarySwatch属性更改应用配色方案。使用primaryColor,您只需更改一个值,并且小部件使用不同的颜色阴影。
示例: