Skip to content

Commit

Permalink
💄 Adicona título
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagorocha503 committed Nov 29, 2019
1 parent 0683cda commit 4ab24f4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,17 @@ class _MyHomePageState extends State<MyHomePage> {
mainAxisSize: MainAxisSize.max,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
new Container(
padding: EdgeInsets.all(15),
child: new Text("Dados clínicos",
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.bold,
color: Colors.blue,
),
),
),
new Container(
child: new TextField(
keyboardType: TextInputType.text,
Expand All @@ -92,7 +103,7 @@ class _MyHomePageState extends State<MyHomePage> {
),
controller: this._txtNome,
),
padding: const EdgeInsets.all(5.0),
padding: const EdgeInsets.fromLTRB(5, 5, 5, 5),
alignment: Alignment.center,
),
new Container(
Expand Down

0 comments on commit 4ab24f4

Please sign in to comment.