v1.0.8
input_with_keyboard_control
このパッケージは、フォーカスを失うことなくキーボードの表示/非表示を制御できる入力フィールドを提供します。バーコードスキャナーとの連携に最適です!
35いいね 33530日間ダウンロード150Pub ポイント
AndroidiOSWebmacOSWindowsLinux
このパッケージは、キーボードの表示/非表示を制御できる入力フィールドを提供しています
{"sdk":"flutter"}{"sdk":"flutter"}以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
The package provides an input that you can control whether the keyboard will show or not without losing focus, ideal for use with a barcode scanner!
import 'package:input_with_keyboard_control/input_with_keyboard_control.dart';
InputWithKeyboardControl(
focusNode: InputWithKeyboardControlFocusNode(),
onSubmitted: (value) {
print(value);
},
autofocus: true,
controller: TextEditingController(),
width: 300,
startShowKeyboard: false,
buttonColorEnabled: Colors.blue,
buttonColorDisabled: Colors.black,
underlineColor: Colors.black,
showUnderline: true,
showButton: true,
)
Thank you for using this package :heart: