flutter_custom_cards 0.0.3 copy "flutter_custom_cards: ^0.0.3" to clipboard
flutter_custom_cards: ^0.0.3 copied to clipboard

outdated

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

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)

16
likes
0
pub points
81%
popularity

Publisher

verified publisherstudentmitra.in

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

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_custom_cards