Moaz El-sawaf
Moaz El-sawaf

Reputation: 3039

Flutter: RadioListTile color is not changing

I have a RadioListTile in my widget tree which has the property tileColor, whenever I change its value it doesn't actually change.

Anyone can help on this?

Thanks in Advance

Upvotes: 1

Views: 339

Answers (1)

Moaz El-sawaf
Moaz El-sawaf

Reputation: 3039

The easiest solution for this problem is to just wrap the RadioListTile with a Material widget and you will find that the problem is gone.

Example:

Material(
   child: RadioListTile(
      tileColor: Colors.red,
   ),
)

Upvotes: 1

Related Questions