circular_check_box icon indicating copy to clipboard operation
circular_check_box copied to clipboard

any way to change height and width?

Open zinwalin opened this issue 4 years ago • 4 comments

In some cases, default drawing is too big.

zinwalin avatar Jun 09 '20 09:06 zinwalin

I have the same issue !!

omidraha avatar Jul 18 '20 18:07 omidraha

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;
        });
      }
    )
  )
)

ycg520520 avatar Oct 22 '20 03:10 ycg520520

same to me. lol

novrizaledward avatar Oct 27 '20 15:10 novrizaledward

Anyone found any solution to this? Seems like fitted box doesn't suit the purpose very well.

gaganyadav80 avatar Jan 20 '21 18:01 gaganyadav80