v2.0.4
keyboard_service
键盘可见性/(自动)隐藏包,无需原生插件
43喜欢 1300近 30 天下载160Pub 分数
AndroidiOSWebmacOSWindowsLinux
键盘可见性/(自动)隐藏包,无需原生插件
{"sdk":"flutter"}{"sdk":"flutter"}^6.0.0以下为英文项目原文快照,最新内容请访问 GitHub。
Keyboard visibility / (auto-) dismiss package without the need of native plugin
Watch on GitHub Star on GitHub pub package
Use it for example when you want to automatically dimiss the on-screen keyboard when tapped outside of textfield. And if you want know if the on-screen keyboard is visible and/or want to explicitly dismiss it.
There are 2 classes
Also see example project
Wrap your top scaffold:
return KeyboardAutoDismiss(
scaffold: Scaffold(
appBar: AppBar(
title: Text('Keyboard Service Example'),
),
...
),
);
Use the service class if needed:
// Use method below to dismiss the keyboard
KeyboardService.dismiss();
// Use the optional BuildContext parameter to remove focus of a TextField
KeyboardService.dismiss(unfocus: context);
// Check if the keyboard is visible
KeyboardService.isVisible(context);
This project is licensed under the MIT License - see the license file for details.