ziv kesten
12/26/2021, 2:35 PMstrokeWidth
, RadiusSize
, CheckboxSize
etc'.
However those properties are not public.
I could just copy the entire CheckBox Code into my project and expose those values to be mutable but the would mean introducing alot of code in my project.
is there a better way to customize these properties of CheckBox
in Jetpack Compose?Arjun Achatz
12/26/2021, 4:30 PMKirill Grouchnikov
12/26/2021, 4:46 PMCheckBox
you refer to is part of the Material module. It implements a specific design system, and is not meant to be the generic jack-of-all-trades component. If you're looking for that level of customization, the Compose way is to create your own design system on top of the lower layers of Compose, just like the Material module is built.ziv kesten
12/26/2021, 4:51 PMStylianos Gakis
12/26/2021, 10:37 PMziv kesten
12/27/2021, 9:27 AMStylianos Gakis
12/27/2021, 12:26 PM