mirror of
https://github.com/immich-app/immich.git
synced 2026-05-30 02:42:34 -04:00
6e9749d6c4
* adds scroll to top when tapping photos while already on photo page * unused import
10 lines
191 B
Dart
10 lines
191 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
final scrollToTopNotifierProvider = ScrollNotifier();
|
|
|
|
class ScrollNotifier with ChangeNotifier {
|
|
void scrollToTop() {
|
|
notifyListeners();
|
|
}
|
|
}
|