diff options
author | Marvin Borner | 2018-07-21 17:59:36 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-21 17:59:36 +0200 |
commit | f03f214a47a78a52d73e28a76eec78d3f10d07e5 (patch) | |
tree | eaaf280fa5b89d32018236e06e1fc22220b8fa80 /lib/pincode | |
parent | acc5d5e9e960db9525a4368b393cb97fab8658e7 (diff) |
Rewritten login activity
Diffstat (limited to 'lib/pincode')
-rw-r--r-- | lib/pincode/pincode_create.dart | 239 | ||||
-rw-r--r-- | lib/pincode/pincode_verify.dart | 163 |
2 files changed, 402 insertions, 0 deletions
diff --git a/lib/pincode/pincode_create.dart b/lib/pincode/pincode_create.dart new file mode 100644 index 0000000..0798ff4 --- /dev/null +++ b/lib/pincode/pincode_create.dart @@ -0,0 +1,239 @@ +import 'package:flutter/material.dart'; +import 'package:flutter/rendering.dart'; + +class PinCodeCreate extends StatelessWidget { + var pinCode = ""; + + @override + Widget build(BuildContext context) { + return new Scaffold( + appBar: new AppBar( + title: new Text("Create Pin"), + ), + body: new ListView( + children: <Widget>[ + new Padding( + padding: new EdgeInsets.all(20.0), + child: new Text("Enter a New Pin", + textAlign: TextAlign.center, + style: new TextStyle( + color: Colors.black.withOpacity(1.0), + fontWeight: FontWeight.bold, + fontSize: 20.0, + )), + ), + new Row( + children: <Widget>[ + new Expanded( + child: new Text(''), + ), + new Expanded( + child: new Text(''), + ), + new Expanded( + child: new Icon(Icons.check_circle_outline), + ), + new Expanded( + child: new Icon(Icons.radio_button_unchecked), + ), + new Expanded( + child: new Icon(Icons.radio_button_unchecked), + ), + new Expanded( + child: new Icon(Icons.radio_button_unchecked), + ), + new Expanded( + child: new Text(''), + ), + new Expanded( + child: new Text(''), + ), + ], + ), + new Row( + children: <Widget>[ + new Expanded( + child: new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "7", + child: new Text('7', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + ), + new Expanded( + child: new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "8", + child: new Text('8', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + ), + new Expanded( + child: new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "9", + child: new Text('9', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + ), + ], + ), + new Row( + children: <Widget>[ + new Expanded( + child: new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "4", + child: new Text('4', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + ), + new Expanded( + child: new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "5", + child: new Text('5', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + ), + new Expanded( + child: new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "6", + child: new Text('6', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + ), + ], + ), + new Row( + children: <Widget>[ + new Expanded( + child: new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "1", + child: new Text('1', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + ), + new Expanded( + child: new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "2", + child: new Text('2', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + ), + new Expanded( + child: new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "3", + child: new Text('3', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + ), + ], + ), + new Row( + children: <Widget>[ + new Expanded( + child: new Text(''), + ), + new Expanded( + child: new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "0", + child: new Text('0', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + ), + new Expanded( + child: new Text(''), + ), + ], + ), + ], + ), + ); + } +} diff --git a/lib/pincode/pincode_verify.dart b/lib/pincode/pincode_verify.dart new file mode 100644 index 0000000..391e7d2 --- /dev/null +++ b/lib/pincode/pincode_verify.dart @@ -0,0 +1,163 @@ +import 'package:flutter/material.dart'; +import 'package:flutter/rendering.dart'; + +class PinCodeVerify extends StatelessWidget { + @override + Widget build(BuildContext context) { + return new Scaffold( + appBar: new AppBar( + title: new Text("Verify Pin"), + ), + body: new GridView.count( + primary: false, + padding: const EdgeInsets.all(20.0), + crossAxisSpacing: 10.0, + crossAxisCount: 3, + children: <Widget>[ + new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "1", + child: new Text('1', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "2", + child: new Text('2', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "3", + child: new Text('3', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "4", + child: new Text('4', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "5", + child: new Text('5', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "6", + child: new Text('6', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "7", + child: new Text('7', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "8", + child: new Text('8', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "9", + child: new Text('9', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + new Text(''), + new Padding( + padding: new EdgeInsets.all(20.0), + child: new FloatingActionButton( + elevation: 0.0, + heroTag: "0", + child: new Text('0', + style: new TextStyle( + fontSize: 40.0, + fontFamily: 'Roboto', + color: Colors.white, + )), + backgroundColor: new Color(0xFFE57373), + onPressed: () {}), + ), + new Text(''), + ], + ), + ); + } +} |