Skip to main content

6. Card With icon

Card

import 'package:flutter/material.dart';
import 'package:gap/gap.dart';
Card(
margin: const EdgeInsets.all(0),
child: Padding(
padding: const EdgeInsets.all(20),
child: Expanded(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Icon(
Icons.bar_chart_rounded,
color: Theme.of(context).primaryColor,
size: 30,
),
const Gap(12),
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,
),
),
],
),
),
),
),