mirror of
https://github.com/KevinMidboe/immich.git
synced 2026-01-03 07:45:53 +00:00
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();
|
|
}
|
|
}
|