show<T> static method
- BuildContext context,
- ChatId from,
- List<
ChatItemQuoteInput> quotes, { - String? text,
- List<
Attachment> attachments = const [], - void onSent()?,
Displays a ChatForwardView wrapped in a ModalPopup.
Implementation
static Future<T?> show<T>(
BuildContext context,
ChatId from,
List<ChatItemQuoteInput> quotes, {
String? text,
List<Attachment> attachments = const [],
void Function()? onSent,
}) {
final Style style = Theme.of(context).style;
return ModalPopup.show(
context: context,
desktopConstraints: const BoxConstraints(
maxWidth: double.infinity,
maxHeight: 800,
),
mobilePadding: const EdgeInsets.only(bottom: 12),
desktopPadding: const EdgeInsets.only(bottom: 12),
background: style.colors.background,
child: ChatForwardView(
key: const Key('ChatForwardView'),
from: from,
quotes: quotes,
text: text,
attachments: attachments,
onSent: onSent,
),
);
}