Last updated:
0 purchases
elegent card flutter
Features #
Elegant Design :
Present information in a visually appealing manner with elegant card designs.
Customization :
Tailor each card to fit your application's theme by adjusting colors, text styles, and dimensions.
Flexibility :
Use the ElegantCard widget within various layouts and adapt to different screen sizes.
Easy Integration :
Seamless integration into your Flutter projects for a polished and professional look.
Google Fonts :
Utilizes Google Fonts for stylish and consistent typography.
Getting started #
Usage #
class ElegentCard extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Elegent Card'),
),
body: Center(
child: ElegentCard(
cardTitle: "Card Title",
cardDesc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod ",
cardColor: Color(0xff22092C),
leadingContainerColor: Color(0xffBE3144),
cardHeight: 110,
leadingContainerHeight: 90,
),
)
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.