我是新flutter和我想创建简单的设计菜单应用程序,如下图所示...我尝试下面的代码,但它没有给予相同的设计,有什么办法实现它?Image Here
MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text("Card over stack"),
),
body: Stack(
children: <Widget>[
Align(
alignment: Alignment.topCenter,
child: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.all(Radius.circular(10.0)),
color: Colors.lightBlueAccent),
height: 100,
),
),
Positioned(
top: 60,
right: 10,
left: 10,
child: Card(
child: ListTile(
leading: SizedBox(
height: 150.0,
width: 150.0, // fixed width and height
child: Image.asset("assets/images/test.png"))),
),
),
],
),
),
);
2条答案
按热度按时间ncgqoxb01#
在
Material
中包含Card
,给予1
的elevation
wwwo4jvm2#
试试这个:
这是我的结论: