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.
You can also use following in Theme's data property
Theme
data
Theme( data: ThemeData(primaryIconTheme: IconThemeData(color: Colors.red)), // use this child: Scaffold(), )
Or
appBar: AppBar( leading: IconButton( icon: Icon(Icons.menu, color: Colors.red), // set your color here onPressed: () {}, ), ),