flutter_queue_it

Creator: coderz1093

Last updated:

0 purchases

flutter_queue_it Image
flutter_queue_it Images
Add to Cart

Description:

flutter queue it

flutter_queue_it #



Flutter integration with queue_it.

Provides the QueueItWidget widget that listens to the queue and automatically
rebuilds on changes.
Example #
QueueItWidget(
queue: _queue,
builder: (context, snapshot) {
/// `builder` will be called each time the queue updates
final items = _queue.items().toList();
return ListView.builder(
itemCount: items.length,
itemBuilder: (context, index) {
final item = items[index];
return ListTile(
title: Text('Item status: ${item.status.name}'),
);
},
);
},
);
copied to clipboard
For a more in-depth example, check out the example project.

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.