-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmain.dart
69 lines (62 loc) · 1.67 KB
/
main.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
import 'dart:convert';
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:http/http.dart';
void main() {
runApp(new APICalls());
}
class APICalls extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new MyAPICalls(),
);
}
}
class MyAPICalls extends StatefulWidget {
MyAPICalls({Key key}) : super(key: key);
@override
_MyAPICallsState createState() => new _MyAPICallsState();
}
class _MyAPICallsState extends State<MyAPICalls> {
var _ipAddress = 'Unknown';
final httpClient = createHttpClient();
final url = 'https://httpbin.org/ip';
_getIPAddressUsingFuture() {
Future<Response> response = httpClient.get(url);
response.then((value) {
setState(() {
_ipAddress = JSON.decode(value.body)['origin'];
});
}).catchError((error) => print(error));
}
_getIPAddressUsingAwait() async {
var response = await httpClient.read(url);
var ip = JSON.decode(response)['origin'];
setState(() {
_ipAddress = ip;
});
}
@override
Widget build(BuildContext context) {
return new Scaffold(
body: new Center(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Text('Your current IP address is:'),
new Text('$_ipAddress.'),
new Padding(
padding: new EdgeInsets.all(8.0),
child: new RaisedButton(
onPressed: _getIPAddressUsingFuture,
child: new Text('Get IP address'),
),
),
],
),
),
);
}
}