diff --git a/lib/features/email/presentation/widgets/html_attachment_previewer.dart b/lib/features/email/presentation/widgets/html_attachment_previewer.dart index b5d6391ac..452e2360c 100644 --- a/lib/features/email/presentation/widgets/html_attachment_previewer.dart +++ b/lib/features/email/presentation/widgets/html_attachment_previewer.dart @@ -69,6 +69,9 @@ class _HtmlAttachmentPreviewerState extends State { child: Center( child: Container( margin: const EdgeInsets.symmetric(vertical: _verticalMargin), + constraints: BoxConstraints( + maxHeight: MediaQuery.of(context).size.height, + ), color: Colors.white, child: ResponsiveWidget( responsiveUtils: widget.responsiveUtils,