一些简单的组件
文本
Text(
"Hello world",
textAlign: TextAlign.left,
style: TextStyle(),
)
多个文本
Text.rich(TextSpan(children: [
TextSpan(text: "Hello world", style: TextStyle()),
TextSpan(text: "Hello world", style: TextStyle()),
]))
默认文本样式
DefaultTextStyle(
//1.设置文本默认样式
style: TextStyle(
color: Colors.red,
),
child: Column(
children: <Widget>[
Text("Hello world"),
],
),
)
加载图片(本地、网络)
Image(image: AssetImage("assets/images/1.jpg"), width: 100.0)
Image(image: NetworkImage("https://xxx.com/1.jpg"), width: 100.0)
进度条
LinearProgressIndicator(
backgroundColor: Colors.grey[200],
valueColor: AlwaysStoppedAnimation(Colors.blue),
),
圆形进度条
CircularProgressIndicator(
backgroundColor: Colors.grey[200],
valueColor: AlwaysStoppedAnimation(Colors.blue),
),