From 08e4d97865829e5a79eb4cc2593977e8e52aa765 Mon Sep 17 00:00:00 2001 From: "Michael W. Aziz" Date: Fri, 12 Sep 2025 19:18:54 -0400 Subject: [PATCH] [FEAT] working on the image widget for dynamic memory management and caching. --- lib/src/Widgets/widgets.astromic.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/src/Widgets/widgets.astromic.dart b/lib/src/Widgets/widgets.astromic.dart index 06e7868..9486b1e 100644 --- a/lib/src/Widgets/widgets.astromic.dart +++ b/lib/src/Widgets/widgets.astromic.dart @@ -46,6 +46,7 @@ class AstromicWidgets { Color? svgColor, Widget Function(int? loadedBytes, int? totalBytesToLoad)? loadingWidget, Widget Function(dynamic error, StackTrace? stackTrace)? errorWidget, + double? imageQuality, }) => AstromicImage( assetPath: assetPath, @@ -77,6 +78,7 @@ class AstromicWidgets { svgColor: svgColor, loadingWidget: loadingWidget, errorWidget: errorWidget, + imageQuality: imageQuality, ); /// Customized Blur widget for the Astromic system.