I need to implement checkbox that looks like this
I have tried to explore all the aspects provided by compose to alter the checkbox as below
colors: CheckboxColors = CheckboxDefaults.colors()
I found some alternative solution here but
- It doesn't works for me
- I feel just to change the checkbox border color there shouldn't be so much work around right.
Note: checkmark color can be changed by using color field
colors = CheckboxDefaults.colors(checkmarkColor = Black)
Any help is appreciated

You need to implement
CheckboxColorsinterface and create your color scheme. I just copied the implementation ofDefaultCheckboxColors:And then you can set the colors by simply: