1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| Widget avatar = Image.asset( "assets/imgs/wakuwaku.jpg", fit: BoxFit.fitHeight, width: 80.0, height: 80.0, );
avatar,
ClipOval(child: avatar),
ClipRRect( borderRadius: BorderRadius.circular(5.0), child: avatar, ),
Row( mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ Align( alignment: Alignment.topLeft, widthFactor: .5, child: avatar, ), Text( "你好世界", style: TextStyle(color: Colors.green), ) ], ),
Row( mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ ClipRect( child: Align( alignment: Alignment.topLeft, widthFactor: .5, child: avatar, ), ), Text("你好世界", style: TextStyle(color: Colors.green)) ], ),
|
v1.5.2