mirror of
https://github.com/immich-app/immich.git
synced 2025-08-11 09:16:31 -04:00
* chore: bump dart sdk to 3.8 * chore: make build * make pigeon * chore: format files --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
31 lines
789 B
Dart
31 lines
789 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:immich_mobile/widgets/common/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: duration, image: image, fit: fit, placeholder: MemoryImage(kTransparentImage)),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|