show<T> static method

Future<T?> show<T>(
  1. BuildContext context, {
  2. required ChatId chatId,
})

Displays an AddChatMemberView wrapped in a ModalPopup.

Implementation

static Future<T?> show<T>(BuildContext context, {required ChatId chatId}) {
  final style = Theme.of(context).style;

  return ModalPopup.show(
    context: context,
    background: style.colors.background,
    desktopPadding: const EdgeInsets.only(bottom: 12),
    mobilePadding: const EdgeInsets.only(bottom: 12),
    child: AddChatMemberView(chatId: chatId),
  );
}