美文网首页
Flutter组件

Flutter组件

作者: Gollum128 | 来源:发表于2020-07-01 15:31 被阅读0次

    PreferredSize

    此小部件不会对其子级施加任何约束,也不会以任何方式影响子级的布局。它只是通知一个可以由父级使用的首选尺寸。

    Scaffold( 
        appBar: PreferredSize(
        child: AppBar(),
        preferredSize: Size.fromHeight(screenSize.height * 0.07))
    );
    

    相关文章

      网友评论

          本文标题:Flutter组件

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