mirror of
https://github.com/immich-app/immich.git
synced 2025-12-17 17:23:20 +03: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();
|
||
|
|
}
|
||
|
|
}
|