当前位置: 首页 > 工具软件 > Drawer > 使用案例 >

flutter 打开与关闭Drawer抽屉

晏鸿畅
2023-12-01

关闭

Navigator.pop(context); // close the drawer

打开

Scaffold.of(context).openDrawer();
// 这个可能会报Scaffold.of() called with a context that does not contain a Scaffold.的错误,在上一篇博文中有解决方法
 类似资料: