develop-unfocusTextField #56

Merged
MineTec merged 4 commits from develop-unfocusTextField into develop 2024-04-02 14:55:36 +00:00
Showing only changes of commit 42574583ed - Show all commits

View File

@ -108,7 +108,11 @@ class _ChatViewState extends State<ChatView> {
),
),
),
body: Container(
body: GestureDetector(
onTap: () {
FocusScope.of(context).requestFocus(FocusNode());
Pupsi marked this conversation as resolved Outdated

tabs bitte reverten

tabs bitte reverten
},
child: Container(
decoration: BoxDecoration(
image: DecorationImage(
image: const AssetImage('assets/background/chat.png'),
@ -137,6 +141,7 @@ class _ChatViewState extends State<ChatView> {
],
),
),
),
);
},
);