List tags

This commit is contained in:
Juan Gilsanz Polo
2024-02-24 13:17:06 +01:00
parent 381c20e67e
commit 5378d020e4
11 changed files with 244 additions and 61 deletions

View File

@@ -32,7 +32,7 @@ class SearchBookmarksScreen extends ConsumerWidget {
controller: ref.watch(searchBookmarksProvider).searchController,
onChanged: ref.read(searchBookmarksProvider.notifier).setSearchTerm,
decoration: InputDecoration(
hintText: t.search.search,
hintText: t.bookmarks.search.searchBookmarks,
prefixIcon: const Icon(Icons.search_rounded),
border: InputBorder.none,
filled: true,
@@ -44,7 +44,7 @@ class SearchBookmarksScreen extends ConsumerWidget {
Icons.close_rounded,
size: 20,
),
tooltip: t.search.clearSearch,
tooltip: t.bookmarks.search.clearSearch,
)
: null,
),