gpt4 book ai didi

android - 参数类型 'Color?' 不能分配给参数类型 'MaterialColor?

转载 作者:行者123 更新时间:2023-12-04 14:06:52 28 4
gpt4 key购买 nike

enter image description here
我想在 flutter 中设置背景 Colors.yellow[700],但是当我添加符号“[]”或 Colors.yellow.shade600 时,我无法设置背景的值。它显示错误并且错误是

The argument type 'MaterialColor' can't be assigned to the parameter type 'Paint'

最佳答案

您也可以使用 colorScheme属性并设置如下:

theme: ThemeData(
colorScheme: ColorScheme.fromSwatch().copyWith(

primary: const Colors.yellow[700],
secondary: const Colors.yellow.shade700,

// or from RGB

primary: const Color(0xFF343A40),
secondary: const Color(0xFFFFC107),

),
),

关于android - 参数类型 'Color?' 不能分配给参数类型 'MaterialColor?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67930143/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com