一個(gè)小部件辕漂,它控制[Stack]的子節(jié)點(diǎn)的位置浦妄。僅包含StatelessWidgets或StatefulWidgets其子類對象尼摹。
Positioned Widget屬性介紹
- left:左邊距離
- top:上邊距離
- right:右邊距離
- bottom:下邊距離
- width:寬度
- height:高度
Stack與Positioned組合使用
body: Container(
alignment: Alignment.center,
color: Colors.blue,
child: Stack(
alignment: const Alignment(0.0, 0.8),//0表示正中心见芹,取值范圍為[-1,1]
children: [
CircleAvatar(
backgroundImage: NetworkImage(
"https://avatars3.githubusercontent.com/u/7410469?s=460&v=4"),
radius: 100.0,
),
Container(
decoration: BoxDecoration(
color: Colors.grey,
),
child: Text(
'提莫',
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.bold,
color: Colors.white,
),
),
),
],
),
),