A Flutter PinPad Widget.
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:pinpad/pinpad.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
String _pin = "";
Future _getPin() async {
// to style the pinpad:
// import 'package:pinpad/pinpad.dart'
// create an instance of PinPad passing in the desired styles and decorations
// replace line 49 with the line below
// var pin = await PinPadHelper.requestPin(context: context, pinpad:pinpad);
var pin = await PinPadHelper.requestPin(context: context);
setState(() {
_pin = pin;
});
}
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Text(
'PIN is :',
),
new Text(
'$_pin',
style: Theme.of(context).textTheme.display1,
),
],
),
),
floatingActionButton: new FloatingActionButton(
onPressed: () => _getPin(),
tooltip: 'Get Pin',
child: new Icon(Icons.input),
),
);
}
}