implemented comprehensive accessibility (A11y) support across the app
This commit is contained in:
@@ -27,6 +27,7 @@ class CustomEventsView extends StatelessWidget {
|
||||
actions: [
|
||||
IconButton(
|
||||
icon: const Icon(Icons.add),
|
||||
tooltip: 'Termin erstellen',
|
||||
onPressed: () => _openCreateDialog(context),
|
||||
),
|
||||
],
|
||||
@@ -67,6 +68,7 @@ class CustomEventsView extends StatelessWidget {
|
||||
children: [
|
||||
IconButton(
|
||||
icon: const Icon(Icons.edit_outlined),
|
||||
tooltip: 'Bearbeiten',
|
||||
onPressed: () => showDialog(
|
||||
context: context,
|
||||
builder: (_) =>
|
||||
@@ -75,6 +77,7 @@ class CustomEventsView extends StatelessWidget {
|
||||
),
|
||||
IconButton(
|
||||
icon: const Icon(Icons.delete_outline),
|
||||
tooltip: 'Löschen',
|
||||
onPressed: () =>
|
||||
showDeleteCustomEventDialog(context, e),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user