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