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: