material_design_mirae

Last updated:

0 purchases

material_design_mirae Image
material_design_mirae Images
Add to Cart

Description:

material design mirae

material_design_mirae #

Platform Support #



Android
iOS
MacOS
Web
Linux
Windows




✔️
✔️
✔️
✔️
✔️
✔️



Usage #
Import import 'package:material_design_mirae/material_design_mirae.dart'
Example:
import 'package:material_design_mirae/material_design_mirae.dart';

// Button MASI
buttonMASI(
context,
buttonColor: primary,
onPressed: () {
print("Click Button Primary");
},
child: FittedBox(
child: Text(
'Primary',
style: TextStyle(
color: neutral10,
fontSize: 10,
),
),
),
),

// Card MASI
cardMASI(
shadowColor: neutral60.withOpacity(0.1),
child : Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
width: 100,
height: 100,
child: Icon(
Icons.image,
color: neutral50,
),
decoration: BoxDecoration(
borderRadius: const BorderRadius.only(
topRight: Radius.circular(10.0),
topLeft: Radius.circular(10.0),
),
color: neutral40,
),
),
],
),
),

// Color Pallet
final List _colors = [
neutral10,
neutral20,
neutral30,
neutral40,
neutral50,
neutral60,
neutral70,
neutral80,
neutral90,
neutral100,
primary,
primarySurface,
primaryHover,
primaryBorder,
primaryPressed,
primaryFocused,
secondary,
secondarySurface,
secondaryHover,
secondaryBorder,
secondaryPressed,
secondaryFocus,
danger,
dangerSurface,
dangerHover,
dangerBorder,
dangerPressed,
info,
infoSurface,
infoHover,
infoBorder,
infoPressed,
success,
successSurface,
successHover,
successBorder,
successPressed,
warning,
warningSurface,
warningHover,
warningBorder,
warningPressed,
];
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.