rajayogan / flutterui-furnitureapp

Code for Furniture app dashboard created with flutter
321 stars 121 forks source link

on press event when clicking avatar #1

Closed chadidi closed 4 years ago

chadidi commented 5 years ago

I want to open drawer when avatar is clicked how can I achieve that?

Thanks

tejasbirsingh commented 4 years ago

On the click method of the avatar you can use Scaffold.of(context).openDrawer(), This will open the drawer when avatar is clicked

rajayogan commented 4 years ago

@tejasbirsingh - Thanks.