immich/mobile/lib/providers/asset_viewer/scroll_to_date_notifier.provider.dart

15 lines
381 B
Dart
Raw Normal View History

2026-02-02 15:06:40 +01:00
import 'package:flutter/material.dart';
final scrollToDateNotifierProvider = ScrollToDateNotifier(null);
class ScrollToDateNotifier extends ValueNotifier<DateTime?> {
ScrollToDateNotifier(super.value);
void scrollToDate(DateTime date) {
value = date;
// Manually notify listeners to trigger the scroll, even if the value hasn't changed
notifyListeners();
}
}