2022-02-03 09:06:44 -07:00
|
|
|
import 'package:flutter/material.dart';
|
2022-02-05 23:07:56 -07:00
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
2022-02-03 09:06:44 -07:00
|
|
|
import 'package:immich_mobile/modules/home/ui/thumbnail_image.dart';
|
2022-07-13 05:23:48 -07:00
|
|
|
import 'package:openapi/api.dart';
|
2022-02-03 09:06:44 -07:00
|
|
|
|
2022-02-05 23:07:56 -07:00
|
|
|
class ImageGrid extends ConsumerWidget {
|
2022-07-13 05:23:48 -07:00
|
|
|
final List<AssetResponseDto> assetGroup;
|
2022-02-03 09:06:44 -07:00
|
|
|
|
|
|
|
const ImageGrid({Key? key, required this.assetGroup}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
2022-02-05 23:07:56 -07:00
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
2022-02-03 09:06:44 -07:00
|
|
|
return SliverGrid(
|
2022-04-23 19:08:45 -07:00
|
|
|
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
|
2022-04-30 15:03:45 -07:00
|
|
|
crossAxisCount: 4,
|
2022-04-23 19:08:45 -07:00
|
|
|
crossAxisSpacing: 5.0,
|
|
|
|
mainAxisSpacing: 5,
|
|
|
|
),
|
2022-02-03 09:06:44 -07:00
|
|
|
delegate: SliverChildBuilderDelegate(
|
|
|
|
(BuildContext context, int index) {
|
2022-02-05 23:07:56 -07:00
|
|
|
var assetType = assetGroup[index].type;
|
|
|
|
|
2022-02-03 09:06:44 -07:00
|
|
|
return GestureDetector(
|
2022-04-23 19:08:45 -07:00
|
|
|
onTap: () {},
|
|
|
|
child: Stack(
|
|
|
|
children: [
|
|
|
|
ThumbnailImage(asset: assetGroup[index]),
|
2022-07-13 05:23:48 -07:00
|
|
|
if (assetType != AssetTypeEnum.IMAGE)
|
2022-06-30 18:08:49 -07:00
|
|
|
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-23 19:08:45 -07:00
|
|
|
),
|
2022-06-30 18:08:49 -07:00
|
|
|
const Icon(
|
|
|
|
Icons.play_circle_outline_rounded,
|
|
|
|
color: Colors.white,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2022-04-23 19:08:45 -07:00
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
2022-02-03 09:06:44 -07:00
|
|
|
},
|
|
|
|
childCount: assetGroup.length,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|