web-dev-qa-db-ja.com

Flutter:プログラムでドロワーを開く方法

スライドせずにプログラムでDrawerを開きたい、そのスライド機能を無効にする方法(ドロワーのタッチ機能)

8
krishnaji
appBar: AppBar(

      automaticallyImplyLeading: false,
      title: Text(
        "Infilon Technologies",
        style:
            TextStyle(fontFamily: "Poppins", fontWeight: FontWeight.w600),
      ),
      actions: <Widget>[
        IconButton(
          icon: Icon(Icons.menu),
          onPressed: () {
            if (_scaffoldKey.currentState.isEndDrawerOpen) {
              _scaffoldKey.currentState.openDrawer();
            } else {
              _scaffoldKey.currentState.openEndDrawer();
            }
          },
        ),
      ],
    ),
0
Hardik Kumbhani