AppSpacingGap class

SizedBox para gaps verticales (altura)

Proporciona SizedBox pre-configurados para separar widgets verticalmente en Column o layouts verticales.

🎨 Uso

Column(
  children: [
    Text('Elemento 1'),
    AppSpacingGap._().md,  // SizedBox(height: 12.0)
    Text('Elemento 2'),
    AppSpacingGap._().lg,  // SizedBox(height: 16.0)
    Text('Elemento 3'),
  ],
)

Properties

giant → SizedBox
48.0 - Gap vertical gigante
no setter
hashCode → int
The hash code for this object.
no setterinherited
huge → SizedBox
32.0 - Gap vertical enorme
no setter
lg → SizedBox
16.0 - Gap vertical grande (común en Column)
no setter
lgx → SizedBox
18.0 - Gap vertical grande-extra
no setter
massive → SizedBox
40.0 - Gap vertical masivo
no setter
md → SizedBox
12.0 - Gap vertical mediano
no setter
mdl → SizedBox
14.0 - Gap vertical mediano-grande
no setter
mds → SizedBox
10.0 - Gap vertical mediano-pequeño
no setter
mega → SizedBox
56.0 - Gap vertical mega
no setter
none → SizedBox
0.0 - Sin espacio vertical
no setter
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
sm → SizedBox
6.0 - Gap vertical pequeño
no setter
smd → SizedBox
8.0 - Gap vertical pequeño-mediano
no setter
ultra → SizedBox
64.0 - Gap vertical ultra
no setter
xl → SizedBox
20.0 - Gap vertical extra grande
no setter
xs → SizedBox
4.0 - Gap vertical extra pequeño
no setter
xxl → SizedBox
24.0 - Gap vertical extra extra grande
no setter
xxs → SizedBox
2.0 - Gap vertical extra extra pequeño
no setter
xxxl → SizedBox
28.0 - Gap vertical extra extra extra grande
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited