Flutter 手动控制drawer(抽屉)打开关闭


  • GlobalKey 方式打开
    import "package:flutter/material.dart";
     
    class MyTest extends StatefulWidget {
      @override
      _MyTestState createState() => new _MyTestState ();
    }
     
    class _MyTestState extends State<MyTest> {
      final GlobalKey<ScaffoldState> _scaffoldKey = new GlobalKey<ScaffoldState>();
      @override
      Widget build(BuildContext context) {
        return new Scaffold(
          key: _scaffoldKey,
          drawer: new Drawer(),
          appBar: new AppBar(
            leading: new IconButton(
                icon: new Icon(Icons.settings),
                onPressed: () => _scaffoldKey.currentState.openDrawer()),
          ),
        );
      }
    }
  • builder方式
  • class _MyTestState extends State<MyTest> {
      @override
      Widget build(BuildContext context) {
        return new Scaffold(
          drawer: new Drawer(),
          appBar: new AppBar(
            leading: Builder(
                builder: (context) => IconButton(
                      icon: new Icon(Icons.settings),
                      onPressed: () => Scaffold.of(context).openDrawer(),
                    ),
            ),
          ),
        );
      }
    }

     


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM