|
@@ -187,25 +187,16 @@ class _FotoboekGridComponentCopyWidgetState
|
|
|
itemCount: fotoboekItem.length,
|
|
itemCount: fotoboekItem.length,
|
|
|
itemBuilder: (context, fotoboekItemIndex) {
|
|
itemBuilder: (context, fotoboekItemIndex) {
|
|
|
final fotoboekItemItem = fotoboekItem[fotoboekItemIndex];
|
|
final fotoboekItemItem = fotoboekItem[fotoboekItemIndex];
|
|
|
- return InkWell(
|
|
|
|
|
- splashColor: Colors.transparent,
|
|
|
|
|
- focusColor: Colors.transparent,
|
|
|
|
|
- hoverColor: Colors.transparent,
|
|
|
|
|
- highlightColor: Colors.transparent,
|
|
|
|
|
- onTap: () async {
|
|
|
|
|
- safeSetState(() {});
|
|
|
|
|
- },
|
|
|
|
|
- child: ClipRRect(
|
|
|
|
|
- borderRadius: BorderRadius.circular(8.0),
|
|
|
|
|
- child: Image.network(
|
|
|
|
|
- getJsonField(
|
|
|
|
|
- fotoboekItemItem,
|
|
|
|
|
- r'''$.thumb''',
|
|
|
|
|
- ).toString(),
|
|
|
|
|
- width: double.infinity,
|
|
|
|
|
- height: double.infinity,
|
|
|
|
|
- fit: BoxFit.cover,
|
|
|
|
|
- ),
|
|
|
|
|
|
|
+ return ClipRRect(
|
|
|
|
|
+ borderRadius: BorderRadius.circular(8.0),
|
|
|
|
|
+ child: Image.network(
|
|
|
|
|
+ getJsonField(
|
|
|
|
|
+ fotoboekItemItem,
|
|
|
|
|
+ r'''$.thumb''',
|
|
|
|
|
+ ).toString(),
|
|
|
|
|
+ width: double.infinity,
|
|
|
|
|
+ height: double.infinity,
|
|
|
|
|
+ fit: BoxFit.cover,
|
|
|
),
|
|
),
|
|
|
);
|
|
);
|
|
|
},
|
|
},
|