2022-02-03 18:06:44 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2022-02-06 08:07:56 +02:00
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
2022-02-03 18:06:44 +02:00
|
|
|
import 'package:immich_mobile/modules/home/ui/thumbnail_image.dart';
|
|
|
|
import 'package:immich_mobile/shared/models/immich_asset.model.dart';
|
|
|
|
|
2022-02-06 08:07:56 +02:00
|
|
|
class ImageGrid extends ConsumerWidget {
|
2022-02-03 18:06:44 +02:00
|
|
|
final List<ImmichAsset> assetGroup;
|
|
|
|
|
|
|
|
const ImageGrid({Key? key, required this.assetGroup}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
2022-02-06 08:07:56 +02:00
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
2022-02-03 18:06:44 +02:00
|
|
|
return SliverGrid(
|
2022-04-24 04:08:45 +02:00
|
|
|
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
|
2022-05-01 00:03:45 +02:00
|
|
|
crossAxisCount: 4,
|
2022-04-24 04:08:45 +02:00
|
|
|
crossAxisSpacing: 5.0,
|
|
|
|
mainAxisSpacing: 5,
|
|
|
|
),
|
2022-02-03 18:06:44 +02:00
|
|
|
delegate: SliverChildBuilderDelegate(
|
|
|
|
(BuildContext context, int index) {
|
2022-02-06 08:07:56 +02:00
|
|
|
var assetType = assetGroup[index].type;
|
|
|
|
|
2022-02-03 18:06:44 +02:00
|
|
|
return GestureDetector(
|
2022-04-24 04:08:45 +02:00
|
|
|
onTap: () {},
|
|
|
|
child: Stack(
|
|
|
|
children: [
|
|
|
|
ThumbnailImage(asset: assetGroup[index]),
|
2022-07-01 03:08:49 +02:00
|
|
|
if (assetType != 'IMAGE')
|
|
|
|
Positioned(
|
|
|
|
top: 5,
|
|
|
|
right: 5,
|
|
|
|
child: Row(
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
assetGroup[index].duration.toString().substring(0, 7),
|
|
|
|
style: const TextStyle(
|
|
|
|
color: Colors.white,
|
|
|
|
fontSize: 10,
|
|
|
|
),
|
2022-04-24 04:08:45 +02:00
|
|
|
),
|
2022-07-01 03:08:49 +02:00
|
|
|
const Icon(
|
|
|
|
Icons.play_circle_outline_rounded,
|
|
|
|
color: Colors.white,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2022-04-24 04:08:45 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
2022-02-03 18:06:44 +02:00
|
|
|
},
|
|
|
|
childCount: assetGroup.length,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|