Skip to content

DimalJay/material_o

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Material-O Flutter UI Package

Installation

flutter pub add material_o
dependencies:
  material_o: ^0.1.0

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,
        }
    );

Layout

Column Widget Enhanced with Gap

ColumnBox(
    gap: 20.0, //double
    children: <Widget>[]
)

Row Widget Enhanced with Gap

RowBox(
    gap: 20.0, //double
    children: <Widget>[]
)