flutter软件开发笔记08-容器使用方法
wptr33 2025-04-26 21:38 2 浏览
在 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('带阴影的卡片式布局'),
],
),
),
);
}
}
三 代码讲解
运行效果
这个示例会展示以下内容:
- 蓝色圆角 Container
- 红绿蓝方块水平排列的 Row
- 黄色背景叠加红色方块和文字的 Stack
- 水平滚动 ListView 和 3列 GridView
- 红蓝比例分割的 Expanded/Flexible
- 带阴影的 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 // 自定义形状(如圆角半径)
如何调试?
- 复制代码到 lib/main.dart
- 运行 flutter run
- 尝试修改以下参数观察变化:修改 Container 的 margin 和 padding调整 Row 的 mainAxisAlignment改变 Expanded 的 flex 比例
通过这个示例,你可以直观理解 Flutter 容器组件如何协作构建复杂界面。如果需要更高级的布局,可以学习 LayoutBuilder 或 CustomScrollView。
相关推荐
- Linux高性能服务器设计
-
C10K和C10M计算机领域的很多技术都是需求推动的,上世纪90年代,由于互联网的飞速发展,网络服务器无法支撑快速增长的用户规模。1999年,DanKegel提出了著名的C10问题:一台服务器上同时...
- 独立游戏开发者常犯的十大错误
-
...
- 学C了一头雾水该咋办?
-
学C了一头雾水该怎么办?最简单的方法就是你再学一遍呗。俗话说熟能生巧,铁杵也能磨成针。但是一味的为学而学,这个好像没什么卵用。为什么学了还是一头雾水,重点就在这,找出为什么会这个样子?1、概念理解不深...
- C++基础语法梳理:inline 内联函数!虚函数可以是内联函数吗?
-
上节我们分析了C++基础语法的const,static以及this指针,那么这节内容我们来看一下inline内联函数吧!inline内联函数...
- C语言实战小游戏:井字棋(三子棋)大战!文内含有源码
-
井字棋是黑白棋的一种。井字棋是一种民间传统游戏,又叫九宫棋、圈圈叉叉、一条龙、三子旗等。将正方形对角线连起来,相对两边依次摆上三个双方棋子,只要将自己的三个棋子走成一条线,对方就算输了。但是,有很多时...
- C++语言到底是不是C语言的超集之一
-
C与C++两个关系亲密的编程语言,它们本质上是两中语言,只是C++语言设计时要求尽可能的兼容C语言特性,因此C语言中99%以上的功能都可以使用C++完成。本文探讨那些存在于C语言中的特性,但是在C++...
- 在C++中,如何避免出现Bug?
-
C++中的主要问题之一是存在大量行为未定义或对程序员来说意外的构造。我们在使用静态分析器检查各种项目时经常会遇到这些问题。但正如我们所知,最佳做法是在编译阶段尽早检测错误。让我们来看看现代C++中的一...
- ESL-通过事件控制FreeSWITCH
-
通过事件提供的最底层控制机制,允许我们有效地利用工具箱,适时选择使用其中的单个工具。FreeSWITCH是一个核心交换与混合矩阵,它周围有几十个模块提供各种功能特性。我们完全控制了所有的即时信息,这些...
- 物理老师教你学C++语言(中篇)
-
一、条件语句与实验判断...
- C语言入门指南
-
当然!以下是关于C语言入门编程的基础介绍和入门建议,希望能帮你顺利起步:C语言入门指南...
- C++选择结构,让程序自动进行决策
-
什么是选择结构?正常的程序都是从上至下顺序执行,这就是顺序结构...
- C++特性使用建议
-
1.引用参数使用引用替代指针且所有不变的引用参数必须加上const。在C语言中,如果函数需要修改变量的值,参数必须为指针,如...
- C++程序员学习Zig指南(中篇)
-
1.复合数据类型结构体与方法的对比C++类:...
- 研一自学C++啃得动吗?
-
研一自学C++啃得动吗?在开始前我有一些资料,是我根据网友给的问题精心整理了一份「C++的资料从专业入门到高级教程」,点个关注在评论区回复“888”之后私信回复“888”,全部无偿共享给大家!!!个人...
- C++关键字介绍
-
下表列出了C++中的常用关键字,这些关键字不能作为变量名或其他标识符名称。1、autoC++11的auto用于表示变量的自动类型推断。即在声明变量的时候,根据变量初始值的类型自动为此变量选择匹配的...
- 一周热门
-
-
C# 13 和 .NET 9 全知道 :13 使用 ASP.NET Core 构建网站 (1)
-
因果推断Matching方式实现代码 因果推断模型
-
git pull命令使用实例 git pull--rebase
-
git pull 和git fetch 命令分别有什么作用?二者有什么区别?
-
面试官:git pull是哪两个指令的组合?
-
git 执行pull错误如何撤销 git pull fail
-
git fetch 和git pull 的异同 git中fetch和pull的区别
-
git pull 之后本地代码被覆盖 解决方案
-
还可以这样玩?Git基本原理及各种骚操作,涨知识了
-
git命令之pull git.pull
-
- 最近发表
- 标签列表
-
- git pull (33)
- git fetch (35)
- mysql insert (35)
- mysql distinct (37)
- concat_ws (36)
- java continue (36)
- jenkins官网 (37)
- mysql 子查询 (37)
- python元组 (33)
- mysql max (33)
- vba instr (33)
- mybatis 分页 (35)
- vba split (37)
- redis watch (34)
- python list sort (37)
- nvarchar2 (34)
- mysql not null (36)
- hmset (35)
- python telnet (35)
- python readlines() 方法 (36)
- munmap (35)
- docker network create (35)
- redis 集合 (37)
- python sftp (37)
- setpriority (34)