flutter_custom_cards
New Flutter package which helps developers to create beautiful custom cards.
ScreenShots

Getting Started
To import the widget:
import 'package:flutter_custom_cards/flutter_custom_card.dart'
Make a widget Card:
TextCard
TextCard(
text: 'Custom Card',
childPadding: 12,
fontSize: 28,
color: Colors.red,
textColor: Colors.white,
elevation: 4,
shadowColor: Colors.green,
)
ImageCard
ImageCard(
elevation: 8,
shadowColor: Colors.red,
childPadding: 10,
color: Colors.yellow,
image: Image.network('[URL]'),
),
WidgetCard
WidgetCard(
widgetPadding: 20,
widget: Column(
children: [
Text('Card with custom widget'),
Icon(
Icons.favorite_outline,
color: Colors.red,
size: 30,
),
],
),
),
Example
TextCard(
text: 'Custom Card',
childPadding: 12,
fontSize: 28,
color: Colors.red,
textColor: Colors.white,
elevation: 4,
shadowColor: Colors.green,
)
Author
Pradeep Tintali (4gpradeep@gmail.com)