fluttercolorscheckboxlist

Flutter CheckboxListTile icon border color change


In flutter, CheckboxListTile widget ,i can't change this default color. How can I change it to my desire color. enter image description here

I want ti customized this border color, how can i chane the border color. I only see the parameters of Checkcolor and some others that can't change default border color?


Solution

  • you can use fillColor property for this output which takes MaterialStateProperty like bellow:

    fillColor: MaterialStateProperty.all(Colors.black),