diff options
author | Marvin Borner | 2018-07-24 12:37:27 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-24 12:37:27 +0200 |
commit | abe2bc76f7853a5a4b9a0b8df6efb9ebb6b279c6 (patch) | |
tree | 3f71b8dd820fe20ecc8e20c1e5791cde4afd7295 /lib/lockedscreen/home.dart | |
parent | 84e912e94d6a559748c0b737fdb2e664e1291d2f (diff) |
Using kotlin now
Diffstat (limited to 'lib/lockedscreen/home.dart')
-rw-r--r-- | lib/lockedscreen/home.dart | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/lib/lockedscreen/home.dart b/lib/lockedscreen/home.dart deleted file mode 100644 index 2336bb6..0000000 --- a/lib/lockedscreen/home.dart +++ /dev/null @@ -1,49 +0,0 @@ -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, - ), - ), - ], - )), - ); - } -} |