further improved accessibility across the application and add tooltips to action buttons

This commit is contained in:
2026-07-15 19:29:40 +02:00
parent 478f0ff20b
commit e8c6ac1c65
13 changed files with 366 additions and 268 deletions
+5 -2
View File
@@ -186,6 +186,7 @@ class _FileViewerState extends State<FileViewer> {
...actions,
if (showActionsMenu)
PopupMenuButton<FileViewingActions>(
tooltip: 'Dateiaktionen',
onSelected: _handleAction,
itemBuilder: (context) => _availableActions()
.map(
@@ -282,8 +283,10 @@ class _FileViewerState extends State<FileViewer> {
),
);
Widget _buildPdfView() =>
Scaffold(appBar: _appbar(), body: DeferredPdfViewer(path: widget.path));
Widget _buildPdfView() => Scaffold(
appBar: _appbar(),
body: DeferredPdfViewer(path: widget.path),
);
Widget _buildVideoView() => Scaffold(
appBar: _appbar(),