material_o 0.1.4 material_o: ^0.1.4 copied to clipboard
Flutter Material UI Package.
Material-O Flutter UI Package #
Installation #
flutter pub add material_o
copied to clipboard
dependencies:
material_o: ^0.1.0
copied to clipboard
Create New Dialog Usage #
This Widget for Dialogs
showGenericDialog(
context,
color: Colors.green,
icon: const Icon(Icons.done),
header: "Account Create Successful",
content: "You have create your account Successfully!",
callBack: () => {
GenericDialogButton(text: 'OK', primary: true): true,
GenericDialogButton(text: 'CANCEL'): false,
}
);
copied to clipboard
Layout #
Column Widget Enhanced with Gap
ColumnBox(
gap: 20.0, //double
children: <Widget>[]
)
copied to clipboard
Row Widget Enhanced with Gap
RowBox(
gap: 20.0, //double
children: <Widget>[]
)
copied to clipboard