pin_code_view 0.3.0+2 pin_code_view: ^0.3.0+2 copied to clipboard
A flutter plugin to show beautiful pin code view. A on screen keyboard is placed at the bottom of the screen and a code view with blocks are added on the top of the screen.
pin_code_view #
A beautiful looking pin_code_view for flutter apps, customizable and fluid. Pull requests are always welcomed.
. .
Features #
- Code length customization
- On Screen keyboard
- Keyboard type customization
Installation #
In the dependencies:
section of your pubspec.yaml
, add the following line:
pin_code_view: 0.3.0+1
Usage #
import 'package:pin_code_view/pin_code_view.dart';
class MyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return PinCode(
title: "Enter PIN Code",
subtitle: "Please enter the code you received on your Phone",
onChange: (String code) {
print(code);
},
obscurePin: true,
);
}
}