Merge pull request #189 from yaso-meth/BUG--profile-click-opens-keyboard

fixit
This commit is contained in:
yaso-meth 2025-05-30 15:39:36 +02:00 committed by GitHub
commit 78352513cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -137,6 +137,9 @@ class _MihHomeState extends State<MihHome> {
iconSize: 45,
onTap: () {
Scaffold.of(context).openDrawer();
FocusScope.of(context)
.requestFocus(FocusNode()); // Fully unfocus all fields
// FocusScope.of(context).unfocus(); // Unfocus any text fields
},
);
});