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