Unfocus search on tap away

This commit is contained in:
2025-04-09 09:01:40 +02:00
parent f841562fa4
commit e32f61a67e
12 changed files with 79 additions and 72 deletions

View File

@@ -48,6 +48,7 @@ class _PatManagerState extends State<PatManager> {
iconSize: 35,
onTap: () {
Navigator.of(context).pop();
FocusScope.of(context).unfocus();
},
);
}

View File

@@ -42,6 +42,7 @@ class _PatientProfileState extends State<PatientProfile> {
iconSize: 35,
onTap: () {
Navigator.of(context).pop();
FocusScope.of(context).unfocus();
},
);
}