general search, talk enhancements, overhauled fileviewer #98

Merged
MineTec merged 11 commits from develop-search into develop 2026-05-09 22:55:11 +00:00
Showing only changes of commit c50a850ac9 - Show all commits
+9 -9
View File
@@ -102,15 +102,6 @@ class _FilesViewState extends State<_FilesView> {
appBar: AppBar(
title: Text(widget.path.isNotEmpty ? widget.path.last : 'Dateien'),
actions: [
IconButton(
tooltip: 'Suchen',
icon: const Icon(Icons.search),
onPressed: () async {
final delegate = FilesSearchDelegate(pathScope: widget.path);
await showSearch<void>(context: context, delegate: delegate);
delegate.disposeController();
},
),
FilesSortActions(
currentSort: currentSort,
ascending: currentSortDirection,
@@ -127,6 +118,15 @@ class _FilesViewState extends State<_FilesView> {
});
},
),
IconButton(
tooltip: 'Suchen',
icon: const Icon(Icons.search),
onPressed: () async {
final delegate = FilesSearchDelegate(pathScope: widget.path);
await showSearch<void>(context: context, delegate: delegate);
delegate.disposeController();
},
),
],
),
floatingActionButton: FloatingActionButton(