Flutter常用控制元件-Image

weixin_33935777發表於2019-02-14

body:new Center(

child: Container(

child:new Image.network(

'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1550141273295&di=4711bd27240dbc1c3c6297922a5daa39&imgtype=0&src=http%3A%2F%2Fimg.25pp.com%2Fuploadfile%2Fapp%2Ficon%2F20160224%2F1456284770254092.jpg',

fit:BoxFit.fitWidth  //縮放方式

color: Colors.greenAccent,  //和顏色混合

colorBlendMode: BlendMode.darken,//和顏色混合模式

repeat: ImageRepeat.repeatX,//圖片沒有佔滿時,是否重複圖片佔滿 repeatX  repeatY  repeat

    ),//從網路載入圖片

width:500,

height:300,

color: Colors.lightBlue,

)

),

相關文章