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")
)

Libraries

pad