mirror of
https://github.com/qinglong-app/qinglong_app.git
synced 2025-10-09 16:48:19 +08:00
8 lines
167 B
Dart
8 lines
167 B
Dart
import 'package:flutter/cupertino.dart';
|
|
|
|
class Utils {
|
|
static void hideKeyBoard(BuildContext context) {
|
|
FocusScope.of(context).requestFocus(FocusNode());
|
|
}
|
|
}
|