From 3641db54d3fe68e5b21785afef70b3961a515f87 Mon Sep 17 00:00:00 2001 From: "Michael W. Aziz" Date: Sat, 5 Oct 2024 16:12:16 +0300 Subject: [PATCH] [FIX] radius in the gradient of the image widget --- lib/src/Widgets/src/image.widget.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/Widgets/src/image.widget.dart b/lib/src/Widgets/src/image.widget.dart index 79758df..1c6f412 100644 --- a/lib/src/Widgets/src/image.widget.dart +++ b/lib/src/Widgets/src/image.widget.dart @@ -208,7 +208,7 @@ Widget astromicImage( ), if (linearGradient != null) Container( - decoration: BoxDecoration(gradient: linearGradient), + decoration: BoxDecoration(gradient: linearGradient, borderRadius: radius), ), ], ),