class BMICalculator extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
primaryColor: Colors.red,
),
home: InputPage(),
);
我正在学习这门课程:https ://www.udemy.com/course/flutter-bootcamp-with-dart/
在主题部分,她使用这个确切的代码将她的 appBar 变成红色。我的代码没有显示任何错误,但是我的 appBar 仍然是默认主题。
这里对原色的描述:https ://api.flutter.dev/flutter/material/ThemeData-class.html
它没有说它已经折旧,也没有表明最近的任何变化。
我的问题不是“如何让我的应用栏变红”,而是“为什么这段代码没有按预期执行?”