0 purchases
soft keyboard
Soft Keyboard #
A customizable soft keyboard to use instead of the built in non-customizable keyboard of any phone.
(This package is still in development)
Features #
Customize the background color
Choose colors of the keys
Provide IconData for action keys
Style the keyboard text as per your preference
Adjust the keyboard height
Choose between Alphanumeric or Numeric keyboard
Getting started #
In your flutter project add the dependency:
dependencies:
soft_keyboard: any
copied to clipboard
Import the package:
import 'package:soft_keyboard/soft_keyboard.dart';
copied to clipboard
Usage #
AlphanumericKeyboard(
controller: _controller,
onEnterTapped: () {
log("hide keyboard");
},
height: 260,
backgroundColor: Colors.black,
actionKeyColor: Colors.blueGrey,
alphanumericKeyColor: Colors.indigo,
backspaceKeyIcon: Icons.backspace,
enterKeyIcon: Icons.keyboard_return,
),
copied to clipboard
NumericKeyboard(
controller: _controller,
onEnterTapped: () {
log("hide keyboard");
},
backgroundColor: Colors.black,
actionKeyColor: Colors.blueGrey,
backspaceKeyIcon: Icons.backspace,
enterKeyIcon: Icons.keyboard_return,
),
copied to clipboard
Check the example project for a full example
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.