diff --git a/core/lib/presentation/views/html_viewer/html_content_viewer_widget.dart b/core/lib/presentation/views/html_viewer/html_content_viewer_widget.dart index 509a859a3..e2d876c4c 100644 --- a/core/lib/presentation/views/html_viewer/html_content_viewer_widget.dart +++ b/core/lib/presentation/views/html_viewer/html_content_viewer_widget.dart @@ -116,6 +116,9 @@ class _HtmlContentViewState extends State { } return InAppWebView( key: ValueKey(htmlData), + initialSettings: InAppWebViewSettings( + transparentBackground: true, + ), onWebViewCreated: (controller) async { _webViewController = controller; controller.loadData(data: htmlData);