az_ui 0.0.3 copy "az_ui: ^0.0.3" to clipboard
az_ui: ^0.0.3 copied to clipboard

A new Flutter package for easy and smooth development of ui.

Features #

This package is develop to speed up the process of UI development

Get Started #

You can start by changing your some widget to Az widgets like this

Way one: Widget #

Directly call our widgets

Text() to AzText()
Button() to AzButton()
and so on

Way Two: Extension #

Use extension method on exiting project

Text().azText()
Button().azButton()
and so on

AzContainer #

Calling as extension on AzText() to show border

AzText('Text')
.container()
.borderColor(Colors.pink)
.primaryBorder()
.borderWidth(1)
.borderFromLTRB(bool left, bool top, bool right, bool bottom), // it will build border, so border properties change befire call this

AzButton #

Simple example of calling AzButton

AzButton('Text')
.widthFull()
.primaryOutline()
.onPressed(() {
    print('On Pressed call this');
}),

Additional information #

TODO: Currently commonly used widgets and properties are implemented

6
likes
0
pub points
78%
popularity

Publisher

verified publisherzahidaz.com

A new Flutter package for easy and smooth development of ui.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on az_ui