An open API service indexing awesome lists of open source software.

https://github.com/nimalesh/virtual_keyboard

This is the 1st flutter package i released in pub.dev
https://github.com/nimalesh/virtual_keyboard

flutter flutterapp flutterpackage package

Last synced: 4 months ago
JSON representation

This is the 1st flutter package i released in pub.dev

Awesome Lists containing this project

README

          

# OnScreenKeys

## Your Virtual Number pad

### Customizable Appearance
### Flexible Integration
### Dynamic Functionality

```dart

OnScreenKeys(
primaryColor: Colors.black,
accentColor: Colors.blue,
textColor: Colors.white,
keyColor: Colors.black,
textFieldBg: Colors.white,
hintTextColor: Colors.black54,
hintIconColor: Colors.black54,
textFieldBorderColor: Colors.black38,
hintText: 'Press the keys',
keyAxisCount: 4,
customButton: () {
// Default clear function
print('On Screen key');
},
customButtonText: 'Clear',
),

```