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/lockedscreen/home.dart | |
parent | acc5d5e9e960db9525a4368b393cb97fab8658e7 (diff) |
Rewritten login activity
Diffstat (limited to 'lib/lockedscreen/home.dart')
-rw-r--r-- | lib/lockedscreen/home.dart | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/lib/lockedscreen/home.dart b/lib/lockedscreen/home.dart new file mode 100644 index 0000000..2336bb6 --- /dev/null +++ b/lib/lockedscreen/home.dart @@ -0,0 +1,49 @@ +import 'package:flutter/material.dart'; +import 'package:flutter/rendering.dart'; +import 'package:beam_messenger/globals.dart' as globals; + +class Home extends StatelessWidget { + @override + Widget build(BuildContext context) { + return new Scaffold( + appBar: new AppBar( + title: new Text("Home"), + ), + body: new Center( + child: new Column( + children: <Widget>[ + new Container(height: 20.0), + new CircleAvatar( + radius: 60.0, + backgroundImage: new NetworkImage(globals.avatar), + ), + new Container(height: 10.0), + new Text( + 'ID: ' + globals.id, + style: new TextStyle( + color: Colors.black, + fontWeight: FontWeight.bold, + fontSize: 20.0, + ), + ), + new Container(height: 10.0), + new Text( + 'First Name: ' + globals.firstname, + style: new TextStyle( + color: Colors.black, + fontSize: 20.0, + ), + ), + new Container(height: 10.0), + new Text( + 'Email: ' + globals.email, + style: new TextStyle( + color: Colors.black, + fontSize: 20.0, + ), + ), + ], + )), + ); + } +} |