multi_stream_builder

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

multi stream builder

Flutter widget to replace multiple nester StreamBuilder/ValueListenableBuilder, allowing to combine both
Getting started #
dependencies:
multi_stream_builder: ^0.0.1
copied to clipboard
Usage #
Widget build(BuildContext context) {
return MultiStreamBuilder(
streams: [stream1, stream2],
valuesListenable: [valueListenable1, valueListenable2],
builder: (context, dataList) {
final stream1Value = dataList[0];
final stream2Value = dataList[1];
final valueListenable1Value = dataList[2];
final valueListenable2Value = dataList[3];
return Text('$stream1Value, $stream2Value, $valueListenable1Value, $valueListenable2Value');
},
);
}
copied to clipboard

License

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

Files:

Customer Reviews

There are no reviews.