flutter 基础
2021/4/14 18:25:37
本文主要是介绍flutter 基础,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
入口标准代码
void main(){ runApp(MyApp()) } class MyApp extends StatelessWidget{ @override Widget build(BuildContext context){ return MaterialApp( home:Scaffold( appBar:AppBar(title:Text("flutter demo")) ), body:Center( child:Text("xxxx"), ) ); } }
Container 容器组件
选项:值
child:子组件
height: dobule类型
width:dobule类型
padding:EdgeInsets.all(10) 四边边距 EdgeInsets.fromLTRB(10,10,10,10)左上右下
margin:EdgeInsets.all(10) 四边边距 EdgeInsets.fromLTRB(10,10,10,10)左上右下
transfom:Matrix4..translationVaues(100,0,0) 偏移 x,y,z
Matrix4.rotationZ(0.3) 旋转
alignment:Alignment.bottomLeft 内容对齐 /Alignment.bottomCenter /Alignment.topCenter ........
decoration:盒子装饰
BoxDecoration()
color:盒子背景颜色
borderRadius:BorderRadius.all( 盒子圆角
Radius:circular(8)
)
border: Border.all(
color:边框颜色
width:边框颜色
)
text文本组件
值
textAlign:TextAlign.right 文字靠右 TextAlign.center 文字居中
overflow:TextOverflow.ellipsis 超出省略
textScaleFactor:2 字体放大
maxLines:1 一行显示
style:TextStyle:() 文字样式
fontSize:16.0 文字大小
color:文字颜色 Color.fromARGB(1,2,3,4)
fontWeight:FontWeight.w300 字体加粗
fontStyle:FontStyle.italic 字体倾斜
decoration:TextDecoration.lineThrough
decorationColor:Color.white 穿过的线的颜色
decorationStyle:TextDecorationStyle.dashed 虚线
letterSpacing:5.0 字间距
这篇关于flutter 基础的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-25Java创意资料:新手入门的创意学习指南
- 2024-11-25JAVA对接阿里云智能语音服务资料详解:新手入门指南
- 2024-11-25Java对接阿里云智能语音服务资料详解
- 2024-11-25Java对接阿里云智能语音服务资料详解
- 2024-11-25JAVA副业资料:新手入门及初级提升指南
- 2024-11-25Java副业资料:入门到实践的全面指南
- 2024-11-25Springboot应用的多环境打包项目实战
- 2024-11-25SpringBoot应用的生产发布项目实战入门教程
- 2024-11-25Viite多环境配置项目实战:新手入门教程
- 2024-11-25Vite多环境配置项目实战入门教程