This commit is contained in:
2025-03-04 18:17:00 +02:00
parent f7db26bee4
commit 4c85540558
2 changed files with 2 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
## 0.1.3 ## 0.1.3
- **FIX**: Added export for `ImageSizingMaster`. - **FIX**: Added export for `ImageSizingMaster`.
- **FIX**: Removed `placeholderBuilder` Error because I was supplying it along with `progressIndicatorBuilder`.
## 0.1.2 ## 0.1.2
- **FIX**: Updated Switcher toggle not recognizing disabled mode. - **FIX**: Updated Switcher toggle not recognizing disabled mode.

View File

@@ -209,7 +209,7 @@ class AstromicImage extends StatelessWidget {
height: size.height, height: size.height,
child: loadingWidget != null ? loadingWidget!(bytes?.cumulativeBytesLoaded, bytes?.expectedTotalBytes) : defaultLoadingWidget, child: loadingWidget != null ? loadingWidget!(bytes?.cumulativeBytesLoaded, bytes?.expectedTotalBytes) : defaultLoadingWidget,
), ),
placeholderBuilder: (BuildContext context) => loadingWidget != null ? loadingWidget!(null, null) : defaultLoadingWidget, // placeholderBuilder: (BuildContext context) => loadingWidget != null ? loadingWidget!(null, null) : defaultLoadingWidget,
fadeInCurve: fadeInCurve, fadeInCurve: fadeInCurve,
fadeInDuration: fadeInDuration, fadeInDuration: fadeInDuration,
imageBuilder: (BuildContext context, Widget image) => Container( imageBuilder: (BuildContext context, Widget image) => Container(