mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
5806a3ce25
* refactor(mobile): widgets * update
28 lines
727 B
Dart
28 lines
727 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/entities/asset.entity.dart';
|
|
import 'package:immich_mobile/widgets/common/immich_thumbnail.dart';
|
|
|
|
class SharedAlbumThumbnailImage extends HookConsumerWidget {
|
|
final Asset asset;
|
|
|
|
const SharedAlbumThumbnailImage({super.key, required this.asset});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
return GestureDetector(
|
|
onTap: () {
|
|
// debugPrint("View ${asset.id}");
|
|
},
|
|
child: Stack(
|
|
children: [
|
|
ImmichThumbnail(
|
|
asset: asset,
|
|
width: 500,
|
|
height: 500,
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|