赞
踩
- new Text('Text文字',
- style: new TextStyle(fontSize: 32.0, color: Colors.red))
new Icon(Icons.star, color: Colors.red[500])
Image.asset()
- new Image.asset('images/2.0x/list_img.png',
- width: 100, height: 100)
AssetImage
- Image(
- width: 100,
- height: 100,
- color: Colors.green,
- image: AssetImage("images/2.0x/list_img.png"), )
Image.network()
- Image.network(
- 'https://img2.baidu.com/it/u=1514002029,2035215441&fm=26&fmt=auto',
- width: 100,
- height: 100,)
NetworkImage
- Image(
- width: 100,
- height: 100,
- image: NetworkImage(
- "https://img2.baidu.com/it/u=1514002029,2035215441&fm=26&fmt=auto"),
- ),
- topCenter 居中靠上
- topRight 右上角
- centerLeft 居中靠左
- center 居中
- centerRight 居中靠右
- bottomLeft 居右下角
- bottomCenter 居中靠下
- bottomRight 居右下角
- BoxFit.contain 默认值,保持图片的原始的比例,等比缩放
- BoxFit.fill 充满这个容器,会出现拉伸
- BoxFit.cover 保持图片大小,超过部分会被裁剪
- BoxFit.fitWidth 宽度充满容器,高度等比缩放,图片不会被拉伸,超出部分会被剪裁
- BoxFit.fitHeight 高度充满容器,宽度比例缩放,图片不会被拉伸,超出部分会被剪裁。
- BoxFit.none 没有设置显示策略,以原始大小居中来显示
- BoxFit.scaleDown 当图片资源大于容器的时,效果相当于 BoxFit.none,
- 当组件比图片小时,效果相当于 BoxFit.contain。
常用的普通按钮:
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。