keyboard_height_plugin
키보드가 표시되기 전에 키보드 높이를 방출하는 플러터 플러그인 (ios/android)
키보드가 표시되기 전에 키보드 높이를 방출하는 플러터 플러그인 (ios/android)
{"sdk":"flutter"}^2.0.2{"sdk":"flutter"}^2.0.0아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
keyboard_height_plugin is a Flutter plugin for iOS and Android that provides the keyboard size before the keyboard animation occurs for showing or hiding it. This helps eliminate lag when positioning widgets around the keyboard, such as placing a TextField above the keyboard.
For projects that cannot upgrade to the modern build tools, use version 0.1.5:
To install keyboard_height_plugin, add it to your pubspec.yaml file under the dependencies section:
dependencies:
keyboard_height_plugin: ^0.3.0
For legacy projects:
dependencies:
keyboard_height_plugin: 0.1.5
To use the keyboard_height_plugin, first import it in your Dart file:
import 'package:keyboard_height_plugin/keyboard_height_plugin.dart';
Next, create a stateful widget and declare a variable to store the keyboard height and create an instance of the KeyboardHeightPlugin:
class _HomePageState extends State<HomePage>; {
double _keyboardHeight = 0;
final KeyboardHeightPlugin _keyboardHeightPlugin = KeyboardHeightPlugin();
// ... rest of code ...
}
Then, initialize the KeyboardHeightPlugin in your initState method and listen for changes in the keyboard height:
@override
void initState() {
super.initState();
_keyboardHeightPlugin.onKeyboardHeightChanged((double height) {
setState(() {
_keyboardHeight = height;
});
});
}
Use the _keyboardHeight variable to position your widgets around the keyboard.
For a complete example on how to use the keyboard_height_plugin, please refer to the example directory in the repository.
If you encounter any issues or have suggestions for improvements, feel free to open an issue or submit a pull request on the project's GitHub repository.
This plugin is licensed under the BSD 3-Clause License.