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>
29 lines
866 B
Dart
29 lines
866 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
|
import 'package:immich_mobile/extensions/theme_extensions.dart';
|
|
|
|
class ThumbnailPlaceholder extends StatelessWidget {
|
|
final EdgeInsets margin;
|
|
final double width;
|
|
final double height;
|
|
|
|
const ThumbnailPlaceholder({super.key, this.margin = EdgeInsets.zero, this.width = 250, this.height = 250});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var gradientColors = [
|
|
context.colorScheme.surfaceContainer,
|
|
context.colorScheme.surfaceContainer.darken(amount: .1),
|
|
];
|
|
|
|
return Container(
|
|
width: width,
|
|
height: height,
|
|
margin: margin,
|
|
decoration: BoxDecoration(
|
|
gradient: LinearGradient(colors: gradientColors, begin: Alignment.topCenter, end: Alignment.bottomCenter),
|
|
),
|
|
);
|
|
}
|
|
}
|