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>
19 lines
420 B
Dart
19 lines
420 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ImmichLogo extends StatelessWidget {
|
|
final double size;
|
|
final dynamic heroTag;
|
|
|
|
const ImmichLogo({super.key, this.size = 100, this.heroTag});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Image(
|
|
image: const AssetImage('assets/immich-logo.png'),
|
|
width: size,
|
|
filterQuality: FilterQuality.high,
|
|
isAntiAlias: true,
|
|
);
|
|
}
|
|
}
|