Card(
margin: const EdgeInsets.all(0),
child: Padding(
padding: const EdgeInsets.all(20),
child: Expanded(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text(
'Labuan Bajo',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 18,
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,
),
),
const Gap(16),
ElevatedButton(
onPressed: () {},
style: ButtonStyle(
overlayColor: const WidgetStatePropertyAll(
Colors.white10,
),
backgroundColor: WidgetStatePropertyAll(
Theme.of(context).primaryColor,
),
foregroundColor: const WidgetStatePropertyAll(
Colors.white,
),
shape: WidgetStatePropertyAll(
RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
),
),
child: const Row(
mainAxisSize: MainAxisSize.min,
children: [
Text('More'),
Gap(10),
Icon(Icons.arrow_forward, size: 20),
],
),
),
],
),
),
),
),