From f03f214a47a78a52d73e28a76eec78d3f10d07e5 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 21 Jul 2018 17:59:36 +0200 Subject: Rewritten login activity --- lib/components.dart | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 lib/components.dart (limited to 'lib/components.dart') diff --git a/lib/components.dart b/lib/components.dart new file mode 100644 index 0000000..17e6767 --- /dev/null +++ b/lib/components.dart @@ -0,0 +1,83 @@ +import 'package:flutter/material.dart'; + +class InputField extends StatelessWidget { + IconData icon; + String hintText; + TextInputType textInputType; + Color textFieldColor, iconColor; + bool obscureText; + var validateFunction; + var onSaved; + + String onEmpty; + String name; + + //passing props in the Constructor. + //Java like style + InputField({ + this.name, + this.hintText, + this.onEmpty, + this.obscureText, + this.textInputType, + this.icon, + this.validateFunction, + this.onSaved, + }); + + @override + Widget build(BuildContext context) { + // TODO: implement build + return (new Container( + margin: new EdgeInsets.only(bottom: 10.0), + child: new DecoratedBox( + decoration: new BoxDecoration( + borderRadius: new BorderRadius.all(new Radius.circular(30.0)), + color: Colors.grey[50]), + child: new Padding( + padding: EdgeInsets.all(5.0), + child: new TextFormField( + decoration: new InputDecoration( + icon: new Icon(icon), + labelText: name, + border: InputBorder.none, + hintText: hintText, + hintStyle: const TextStyle(color: Colors.grey, fontSize: 15.0), + ), + validator: (val) => val.isEmpty ? onEmpty : null, + onSaved: (val) => onSaved = val, + obscureText: obscureText, + keyboardType: textInputType, + ), + ), + ), + )); + } +} + +class TextButton extends StatelessWidget { + VoidCallback onPressed; + String name; + + //passing props in the Constructor. + //Java like style + TextButton({ + this.name, + this.onPressed, + }); + + @override + Widget build(BuildContext context) { + // TODO: implement build + return (new FlatButton( + child: new Text(name, + textAlign: TextAlign.center, + style: const TextStyle( + color: Colors.black, + fontSize: 14.0, + fontFamily: "Roboto", + fontWeight: FontWeight.bold)), + onPressed: onPressed, + )); + } +} -- cgit v1.2.3