pinpad 0.1.0 copy "pinpad: ^0.1.0" to clipboard
pinpad: ^0.1.0 copied to clipboard

outdated

A flutter PinPad Widget with default look and feel but be customized with decorations and styles. Randomised keypad arrangements, optional input masking. 100% dart code.

PinPad #

A Flutter PinPad Widget.

Alt Text

Example Usage #

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),
      ),
    );
  }
}

5
likes
0
pub points
41%
popularity

Publisher

unverified uploader

A flutter PinPad Widget with default look and feel but be customized with decorations and styles. Randomised keypad arrangements, optional input masking. 100% dart code.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on pinpad