waitingBuilder property

Widget Function(BuildContext context) get waitingBuilder

(Optional) A callback that builds the widget tree while the view model is being initialized.

If null, nothing is displayed during the loading phase.

  • context: The current build context.

Implementation

Widget Function(BuildContext context) get waitingBuilder =>
    (context) => const SizedBox.shrink();