implemented comprehensive accessibility (A11y) support across the app
This commit is contained in:
@@ -33,6 +33,7 @@ class FilesSearchDelegate extends SearchDelegate<void> {
|
||||
@override
|
||||
Widget? buildLeading(BuildContext context) => IconButton(
|
||||
icon: const Icon(Icons.arrow_back),
|
||||
tooltip: 'Zurück',
|
||||
onPressed: () => close(context, null),
|
||||
);
|
||||
|
||||
|
||||
@@ -239,6 +239,7 @@ class _ShareOptionsBodyState extends State<_ShareOptionsBody> {
|
||||
),
|
||||
trailing: IconButton(
|
||||
onPressed: () => copyToClipboard(context, _share.url!),
|
||||
tooltip: 'Link kopieren',
|
||||
icon: const Icon(Icons.copy_outlined),
|
||||
),
|
||||
),
|
||||
|
||||
@@ -127,6 +127,7 @@ class _ShareePickerPageState extends State<ShareePickerPage> {
|
||||
? null
|
||||
: IconButton(
|
||||
icon: const Icon(Icons.clear),
|
||||
tooltip: 'Leeren',
|
||||
onPressed: () {
|
||||
_searchController.clear();
|
||||
_query = '';
|
||||
|
||||
Reference in New Issue
Block a user