Radio Button Unselected Color in Flutter. Sure, you have to change the ThemeData of the container of your Radio buttons. Assuming that you are using a Row Container:
1 2 3 4 5 6 7 8 9 10 11 12 13 | Theme( data: ThemeData.dark(), //set the dark theme or write your own theme child: Row( children: <Widget>[ Radio( //your attributes here... ), Radio( //your attributes here... ) ], ), ) |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.