mirror of
https://github.com/immich-app/immich.git
synced 2026-03-10 11:53:43 -04:00
* chore: always_use_package_imports * fix: lint --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
8 lines
242 B
Dart
8 lines
242 B
Dart
import 'package:flutter/widgets.dart';
|
|
import 'package:immich_mobile/utils/cache/custom_image_cache.dart';
|
|
|
|
final class ImmichWidgetsBinding extends WidgetsFlutterBinding {
|
|
@override
|
|
ImageCache createImageCache() => CustomImageCache();
|
|
}
|