How to change Appbar color with onTap in flutter?
I tried changing the background color of Appbar using onTap in ListTile ListTile( title: const Text('Black'), leading: const Icon(Icons.label), onTap: () { setState(() { AppBar( backgroundColor: Colors.black, ); }); // Navigator.pop(context); }, ), this is my code, but it's doesn't…