number_key 0.0.1
number_key: ^0.0.1 copied to clipboard
A Super cool virtual keyboard to make sure you save your time with all on your control.
Keyboard Widget for Flutter The Keyboard Widget is a customizable keyboard component for Flutter applications. It provides an intuitive interface for text input, making it easy for users to interact with your app on devices without physical keyboards. This widget is highly flexible, allowing you to customize its appearance and behavior to match your application's design and requirements.
Features Customizable Appearance: Customize key colors, text colors, background colors, and more to seamlessly integrate the keyboard with your app's UI. Dynamic Functionality: Supports standard alphanumeric input, backspace functionality for deleting characters, and a customizable "Clear" button for clearing the text field. Flexible Integration: Easily integrate the keyboard widget into your Flutter application, providing users with a convenient input method. Installation To use the Keyboard Widget in your Flutter project, simply add it as a dependency in your pubspec.yaml file:
yaml Copy code dependencies: keyboard: ^1.0.0 Then, run flutter pub get to install the package.
Usage Import the package into your Dart code: dart Copy code import 'package:keyboard/keyboard_screen.dart'; Instantiate the KeyboardScreen widget and customize its appearance and functionality as needed: dart Copy code KeyboardScreen( 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, clearTextField: () { // Custom function to be executed when the text field is cleared print('Text field cleared'); }, ), Integrate the KeyboardScreen widget into your application's UI, providing users with an keyboard for text input. For more detailed information, please refer to the API documentation of the package.
Example Check out the example directory for a complete example of how to use the Keyboard Widget in a Flutter app.
Dependencies This package has no dependencies.
Contributing Contributions are welcome! If you encounter any bugs, issues, or have feature requests, please feel free to open an issue or submit a pull request on the GitHub repository.