mirror of
https://github.com/immich-app/immich.git
synced 2025-01-08 21:06:48 +01:00
b05d4fa7d3
format
35 lines
870 B
Dart
35 lines
870 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:immich_mobile/shared/ui/transparent_image.dart';
|
|
|
|
class FadeInPlaceholderImage extends StatelessWidget {
|
|
final Widget placeholder;
|
|
final ImageProvider image;
|
|
final Duration duration;
|
|
final BoxFit fit;
|
|
|
|
const FadeInPlaceholderImage({
|
|
super.key,
|
|
required this.placeholder,
|
|
required this.image,
|
|
this.duration = const Duration(milliseconds: 100),
|
|
this.fit = BoxFit.cover,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SizedBox.expand(
|
|
child: Stack(
|
|
fit: StackFit.expand,
|
|
children: [
|
|
placeholder,
|
|
FadeInImage(
|
|
fadeInDuration: const Duration(milliseconds: 100),
|
|
image: image,
|
|
fit: fit,
|
|
placeholder: MemoryImage(kTransparentImage),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|