Change background color of ListTile upon selection in Flutter. I was able to change the background color of the ListTile using a BoxDecoration inside Container:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
ListView ( children: <Widget>[ new Container ( decoration: new BoxDecoration ( color: Colors.red ), child: new ListTile ( leading: const Icon(Icons.euro_symbol), title: Text('250,00') ) ) ] ) |
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.