Flutter custom cards code example
Example: how to add cards in flutter
Container(
width: 300,
height: 100,
child: Card(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(15.0),
),
color: Colors.lightBlueAccent.withOpacity(0.5),
),
);