0 purchases
brace display
A widget that draws a brace alongside another widget. Useful to group list items together.
Features #
Prerequisites #
None, just do a quick flutter pub get brace_display and you're set.
Usage #
BraceDisplay(
header: Text("Items"),
direction: BraceDirection.left, // or BraceDirection.right. Defaults to left.
child: Column(
crossAxisAlignment: CrossAxisAlignment.start, // to justify the text close to the brace
children:[
Text("Item 1"),
Text("Item 2"),
Text("Item 3"),
]
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.