Raising Image flutter in card

-1

i’m new to flutter and i wanted to create simple design for menu app as shown in image below … i tried below code but it didn’t give same design, is there any way to achieve it?

 MaterialApp(

home: Scaffold(
appBar: AppBar(
title: Text(“Card over stack”),
),
body: Stack(
children: [
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”))),
),
),
],
),
),

Leave a Comment