美文网首页Flutter知识库
flutter--appBar高度问题

flutter--appBar高度问题

作者: 你飞跃俊杰 | 来源:发表于2021-02-28 17:17 被阅读0次
          appBar:
            AppBar(
              title: Text('我的空间'),
              actions: [Text('add'),Text('del')],
          ),
    
    Simulator Screen Shot - iPhone 6 - 2021-02-27 at 16.04.18.png
        appBar:
          PreferredSize(
            child:
            AppBar(
              title: Text('我的空间'),
              actions: [Text('add'),Text('del')],
          ),
            preferredSize: Size.fromHeight(0.01),
          ),
    
    Simulator Screen Shot - iPhone 6 - 2021-02-27 at 16.03.30.png

    去掉appBar


    Simulator Screen Shot - iPhone 6 - 2021-02-27 at 16.05.33.png

    相关文章

      网友评论

        本文标题:flutter--appBar高度问题

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