• 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(),
                    ),
            ),
          ),
        );
      }
    }

     

相关文章:

  • 2021-12-04
  • 2022-01-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-07
  • 2022-12-23
  • 2021-04-24
  • 2022-01-07
相关资源
相似解决方案