I liked this book design in iBooks and have been wondering can it be easily made with flutter?
What i want :

original

i try this :
Container(
width: 150,
height: 200,
decoration: BoxDecoration(
border: Border(
right: BorderSide(
color: Colors.grey,
width: 5,
),
),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.3),
spreadRadius: 2,
blurRadius: 4,
offset: Offset(2, 2),
),
],
),
child: Stack(
children: [
// The book cover image
Image.network(
audiobook.artwork,
fit: BoxFit.contain,
),
],
),
),
You can use container and nested rows & column widgets, to create this layout,
here is a sample code
output :