Card(
margin: const EdgeInsets.all(0),
child: Padding(
padding: const EdgeInsets.all(10),
child: Row(
children: [
ClipRRect(
borderRadius: BorderRadius.circular(8),
child: ExtendedImage.network(
'https://images.pexels.com/photos/5155804/pexels-photo-5155804.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1',
width: 80,
height: 80,
fit: BoxFit.cover,
),
),
const Gap(16),
Expanded(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text(
'Labuan Bajo',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 14,
color: Colors.black87,
),
),
const Gap(8),
Text(
'Labuan Bajo is a fishing town located at the western end of the large island of Flores in the East Nusa Tenggara province of Indonesia. It is in Komodo district.',
maxLines: 2,
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: 14,
color: Colors.grey.shade600,
),
),
],
),
),
],
),
),
),