mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 11:39:30 +01:00
e5c03ffb53
Signed-off-by: TheOneWithTheBraid <the-one@with-the-braid.cf>
6 lines
140 B
Dart
6 lines
140 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
void dismissKeyboard(BuildContext context) {
|
|
FocusScope.of(context).requestFocus(FocusNode());
|
|
}
|