使用 "color:" 时出现奇怪的错误
I'm getting a strange error when using "color:"
我在使用 color:
时遇到此错误
未定义命名参数 'color'。
代码是:
body: Center(
child: ElevatedButton(
child: Text('click'),
onPressed: () {} ,
color: Colors.green[300],
),
),
输入样式,接下来是这个
ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.green[300],
),
onPressed: () {},
child: Text("click"),
),
我在使用 color:
未定义命名参数 'color'。
代码是:
body: Center(
child: ElevatedButton(
child: Text('click'),
onPressed: () {} ,
color: Colors.green[300],
),
),
输入样式,接下来是这个
ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.green[300],
),
onPressed: () {},
child: Text("click"),
),