【Flutter】Flutter 布局组件 ( Wrap 组件 | Expanded 组件 )(一)

简介: 【Flutter】Flutter 布局组件 ( Wrap 组件 | Expanded 组件 )(一)

文章目录

一、Wrap 组件

二、Expanded 组件

三、完整代码示例

四、相关资源





一、Wrap 组件


Wrap 组件 : 该组件是可换行的水平线性布局组件 , 与 Row 组件间类似 , 但是可以换行 ;


class Wrap extends MultiChildRenderObjectWidget {
  /// Creates a wrap layout.
  ///
  /// By default, the wrap layout is horizontal and both the children and the
  /// runs are aligned to the start.
  ///
  /// The [textDirection] argument defaults to the ambient [Directionality], if
  /// any. If there is no ambient directionality, and a text direction is going
  /// to be necessary to decide which direction to lay the children in or to
  /// disambiguate `start` or `end` values for the main or cross axis
  /// directions, the [textDirection] must not be null.
  Wrap({
    Key key,
    this.direction = Axis.horizontal,
    this.alignment = WrapAlignment.start,
    this.spacing = 0.0, // 水平方向间距
    this.runAlignment = WrapAlignment.start,
    this.runSpacing = 0.0, // 垂直方向间距
    this.crossAxisAlignment = WrapCrossAlignment.start,
    this.textDirection,
    this.verticalDirection = VerticalDirection.down,
    List<Widget> children = const <Widget>[], // 子组件集合
  }) : super(key: key, children: children);
}


Wrap 组件用法 :


设置水平间距 : spacing 字段 ;
设置垂直间距 : runSpacing 字段 ;
设置布局中的子组件 : children 字段 ;
// 可自动换行的水平线性布局
Wrap(
  // 设置水平边距
  spacing: 间距值 ( double 类型 ),
  // 设置垂直间距
  runSpacing: 间距值 ( double 类型 ),
  children: <Widget>[
    设置若干子组件 
  ]
)


代码示例 : Chip 组件用法参考 【Flutter】StatelessWidget 组件 ( CloseButton 组件 | BackButton 组件 | Chip 组件 ) 博客 ;


// 可自动换行的水平线性布局
Wrap(
  // 设置水平边距
  spacing: 40,
  // 设置垂直间距
  runSpacing: 10,
  children: <Widget>[
    Chip(
      // 设置主体标签文本
      label: Text("宋江"),
      // 设置左侧圆形头像
      avatar: CircleAvatar(
        // 设置背景颜色
        backgroundColor: Colors.green.shade600,
        child: Text("宋"),
      ),
    ),
    Chip(
      // 设置主体标签文本
      label: Text("卢俊义"),
      // 设置左侧圆形头像
      avatar: CircleAvatar(
        // 设置背景颜色
        backgroundColor: Colors.green.shade600,
        child: Text("卢"),
      ),
    ),
    Chip(
      // 设置主体标签文本
      label: Text("吴用"),
      // 设置左侧圆形头像
      avatar: CircleAvatar(
        // 设置背景颜色
        backgroundColor: Colors.green.shade600,
        child: Text("吴"),
      ),
    ),
    Chip(
      // 设置主体标签文本
      label: Text("公孙胜"),
      // 设置左侧圆形头像
      avatar: CircleAvatar(
        // 设置背景颜色
        backgroundColor: Colors.green.shade600,
        child: Text("公孙"),
      ),
    ),
    Chip(
      // 设置主体标签文本
      label: Text("关胜"),
      // 设置左侧圆形头像
      avatar: CircleAvatar(
        // 设置背景颜色
        backgroundColor: Colors.green.shade600,
        child: Text("关"),
      ),
    ),
  ],
),


运行效果 :


image.png






二、Expanded 组件


Expanded 组件 : 该组件可以自动识别父容器的方向 , 在垂直或水平方向上填充剩余空间 ;
class Expanded extends Flexible {
  /// Creates a widget that expands a child of a [Row], [Column], or [Flex]
  /// so that the child fills the available space along the flex widget's
  /// main axis.
  const Expanded({
    Key key,
    int flex = 1,
    @required Widget child,
  }) : super(key: key, flex: flex, fit: FlexFit.tight, child: child);
}


Expanded 组件 在 Row 组件 中会自动填充水平方向上的剩余空间 ;


Expanded 组件 在 Column 组件 中会自动填充垂直方向上的剩余空间 ;


代码示例 :


// 普通样式的 Row
Row(
  children: <Widget>[
    Container(
      // 背景设置成黑色
      decoration: BoxDecoration(
        color: Colors.black,
      ),
      // 字体设置成黄色
      child: Text(
        "Text 原始样式",
        style: TextStyle(color: Colors.yellow),
      ),
    ),
  ],
),
// 空行
SizedBox(
  width: 10,
  height: 20,
),
// 使用了 Exoanbded 组件的 Row
Row(
  children: <Widget>[
    Expanded(
      child: Container(
        // 背景设置成黑色
        decoration: BoxDecoration(
          color: Colors.black,
        ),
        // 字体设置成黄色
        child: Text(
          "Text 原始样式",
          style: TextStyle(color: Colors.yellow),
        ),
      ),
    ),
  ],
),
// 空行


执行效果 :

image.png



第一个组件是 Row 中没有使用 Expanded 组件的情况 ;


第二个组件是 Row 中使用了 Expanded 组件的情况 ;




目录
相关文章
|
10天前
|
开发框架 数据安全/隐私保护 开发者
Flutter 是一款强大的跨平台移动应用开发框架,本文深入探讨了其布局与样式设计
Flutter 是一款强大的跨平台移动应用开发框架,本文深入探讨了其布局与样式设计,涵盖布局基础、常用组件、样式设计、实战应用、响应式布局及性能优化等方面,助力开发者打造精美用户界面。
31 7
|
29天前
|
开发者 容器
Flutter&鸿蒙next 布局架构原理详解
本文详细介绍了 Flutter 中的主要布局方式,包括 Row、Column、Stack、Container、ListView 和 GridView 等布局组件的架构原理及使用场景。通过了解这些布局 Widget 的基本概念、关键属性和布局原理,开发者可以更高效地构建复杂的用户界面。此外,文章还提供了布局优化技巧,帮助提升应用性能。
91 4
|
27天前
|
UED 开发者 容器
Flutter&鸿蒙next 中的 Expanded 和 Flexible 使用技巧详解
在 Flutter 开发中,Expanded 和 Flexible 是两个常用的布局控件,用于管理 UI 布局的空间分配。Expanded 使子组件占据主轴上的所有剩余空间,而 Flexible 允许通过 flex 参数按比例分配空间。掌握两者的区别和使用场景,可以让你在构建复杂 UI 时更加得心应手。
78 1
|
29天前
|
容器
深入理解 Flutter 鸿蒙版的 Stack 布局:适配屏幕与层叠样式布局
Flutter 的 Stack 布局组件允许你将多个子组件层叠在一起,实现复杂的界面效果。本文介绍了 Stack 的基本用法、核心概念(如子组件层叠、Positioned 组件和对齐属性),以及如何使用 MediaQuery 和 LayoutBuilder 实现响应式设计。通过示例展示了照片展示与文字描述、动态调整层叠布局等高级用法,帮助你构建更加精美和实用的 Flutter 应用。
119 2
|
29天前
Flutter 自定义组件继承与调用的高级使用方式
本文深入探讨了 Flutter 中自定义组件的高级使用方式,包括创建基本自定义组件、继承现有组件、使用 Mixins 和组合模式等。通过这些方法,您可以构建灵活、可重用且易于维护的 UI 组件,从而提升开发效率和代码质量。
125 1
|
29天前
|
开发工具 UED
Flutter&鸿蒙next中封装一个输入框组件
本文介绍了如何创建一个简单的Flutter播客应用。首先,通过`flutter create`命令创建项目;接着,在`lib`目录下封装一个自定义输入框组件`CustomInput`;然后,在主应用文件`main.dart`中使用该输入框组件,实现简单的UI布局和功能;最后,通过`flutter run`启动应用。本文还提供了后续扩展建议,如状态管理、网络请求和UI优化。
100 1
|
1月前
|
Dart UED
Flutter用户交互组件
Flutter用户交互组件
24 2
|
28天前
|
开发工具
Flutter&鸿蒙next中封装一个列表组件
Flutter&鸿蒙next中封装一个列表组件
41 0
|
Dart 开发者
【Flutter】Flutter 布局组件 ( 布局组件简介 | Row 组件 | Column 组件 | SizedBox 组件 | ClipOval 组件 )(二)
【Flutter】Flutter 布局组件 ( 布局组件简介 | Row 组件 | Column 组件 | SizedBox 组件 | ClipOval 组件 )(二)
172 0
【Flutter】Flutter 布局组件 ( 布局组件简介 | Row 组件 | Column 组件 | SizedBox 组件 | ClipOval 组件 )(二)
|
容器
【Flutter】Flutter 布局组件 ( 布局组件简介 | Row 组件 | Column 组件 | SizedBox 组件 | ClipOval 组件 )(一)
【Flutter】Flutter 布局组件 ( 布局组件简介 | Row 组件 | Column 组件 | SizedBox 组件 | ClipOval 组件 )(一)
117 0