Is it possible to change the tick size of checkbox ? i tried wrapping the CheckBox with Transform.scale with scale: 2.0 but it makes the whole CheckBox button bigger.
Transform.scale(
scale: 2.0,
child: Checkbox(
splashRadius: 18,
value: true,
activeColor: primaryColor,
//checkColor: Colors.white,
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(10.0))),
onChanged: (bool? newValue) {},
),
),