Hamburger icon color of navigation drawer is not changing. Its black by default. I want to change the this icon color in flutter, I am stuck, help me to change this icon color.
Add iconTheme to your AppBar
@override Widget build(BuildContext context) { return Scaffold( drawer: Drawer(), appBar: AppBar( title: Text("Navigation Drawer"), iconTheme: IconThemeData(color: Colors.green), ), ); }
You can also check other solutions here.