added unfocus at textfields for custon events and feedback
This commit is contained in:
@ -67,6 +67,9 @@ class _AddCustomTimetableEventDialogState extends State<CustomTimetableEventEdit
|
||||
labelText: 'Terminname',
|
||||
border: OutlineInputBorder()
|
||||
),
|
||||
onTapOutside: (PointerDownEvent event) {
|
||||
FocusScope.of(context).requestFocus(FocusNode());
|
||||
},
|
||||
),
|
||||
),
|
||||
ListTile(
|
||||
@ -78,6 +81,9 @@ class _AddCustomTimetableEventDialogState extends State<CustomTimetableEventEdit
|
||||
labelText: 'Beschreibung',
|
||||
border: OutlineInputBorder()
|
||||
),
|
||||
onTapOutside: (PointerDownEvent event) {
|
||||
FocusScope.of(context).requestFocus(FocusNode());
|
||||
},
|
||||
),
|
||||
),
|
||||
const Divider(),
|
||||
|
Reference in New Issue
Block a user