Created
June 25, 2018 23:20
-
-
Save mjohnsullivan/77c7cf6ead01b05aeba08a5723d534be to your computer and use it in GitHub Desktop.
Simple Flutter app to retrieve and display a quote of the day
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:async'; | |
import 'dart:convert'; | |
import 'package:flutter/material.dart'; | |
import 'package:http/http.dart' as http; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
home: Scaffold( | |
body: Quote(), | |
)); | |
} | |
} | |
class Quote extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return FutureBuilder( | |
future: _getQuote(), | |
builder: (context, snapshot) { | |
return snapshot.connectionState == ConnectionState.done | |
? Center( | |
child: Text( | |
snapshot.data, | |
textAlign: TextAlign.center, | |
)) | |
: Center(child: CircularProgressIndicator()); | |
}); | |
} | |
} | |
/// Quote kindly supplied by https://theysaidso.com/api/ | |
Future<String> _getQuote() async { | |
final res = await http.get('http://quotes.rest/qod.json'); | |
return json.decode(res.body)['contents']['quotes'][0]['quote']; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment