flutter_k_keyboard 0.1.2 copy "flutter_k_keyboard: ^0.1.2" to clipboard
flutter_k_keyboard: ^0.1.2 copied to clipboard

You can use keyboard in windows ans linux!!

it is a english, korean keyboard in Windows and linux

Usage #

for keyboard use CustomKeyBoard.

const like = 'sample';
TextEditingController controller = TextEditingController;
CustomKeyBoard(
controller: controller, // required TextEditingController
maxLength: 12,
backgroundColor = Colors.grey, 
buttonColor = Colors.white,
iconColor = Colors.black,
backgroundOpacity = 0.3,
textSize = 25,
onSubmit: (){          // required
Navigator.pop(context);
},
);

In CustomKeyBoard you can change the length, backgroundColor, buttonColor, iconColor, backgroundOpacity, textSize

for number pad use KNumPad.

const like = 'sample';
TextEditingController controller = TextEditingController;
KNumPad(
controller: controller, // required TextEditingController
maxLength: 7,
buttonSize: 130,
isNotPhoneNumber: true,
buttonSize = 70,
buttonColor = Colors.indigo,
iconColor = Colors.amber,
onSubmit: (){           // required
Navigator.pop(context);
},
);

In KNumPad you can change the buttonSize, buttonColor, iconColor, maxLength also you can put if its phone number or if it is just a number by bool isNotPhoneNumber.

now you can buy ma a coffee

Buy Me A Coffee

2
likes
130
points
29
downloads

Publisher

unverified uploader

Weekly Downloads

You can use keyboard in windows ans linux!!

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_k_keyboard