show<T> static method

Future<T?> show<T>(
  1. BuildContext context, {
  2. AccountsViewStage initial = AccountsViewStage.accounts,
})

Displays an AccountsView wrapped in a ModalPopup.

Implementation

static Future<T?> show<T>(
  BuildContext context, {
  AccountsViewStage initial = AccountsViewStage.accounts,
}) {
  return ModalPopup.show(
    context: context,
    background: Theme.of(context).style.colors.background,
    child: AccountsView(initial: initial),
  );
}