小编mca*_*gno的帖子

无法将参数类型“MaterialColor”分配给参数类型“MaterialStateProperty<Color>

我有一个与新的 ElevatedButtonThemeData 小部件相关的问题,基本上我想为我的应用程序中的所有 ElevatedButtons 设置背景颜色,我正在努力尝试通过执行以下操作在 ThemeData 定义中设置它:

      theme: ThemeData(
        ...
        elevatedButtonTheme: ElevatedButtonThemeData(
            style: ButtonStyle(backgroundColor: Colors.red)), // Here Im having the error
        ...
        ),
      ),
Run Code Online (Sandbox Code Playgroud)

错误:

参数类型 'MaterialColor' 不能分配给参数类型 'MaterialStateProperty<Color?>?'.dartargument_type_not_assignable)

dart flutter

2
推荐指数
4
解决办法
1184
查看次数

标签 统计

dart ×1

flutter ×1