美文网首页
flutter 去除appBar默认返回

flutter 去除appBar默认返回

作者: neobuger | 来源:发表于2023-02-01 10:16 被阅读0次

去除默认返回
automaticallyImplyLeading: false,

Scaffold(
      appBar: AppBar(
        automaticallyImplyLeading: false,
        backgroundColor: Colors.white,
        // elevation: 0.5,
        // leading: IconButton(
        //   icon: Image.asset(
        //     'images/CMC_back.png', package: '__ca',),
        //   onPressed: () {
        //     Navigator.pop(context);
        //   },
        // ),
        title: _tabBar(),
        // title: Text(
        //   "详情",
        //   style: TextStyle(color: Color(0xff444444),
        //       fontSize: 17,
        //       fontWeight: FontWeight.w600),
        // ),
        // actions: [
        //   TextButton(onPressed: (){
        //
        //   },
        //       child: Text("编辑",style: TextStyle(color: Color(0xff333333)),))
        // ],
      ),
      body: getContent(),
      backgroundColor: Color(0xffEEEEEE),
    )

相关文章

网友评论

      本文标题:flutter 去除appBar默认返回

      本文链接:https://www.haomeiwen.com/subject/lwkihdtx.html