Answers for "Change default color of Drawer icon"

0

Change default color of Drawer icon

return Scaffold(
   appBar: AppBar(
   title: Text('Your Title'),
   iconTheme: IconThemeData(
     size: 40,//change size on your need
     color: Colors.red,//change color on your need
   ),
 ),
 drawer: Drawer(),
);
Posted by: Guest on October-13-2021

Code answers related to "Change default color of Drawer icon"

Browse Popular Code Answers by Language