Last updated:
0 purchases
flutter horizontal divider
flutter_horizontal_divider #
An horizontal divider for Flutter based on VerticalDivider.
Supported platforms #
Flutter Android
Flutter iOS
Flutter web
Flutter desktop
Live preview #
https://adbonnin.github.io/flutter_horizontal_divider/
Basic horizontal divider example :
How to use #
Create an HorizontalDivider widget :
class BasicExample extends StatelessWidget {
@override
Widget build(BuildContext context) {
return HorizontalDivider(
color: Colors.blue,
height: 10.0,
thickness: 4.0,
indent: 20.0,
endIndent: 20.0,
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.