How can I change Drawer icon in flutter?
This should work. Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title:Text(‘hi’), leading: IconButton( icon: Icon(Icons.accessible), onPressed: () => Scaffold.of(context).openDrawer(), ), ), ); From the docs -> {Widget leading} Type: Widget A widget to display before the How can I change Drawer icon in flutter?. If this is null and [automaticallyImplyLeading] is set to true, … Read more