more_builders 1.0.0 copy "more_builders: ^1.0.0" to clipboard
more_builders: ^1.0.0 copied to clipboard

outdated

A simple package including "builder wrappers" for Rows, Columns and Wraps

A simple package including "builder wrappers" for Rows, Columns and Wraps.

Adds the three new classes wich provide ListView.builder(..) and ListView.seperated(...) functionality to Columns, Rows and Wraps . All standard attributes can be passed through.

Example #

final  List<String> items;

@override
Widget build(BuildContext context) {
    return BuilderRow(
	    itemNumber: items.length,
	    itemBuilder: (context, index){
		    return  Text(items[index]);
		},
	    seperatorBuilder: (context, index){
		    return  VerticalDivider(width:  10,);
		},
	);
}
1
likes
30
pub points
0%
popularity

Publisher

unverified uploader

A simple package including "builder wrappers" for Rows, Columns and Wraps

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on more_builders