gpt4 book ai didi

flutter - 如何在 flutter 中填充复选框内部的颜色?

转载 作者:行者123 更新时间:2023-12-05 01:09:59 24 4
gpt4 key购买 nike

这是我在 flutter 中使用的复选框。但是我只能为未选中状态设置边框颜色,而不是在复选框内找到填充颜色的方法。请帮我解决这个问题。

Theme(
data: ThemeData(unselectedWidgetColor: Colors.white),
child: Checkbox(
checkColor: Colors.blue,
activeColor: Colors.white,
value: rememberMe,
onChanged: (value) {
setState(() {
rememberMe = value;
});
},
),
)

最佳答案

这更多地与设计本身有关。一个空的复选框应该就是那个空的。如果你给它一个填充颜色,你有点违背设计目的。

无论如何,您可以通过将其放入具有背景颜色的 Container 以及仅填充 CheckBox 的宽度和高度来实现此目的:

return Center(
child: Container(
alignment: Alignment.center,
width: 14,
height: 14,
color: Colors.blue,
child: Checkbox(
checkColor: Colors.blue,
activeColor: Colors.white,
value: rememberMe,
onChanged: (value) {
setState(() {
rememberMe = value;
});
},
),
),
);

关于flutter - 如何在 flutter 中填充复选框内部的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64590691/

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