circular_check_box
circular_check_box copied to clipboard
any way to change height and width?
In some cases, default drawing is too big.
I have the same issue !!
me too. However, I can zoom it.
Container(
width: 24,
height: 24,
child: FittedBox(
child: CircularCheckBox(
value: this.check,
inactiveColor: ColorUtil.rgba(77, 77, 108),
activeColor: ColorUtil.rgba(254, 45, 102),
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
onChanged: (bool val) {
this.setState(() {
this.check = val;
});
}
)
)
)
same to me. lol
Anyone found any solution to this? Seems like fitted box doesn't suit the purpose very well.