百度360必应搜狗淘宝本站头条
当前位置:网站首页 > IT技术 > 正文

flutter软件开发笔记08-容器使用方法

wptr33 2025-04-26 21:38 25 浏览

在 Flutter 3 中,容器组件是用于布局、装饰或约束子组件的核心部件,能让程序更加美观,如何学习呢,能快速的应用起来,下面通过例子,来快速理解各种容器组件的使用方法。

一程序界面

二 代码实现

import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter 容器组件示例',
      theme: ThemeData(primarySwatch: Colors.blue),
      home: const ContainerDemoScreen(),
    );
  }
}

class ContainerDemoScreen extends StatelessWidget {
  const ContainerDemoScreen({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text('容器组件示例')),
      body: SingleChildScrollView(
        padding: const EdgeInsets.all(20),
        child: Column(
          children: [
            // 1. Container 示例
            _buildContainerDemo(),
            const SizedBox(height: 20),

            // 2. Row/Column 示例
            _buildRowColumnDemo(),
            const SizedBox(height: 20),

            // 3. Stack 示例
            _buildStackDemo(),
            const SizedBox(height: 20),

            // 4. ListView/GridView 示例
            _buildListAndGridDemo(),
            const SizedBox(height: 20),

            // 5. Expanded/Flexible 示例
            _buildExpandedDemo(),
            const SizedBox(height: 20),

            // 6. Card 示例
            _buildCardDemo(),
          ],
        ),
      ),
    );
  }

  // ---------- 以下是各个容器的构建方法 ----------

  // 1. Container 示例
  Widget _buildContainerDemo() {
    return Container(
      width: 200,
      height: 100,
      margin: const EdgeInsets.all(10),
      padding: const EdgeInsets.all(15),
      decoration: BoxDecoration(
        color: Colors.blue[100],
        borderRadius: BorderRadius.circular(10),
        border: Border.all(color: Colors.blue, width: 2),
      ),
      child: const Center(
        child: Text('Container', style: TextStyle(color: Colors.blue)),
      ),
    );
  }

  // 2. Row/Column 示例
  Widget _buildRowColumnDemo() {
    return Column(
      children: [
        Row(
          mainAxisAlignment: MainAxisAlignment.spaceAround,
          children: [
            Container(width: 50, height: 50, color: Colors.red),
            Container(width: 50, height: 50, color: Colors.green),
            Container(width: 50, height: 50, color: Colors.blue),
          ],
        ),
        const SizedBox(height: 10),
        Column(
          children: const [
            Text('Row 水平排列'),
            Text('Column 垂直排列'),
          ],
        ),
      ],
    );
  }

  // 3. Stack 示例
  Widget _buildStackDemo() {
    return SizedBox(
      width: 200,
      height: 100,
      child: Stack(
        children: [
          Container(color: Colors.yellow[100]),
          Positioned(
            top: 10,
            left: 10,
            child: Container(width: 40, height: 40, color: Colors.red),
          ),
          const Positioned(
            bottom: 10,
            right: 10,
            child: Text('Stack 层叠'),
          ),
        ],
      ),
    );
  }

  // 4. ListView/GridView 示例
  Widget _buildListAndGridDemo() {
    return Column(
      children: [
        SizedBox(
          height: 100,
          child: ListView(
            scrollDirection: Axis.horizontal,
            children: List.generate(
              5,
              (index) => Container(
                width: 80,
                margin: const EdgeInsets.all(5),
                color: Colors.orange[100],
                child: Center(child: Text('Item $index')),
              ),
            ),
          ),
        ),
        const SizedBox(height: 10),
        GridView.count(
          shrinkWrap: true,
          physics: const NeverScrollableScrollPhysics(),
          crossAxisCount: 3,
          children: List.generate(
            6,
            (index) => Container(
              margin: const EdgeInsets.all(2),
              color: Colors.purple[100],
              child: Center(child: Text('Grid $index')),
            ),
          ),
        ),
      ],
    );
  }

  // 5. Expanded/Flexible 示例
  Widget _buildExpandedDemo() {
    return Container(
      height: 80,
      color: Colors.grey[200],
      child: Row(
        children: [
          Expanded(
            flex: 2,
            child: Container(color: Colors.red, child: const Center(child: Text('Expanded'))),
          ),
          Flexible(
            flex: 1,
            child: Container(color: Colors.blue, child: const Center(child: Text('Flexible'))),
          ),
        ],
      ),
    );
  }

  // 6. Card 示例
  Widget _buildCardDemo() {
    return Card(
      elevation: 5,
      color: Colors.white,
      child: Padding(
        padding: const EdgeInsets.all(16),
        child: Column(
          children: const [
            Icon(Icons.star, color: Colors.amber, size: 40),
            SizedBox(height: 10),
            Text('Card 组件示例', style: TextStyle(fontWeight: FontWeight.bold)),
            Text('带阴影的卡片式布局'),
          ],
        ),
      ),
    );
  }
}

三 代码讲解

运行效果

这个示例会展示以下内容:

  1. 蓝色圆角 Container
  2. 红绿蓝方块水平排列的 Row
  3. 黄色背景叠加红色方块和文字的 Stack
  4. 水平滚动 ListView 和 3列 GridView
  5. 红蓝比例分割的 Expanded/Flexible
  6. 带阴影的 Card 卡片

核心容器组件讲解

1. Container

  • 用途:全能布局容器,可设置尺寸、边距、颜色等。
  • 关键属性
  • margin // 外边距 padding // 内边距 decoration // 装饰(颜色、边框、圆角等)

2. Row 与 Column

  • 用途:水平/垂直排列子组件。
  • 关键属性
  • mainAxisAlignment // 主轴对齐方式(如居中、两端对齐) crossAxisAlignment // 交叉轴对齐方式

3. Stack

  • 用途:层叠布局,结合 Positioned 控制子组件位置。
  • 典型场景:图标+文字叠加、浮动按钮。

4. ListView 与 GridView

  • 用途:滚动列表和网格布局。
  • 注意
  • shrinkWrap: true // 当嵌套在其他滚动组件中时需要设置 scrollDirection // 滚动方向(水平/垂直)

5. Expanded 与 Flexible

  • 用途:在 Row/Column 中按比例分配剩余空间。
  • 区别:Expanded 必须填满剩余空间Flexible 可以自适应内容大小

6. Card

  • 用途:带阴影的卡片式设计。
  • 关键属性
  • elevation // 阴影强度 shape // 自定义形状(如圆角半径)

如何调试?

  1. 复制代码到 lib/main.dart
  2. 运行 flutter run
  3. 尝试修改以下参数观察变化:修改 Container 的 margin 和 padding调整 Row 的 mainAxisAlignment改变 Expanded 的 flex 比例

通过这个示例,你可以直观理解 Flutter 容器组件如何协作构建复杂界面。如果需要更高级的布局,可以学习 LayoutBuilder 或 CustomScrollView。

相关推荐

oracle数据导入导出_oracle数据导入导出工具

关于oracle的数据导入导出,这个功能的使用场景,一般是换服务环境,把原先的oracle数据导入到另外一台oracle数据库,或者导出备份使用。只不过oracle的导入导出命令不好记忆,稍稍有点复杂...

继续学习Python中的while true/break语句

上次讲到if语句的用法,大家在微信公众号问了小编很多问题,那么小编在这几种解决一下,1.else和elif是子模块,不能单独使用2.一个if语句中可以包括很多个elif语句,但结尾只能有一个...

python continue和break的区别_python中break语句和continue语句的区别

python中循环语句经常会使用continue和break,那么这2者的区别是?continue是跳出本次循环,进行下一次循环;break是跳出整个循环;例如:...

简单学Python——关键字6——break和continue

Python退出循环,有break语句和continue语句两种实现方式。break语句和continue语句的区别:break语句作用是终止循环。continue语句作用是跳出本轮循环,继续下一次循...

2-1,0基础学Python之 break退出循环、 continue继续循环 多重循

用for循环或者while循环时,如果要在循环体内直接退出循环,可以使用break语句。比如计算1至100的整数和,我们用while来实现:sum=0x=1whileTrue...

Python 中 break 和 continue 傻傻分不清

大家好啊,我是大田。...

python中的流程控制语句:continue、break 和 return使用方法

Python中,continue、break和return是控制流程的关键语句,用于在循环或函数中提前退出或跳过某些操作。它们的用途和区别如下:1.continue(跳过当前循环的剩余部分,进...

L017:continue和break - 教程文案

continue和break在Python中,continue和break是用于控制循环(如for和while)执行流程的关键字,它们的作用如下:1.continue:跳过当前迭代,...

作为前端开发者,你都经历过怎样的面试?

已经裸辞1个月了,最近开始投简历找工作,遇到各种各样的面试,今天分享一下。其实在职的时候也做过面试官,面试官时,感觉自己问的问题很难区分候选人的能力,最好的办法就是看看候选人的github上的代码仓库...

面试被问 const 是否不可变?这样回答才显功底

作为前端开发者,我在学习ES6特性时,总被const的"善变"搞得一头雾水——为什么用const声明的数组还能push元素?为什么基本类型赋值就会报错?直到翻遍MDN文档、对着内存图反...

2023金九银十必看前端面试题!2w字精品!

导文2023金九银十必看前端面试题!金九银十黄金期来了想要跳槽的小伙伴快来看啊CSS1.请解释CSS的盒模型是什么,并描述其组成部分。...

前端面试总结_前端面试题整理

记得当时大二的时候,看到实验室的学长学姐忙于各种春招,有些收获了大厂offer,有些还在苦苦面试,其实那时候的心里还蛮忐忑的,不知道自己大三的时候会是什么样的一个水平,所以从19年的寒假放完,大二下学...

由浅入深,66条JavaScript面试知识点(七)

作者:JakeZhang转发链接:https://juejin.im/post/5ef8377f6fb9a07e693a6061目录...

2024前端面试真题之—VUE篇_前端面试题vue2020及答案

添加图片注释,不超过140字(可选)...

今年最常见的前端面试题,你会做几道?

在面试或招聘前端开发人员时,期望、现实和需求之间总是存在着巨大差距。面试其实是一个交流想法的地方,挑战人们的思考方式,并客观地分析给定的问题。可以通过面试了解人们如何做出决策,了解一个人对技术和解决问...