flutter-Scaffold

作者: iPhone | 来源:发表于2019-07-02 14:46 被阅读0次
 /// Creates a visual scaffold for material design widgets.
  const Scaffold({
    Key key,
    this.appBar, //横向水平布局,通常显示在顶部(*)
    this.body, // 内容(*)
    this.floatingActionButton, //悬浮按钮,就是上图右下角按钮(*)
    this.floatingActionButtonLocation, //悬浮按钮位置
    //悬浮按钮在[floatingActionButtonLocation]出现/消失动画
    this.floatingActionButtonAnimator, 
    //在底部呈现一组button,显示于[bottomNavigationBar]之上,[body]之下
    this.persistentFooterButtons,
    //一个垂直面板,显示于左侧,初始处于隐藏状态(*)
    this.drawer,
    this.endDrawer,
    //出现于底部的一系列水平按钮(*)
    this.bottomNavigationBar,
    //底部持久化提示框
    this.bottomSheet,
    //内容背景颜色
    this.backgroundColor,
    //弃用,使用[resizeToAvoidBottomInset]
    this.resizeToAvoidBottomPadding,
    //重新计算布局空间大小
    this.resizeToAvoidBottomInset,
    //是否显示到底部,默认为true将显示到顶部状态栏
    this.primary = true,
    //
    this.drawerDragStartBehavior = DragStartBehavior.down,

相关文章

  • flutter-Scaffold

  • Flutter-Scaffold介绍

    Scaffold 有下面几个主要属性: appBar:显示在界面顶部的一个 AppBar,也就是 Android ...

  • Flutter-Scaffold组件

    在Flutter开发当中,我们可能会遇到以下的需求: 实现页面组合使用,比如说有悬浮按钮、顶部菜单栏、左右抽屉侧边...

网友评论

    本文标题:flutter-Scaffold

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