gap_widget

Last updated:

0 purchases

gap_widget Image
gap_widget Images
Add to Cart

Description:

gap widget

gap_widget #
Gap Widget Vertical Gap and Horizontal Gap to rid out of write SizedBox
Add Dependency #
dependencies:
gap_widget: ^0.0.1
copied to clipboard
Example #
class Page extends StatelessWidget {
const Page({Key? key}) : super(key: key);

@override
Widget build(BuildContext context) {
return Container(
child: Column(
children: [
Text("Text 1"),
VerticalGap(),
Text("Text 2"),
VerticalGap(gap: 12,),
Row(
children: [
Text("Text 3"),
HorizontalGap(gap: 20,),
Text("Text 4")
],
)
],
),
);
}
}
}
copied to clipboard
Widgets #
VerticalGap(gap: 12.0) //default gap is 8.0
HorizontalGap() // //default gap is 8.0
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.