1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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,
));
}
}
|