From abe2bc76f7853a5a4b9a0b8df6efb9ebb6b279c6 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 24 Jul 2018 12:37:27 +0200 Subject: Using kotlin now --- lib/pincode/pincode_create.dart | 239 ---------------------------------------- 1 file changed, 239 deletions(-) delete mode 100644 lib/pincode/pincode_create.dart (limited to 'lib/pincode/pincode_create.dart') diff --git a/lib/pincode/pincode_create.dart b/lib/pincode/pincode_create.dart deleted file mode 100644 index 0798ff4..0000000 --- a/lib/pincode/pincode_create.dart +++ /dev/null @@ -1,239 +0,0 @@ -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: [ - 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: [ - 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: [ - 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: [ - 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: [ - 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: [ - 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(''), - ), - ], - ), - ], - ), - ); - } -} -- cgit v1.2.3