-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApiCalls.dart
104 lines (97 loc) · 3.71 KB
/
ApiCalls.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
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:http/http.dart' as http;
import 'dart:convert';
import 'package:implementations/main.dart';
class ApiCalls extends StatefulWidget {
@override State<StatefulWidget> createState() {
return new ApiCallsState();
}
}
class ApiCallsState extends State<ApiCalls> {
static const int RAW = 0;
static const int DECODED = 1;
static const int IN_LIST_VIEW = 2;
String _data = 'Data will appear here';
List _dataList;
Future _getData(String url, [int action = RAW]) async {
http.Response response = await http.get(
Uri.encodeFull(url),
headers: {
"Accept": "application/json"
// "key": "thisIsWhereTheAuthenticationKeyGoes"
}
);
print(response.body);
setState(() {
if (action == IN_LIST_VIEW) _dataList = JSON.decode(response.body);
if (action == RAW || action == DECODED) {
_data = action == RAW ? 'Calling ' + url + "\n\n\n\n" + response.body : JSON.decode(response.body).toString();
}
});
}
@override Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text('HTTP & API Calls'),
),
body: new Container(
alignment: Alignment.center,
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
new Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
App.getWidget(new RaisedButton(
child: new Text('RAW DATA'),
onPressed: () => _getData("https://jsonplaceholder.typicode.com/posts"),
), const EdgeInsets.only(top: 16.0, bottom: 16.0)),
App.getWidget(new RaisedButton(
child: new Text('DECODED DATA'),
onPressed: () => _getData("https://jsonplaceholder.typicode.com/posts", DECODED),
), const EdgeInsets.only(top: 16.0, bottom: 16.0)),
],
),
new Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
App.getWidget(new RaisedButton(
child: new Text('GET IN LISTVIEW'),
onPressed: () => _getData("https://jsonplaceholder.typicode.com/posts", IN_LIST_VIEW),
), const EdgeInsets.only(top: 16.0, bottom: 16.0)),
App.getWidget(new RaisedButton(
child: new Text('CLEAR'),
onPressed: () => setState(() {
_data = 'Data will appear here';
_dataList = null;
}),
), const EdgeInsets.only(top: 16.0, bottom: 16.0)),
],
),
new Expanded(child: new SingleChildScrollView(
child: new Text(_data, textAlign: TextAlign.start,),
)),
new Expanded(
child: new ListView.builder(
itemCount: _dataList != null ? _dataList.length : 0,
itemBuilder: (BuildContext context, int index) => new Card(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
App.getWidget(new Text(_dataList[index]['title'])),
App.getWidget(new Text(_dataList[index]['body'])),
],
),
),
),
),
],
),
),
);
}
}