How To Add Icon Button In Flutter Code Example


Example: flutter change the icon of icon button on pressed

bool selected = true;  //...  Widget build(BuildContext context) { 	return Scaffold(     	body: Center(           child: IconButton(               icon: Icon( selected ? Icons.celebration : Icons.title),               onPressed: () {                 setState(() {                   selected = !selected;                 });               },           ), //IconButton    		), //Center     ); //Scaffold }

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?