mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 10:56:47 +01:00
f59b813ffe
* chore(mobile): search page retouched * add placeholder photos * remove unused page * focus the search input when tapping on the search controller button * detail fixed * remove print statements * disable scrolling of empty content
6 lines
169 B
Dart
6 lines
169 B
Dart
import 'package:flutter/widgets.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
|
|
final searchInputFocusProvider = Provider((ref) {
|
|
return FocusNode();
|
|
});
|