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
- Host: GitHub
- URL: https://github.com/nimalesh/virtual_keyboard
- Owner: Nimalesh
- License: bsd-3-clause
- Created: 2024-03-20T22:11:53.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-21T09:58:25.000Z (almost 2 years ago)
- Last Synced: 2025-10-23T00:55:16.486Z (4 months ago)
- Topics: flutter, flutterapp, flutterpackage, package
- Language: Dart
- Homepage: https://pub.dev/packages/number_key
- Size: 97.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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',
),
```