amazingcard

Creator: coderz1093

Last updated:

0 purchases

amazingcard Image
amazingcard Images

Languages

Categories

Add to Cart

Description:

amazingcard

##instalation


add the latest version of package to your pubspec.yaml (and run pub get):
'''yaml
dependencies:
amazing_card: ^0.0.1,


Import the package and use it in your Flutter App.


import 'package:'amazing_card/amazing_card.dart
##Example
There are a number of properties that you can modify:

height
width
cardColor
cardShadowColor
borderRadius
offset
blurRadius
spreadRadius
Widget as Child

class AmazingClass extends StatelessWidget {
const AmazingClass({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(child:
AmazingCard(
height: 100,
width: double.infinity,
decoration: BoxDecoration(
boxShadow: [
BoxShadow(
offset : Offset(0,2),
blurRadius : 2,
spreadRadius : 3,
color : Colors.black.withOpacity(0.2),
)
],
color: Colors.white,
borderRadius : BorderRadius.circular(20)
),
child: Widget(),
),),
);
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.