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 can simply put a condition for each color :
color:(isPressed) ? Color(0xff007397) : Color(0xff9A9A9A))
and in the onPressed function :
onPressed: () { setState(() { isPressed= true; }); }