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
|
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,
),
),
],
)),
);
}
}
|