Rak*_*M.A 1 mobile android dart material-design flutter
所以我有这样的设计:
我怎样才能在 Flutter 中实现这一目标?
您可能需要使用该Stack小部件:
Container(
height: 150,
width: 150,
padding: const EdgeInsets.only(top: 10, left: 10),
decoration: BoxDecoration(
color: Colors.teal,
borderRadius: BorderRadius.circular(15.0),
),
child: Stack(
children: const [
Align(
alignment: Alignment.topLeft,
child: Text(
"History",
style: TextStyle(color: Colors.white, fontSize: 25),
),
),
Align(
alignment: Alignment.bottomRight,
child: Icon(
Icons.history,
color: Colors.cyan,
size: 75,
),
),
],
),
),
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
998 次 |
| 最近记录: |