美文网首页
2.7.flutter-NestedScrollView

2.7.flutter-NestedScrollView

作者: ChaosHeart | 来源:发表于2020-10-28 15:53 被阅读0次

    1.SliverAppBar属性详解

      const SliverAppBar({
        Key key,
        this.leading,//左侧的图标或文字,多为返回箭头
        this.automaticallyImplyLeading = true,//没有leading为true的时候,默认返回箭头,没有leading且为false,则显示title
        this.title,//标题
        this.actions,//标题右侧的操作
        this.flexibleSpace,//可以理解为SliverAppBar的背景内容区
        this.bottom,//SliverAppBar的底部区
        this.elevation,//阴影
        this.forceElevated = false,//是否显示阴影
        this.backgroundColor,//背景颜色
        this.brightness,//状态栏主题,默认Brightness.dark,可选参数light
        this.iconTheme,//SliverAppBar图标主题
        this.actionsIconTheme,//action图标主题
        this.textTheme,//文字主题
        this.primary = true,//是否显示在状态栏的下面,false就会占领状态栏的高度
        this.centerTitle,//标题是否居中显示
        this.titleSpacing = NavigationToolbar.kMiddleSpacing,//标题横向间距
        this.expandedHeight,//合并的高度,默认是状态栏的高度加AppBar的高度
        this.floating = false,//滑动时是否悬浮
        this.pinned = false,//标题栏是否固定
        this.snap = false,//配合floating使用
      })
    

    相关文章

      网友评论

          本文标题:2.7.flutter-NestedScrollView

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