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

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
},
);
});