I would like to change the color of an icon after pressing it, but it seems the following code doesn\'t work.
void actionClickRow(String key) { Navigat
You need to use setState() function. Wherever you are updating your variable values.
For example, I want to update my _newVar value to newValue and this should be updated into the view then instead of writing
_newVar = newValue;
it should be:
setState(() { _newVar = newValue; });