Container({
Key? key,
this.alignment,
this.padding,
this.color,
this.decoration,
this.foregroundDecoration,
double? width,
double? height,
BoxConstraints? constraints,
this.margin,
this.transform,
this.transformAlignment,
this.child,
this.clipBehavior = Clip.none,
})
2.3 常用属性
| 属性名 | 说明 | 取值 |
| :-: | :-: | :-: |
| alignment | 设置子控件的对齐方式 | AlignmentGeometry对象 |
| padding | 设置容器的内边距 | EdgeInsetsGeometry对象 |
| color | 容器的背景颜色 | Color对象 |
| decoration | 容器的修饰属性(不能与Color通知设置) | Decoration对象 |
| foregroundDecoration | 前景修饰 | Decoration对象 |
| width | 容器宽度 | double对象 |
| height | 容器高度 | double对象 |
| constraints | 子组件的约束 | BoxConstraints对象 |
| margin | 容器的外边距 | EdgeInsetsGeometry对象 |
| transform | 容器变换属性(旋转、缩放等) | Matrix4对象 |
| transformAlignment | 容器变换对齐方式 | AlignmentGeometry对象 |
| child | 子组件 | Widget对象 |
3.1 文字
只有子控件,没有任何参数
Container(child: Text(‘文字’,style:TextStyle(fontSize: 26),),)
设置背景色
Container(
color: Colors.blue,
child: Text(‘文字’,style:TextStyle(fontSize: 26) ,),),
padding和margin
Container(
color: Colors.blue,
child: Text(‘文字’,style:TextStyle(fontSize: 26) ,),
padding: EdgeInsets.all(20),
margin: EdgeInsets.all(30),
)
Decoration 装饰(背景)
Container(
child: Text(‘文字’,style:TextStyle(fontSize: 26) ,),
padding: EdgeInsets.symmetric(horizontal: 10),
decoration: BoxDecoration(
shape: BoxShape.rectangle,
borderRadius: BorderRadius.all(Radius.circular(20)),
color: Colors.blue
),
),
Decoration 装饰(边框)
Container(
child: Text(‘文字’,style:TextStyle(fontSize: 26) ,),
padding: EdgeInsets.symmetric(horizontal: 10),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12),
border: Border.all(
color: Colors.blue,
width: 2,
),
),
),
transform 变换
Container(
child: Text(‘文字’,style:TextStyle(fontSize: 26) ,),
transform: Matrix4.skewX(10),
),
3.2 图片
圆角图片
Container(
height: 200,
width: 200,
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage(“images/flutter.png”),
fit: BoxFit.cover,
),
border: Border.all(
color: Colors.blue,
width: 2,
),
borderRadius: BorderRadius.circular(12),
),
),
圆形图片
最后
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助。
因此我收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!
图片转存中…(img-Wf2kDkaT-1715573691894)]
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!