mixins 0.0.2 copy "mixins: ^0.0.2" to clipboard
mixins: ^0.0.2 copied to clipboard

discontinued
outdated

Mixins is a package for shortening the use of some widgets or properties.

It's not a great package, just help us to code briefly, everyone can make their own easily


// without Mixins

Column(
    mainAxisAlignment: MainAxisAlignment.center
    children: []
)

Container(
    margin: EdgeInsets.all(15),
    padding: EdgeInsets.symmetric(vertical: 15),
    decoration: BoxDecoration(
        border: Border(top: BorderSide(color: Colors.white)),
        borderRadius: BorderRadius.all(Radius.circular(5)),
    )
)

// with Mixins

Column(
    mainAxisAlignment: Maa.center 
    children: []
)

Container(
    margin: Ei.all(15),
    padding: Ei.sym(v: 15),
    decoration: BoxDecoration(
        border: Br.only(['t'], color: Colors.white),
        borderRadius: Br.radius(5)
    )
)

7
likes
0
points
5
downloads

Publisher

unverified uploader

Weekly Downloads

Mixins is a package for shortening the use of some widgets or properties.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, intl, update

More

Packages that depend on mixins