-
Notifications
You must be signed in to change notification settings - Fork 225
/
Table.dart
134 lines (128 loc) · 4.05 KB
/
Table.dart
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
import 'dart:async';
import 'dart:convert';
import 'package:http/http.dart' as http;
void main() {
runApp(new MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new UserOptions(),
);
}
}
class UserOptions extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return new UserOptionsState();
}
}
class UserOptionsState extends State<UserOptions> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: CupertinoNavigationBar(
middle: const Text(
'Profile',
style: const TextStyle(fontSize: 19.0),
),
),
body: FutureBuilder(
future: loadData(),
builder: (context, snapshot) {
if (snapshot.hasData) {
return body(snapshot.data as Map<String, dynamic>);
} else {
return Center(
child: CircularProgressIndicator(),
);
}
},
),
);
}
Widget body(Map data) {
return Container(
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
Padding(
padding: const EdgeInsets.all(20.0),
child: CircleAvatar(
backgroundColor: Colors.orangeAccent,
backgroundImage: NetworkImage('https://robohash.org/aseem'),
maxRadius: 40.0,
),
),
Divider(),
Text('Profile Details'),
Container(
// height: MediaQuery.of(context).size.height,
child: Padding(
padding: const EdgeInsets.all(14.0),
child: Table(
border: TableBorder.all(width: 1.0, color: Colors.black),
children: [
TableRow(children: [
TableCell(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: <Widget>[
new Text('ID'),
new Text(data['id'].toString()),
],
),
)
]),
TableRow(children: [
TableCell(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: <Widget>[
new Text('Name'),
new Text(data['employee_name'].toString()),
],
),
)
]),
TableRow(children: [
TableCell(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: <Widget>[
new Text('Salary'),
new Text(data['employee_salary'].toString()),
],
),
)
]),
TableRow(children: [
TableCell(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: <Widget>[
new Text('Age'),
new Text(data['employee_age'].toString()),
],
),
)
])
],
),
),
),
],
),
);
}
Future<Map> loadData() async {
http.Response response = await http.get(
Uri.parse("http://dummy.restapiexample.com/api/v1/employee/52"),
headers: {"Accept": "application/json"});
Map data = jsonDecode(response.body);
return data;
}
}