material_card

Last updated:

0 purchases

material_card Image
material_card Images
Add to Cart

Description:

material card

Material card
Features #
Create a simple card
Getting started #
Install latest version and use the widget :)
Usage #
Create a material card with these options
- Height
- Width
- Color
- Padding
- Corner radius
class MyScreen extends StatelessWidget{
const MyScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.blue,
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: CardWidget(
width: 100.0,
height: 100.0,
color: Colors.white,
padding: 10.0,
cornerRadius: 10.0
),
),
);
}
}

copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.