show<T> static method

Future<T?> show<T>(
  1. BuildContext context
)

Displays a BlocklistView wrapped in a ModalPopup.

Implementation

static Future<T?> show<T>(BuildContext context) {
  final style = Theme.of(context).style;

  return ModalPopup.show(
    context: context,
    child: const BlocklistView(),
    background: style.colors.background,
  );
}