Flutter navigation drawer hamburger icon color change. Use the below flutter example code to add the navigation drawer hamburger icon color change.
1 2 3 4 5 6 7 8 9 10 | @override Widget build(BuildContext context) { return new Scaffold( drawer: new Drawer(), appBar: new AppBar( title: new Text("Navigation Drawer"), iconTheme: new IconThemeData(color: Colors.green), ), ); } |
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.