Make the URL for the data JSON file absolute. (#902)

* Make the URL for the data JSON file absolute.

* dart format
pull/917/head
Brett Morgan 4 years ago committed by GitHub
parent 5b1045187a
commit 0fe216a1cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -42,7 +42,8 @@ class HState extends State<Home> {
}
Future<void> getData() async {
http.Response r = await http.get('/data.json');
http.Response r = await http.get(
'https://flutter.github.io/samples/web/filipino_cuisine/data.json');
fd = json.decode(r.body) as Map<String, dynamic>;
setState(() => fi = fd['0'] as Map<String, dynamic>);
}

Loading…
Cancel
Save