pad 1.0.0 copy "pad: ^1.0.0" to clipboard
pad: ^1.0.0 copied to clipboard

Quick padding with a short syntax. Shortcuts for the classical Padding widget

Pad #

pub package

Quick padding for Flutter with a short syntax. Instead of:

const Padding(padding: EdgeInsets.only(top: 10.0))

You can use:

const PadTop(10.0)

Usage #

Directional padding #

const Pad(
   bottom: 10.0,
   top: 10.0,
   left: 10.0,
   right: 10.0,
   child: Text("Foo")
)

All parameters are optional

Pad left #

const PadLeft(10.0, child: Text("Foo"))

Pad right #

const PadRight(10.0, child: Text("Foo"))

Pad top #

const PadTop(10.0, child: Text("Foo"))

Pad bottom #

const PadBottom(10.0, child: Text("Foo"))

Pad horizontal #

const PadHorizontal(10.0, child: Text("Foo"))

Pad vertical #

const PadVertical(10.0, child: Text("Foo"))

Pad all #

const PadAll(10.0, child: Text("Foo"))

Pad from LTRB #

const PadLTRB(
   10.0,
   15.0,
   10.0,
   15.0,
   child: Text("Foo")
)
5
likes
140
pub points
55%
popularity

Publisher

unverified uploader

Quick padding with a short syntax. Shortcuts for the classical Padding widget

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on pad