listenable_future_builder library

Main library for ListenableFutureBuilder

Classes

ListenableFutureBuilder<T extends Listenable>
A widget that awaits initialization and then rebuilds when the it receives a notification from the Listenable. Use this widget with ChangeNotifier ValueNotifier, or other Listenable controllers to rebuild the widget when the value changes.

Typedefs

AsyncListenableBuilder<T extends Listenable> = Widget Function(BuildContext context, Widget? child, AsyncSnapshot<T> listenableSnapshot)
Builds a Widget when given a concrete value of a AsyncSnapshot<T> where T is a Listenable.