Custom pin keyboard
The best flutter package that gives you a custom keyboard for one time password widgets, transaction pin widgets and simple login widgets.
All shortcomings of other packages were taken into account!!
Show some ❤️ and star the repo to support the project
Resources:
Getting Started
Simple pin keyboard with indicator
CustomPinKeyboard(
onCompleted: (pin) async {
// some action
},
indicatorBackground: Colors.black12,
buttonBackground: Colors.transparent,
textStyle: const TextStyle(
fontWeight: FontWeight.w600,
height: 32 / 24,
fontSize: 24,
color: Colors.blue,
),
additionalButton: const Icon(Icons.ac_unit, color: Colors.blue),
onAdditionalButtonPressed: () {
// some additional action
},
)
Feel free to open pull requests.
Acknowledgments
This package was originally created by Artemii Oliinyk.