We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc785c9 commit 0b2568eCopy full SHA for 0b2568e
1 file changed
lib/components/card/gf_card.dart
@@ -168,9 +168,9 @@ class GFCard extends StatelessWidget {
168
clipBehavior: clipBehavior ??
169
cardTheme.clipBehavior ??
170
_defaultClipBehavior,
171
- child: overlayImage ?? cardChild,
+ child: imageOverlay == null ? cardChild : overlayImage,
172
)
173
- : overlayImage ?? cardChild,
+ : imageOverlay == null ? cardChild : overlayImage,
174
);
175
}
176
0 commit comments