show<T> static method
- BuildContext context, {
- 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),
);
}