mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
c25556bb08
* feat(mobile): unify asset grid multiselect actions * add favorite & archive page * show edit date&place on main photos screen * Reposition exit button * Sort favorite with the same order as other view --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
7 lines
189 B
Dart
7 lines
189 B
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/shared/models/album.dart';
|
|
|
|
final currentAlbumProvider = StateProvider<Album?>((ref) {
|
|
return null;
|
|
});
|