show<T> static method

Future<T?> show<T>(
  1. BuildContext context,
  2. ChatId from,
  3. List<ChatItemQuoteInput> quotes, {
  4. String? text,
  5. List<Attachment> attachments = const [],
  6. 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,
    ),
  );
}