Created
April 16, 2020 23:01
-
-
Save devDeejay/d8b836f94f0ea73d4551be7c20c50627 to your computer and use it in GitHub Desktop.
This file contains 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:convert'; | |
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:http/http.dart' as http; | |
import 'api_response_model.dart'; | |
class HomeScreen extends StatefulWidget { | |
@override | |
_HomeScreenState createState() => _HomeScreenState(); | |
} | |
class _HomeScreenState extends State<HomeScreen> { | |
APIResponseModel apiResponseModel; | |
@override | |
Widget build(BuildContext context) { | |
return Container( | |
color: Colors.white, | |
child: SafeArea( | |
child: Scaffold( | |
appBar: AppBar( | |
title: Text("Networking Example"), | |
), | |
body: Container(child: Center(child: buildDataWidget())), | |
floatingActionButton: FloatingActionButton( | |
child: Icon(Icons.cloud_download), | |
tooltip: "Get Data from API", | |
onPressed: () => getDataFromAPI(), | |
), | |
))); | |
} | |
void getDataFromAPI() async { | |
const String API_URL = "https://corona.lmao.ninja/v2/all"; | |
var response = await http.get(Uri.parse(API_URL)); | |
var parsedJson = await json.decode(response.body); | |
setState(() { | |
apiResponseModel = APIResponseModel.fromJson(parsedJson); | |
}); | |
} | |
buildDataWidget() { | |
if (apiResponseModel == null) | |
return Container( | |
child: Padding( | |
padding: const EdgeInsets.all(16.0), | |
child: Text( | |
"Press the floating action button to get data", | |
style: TextStyle(fontSize: 24), | |
textAlign: TextAlign.center, | |
), | |
), | |
); | |
else { | |
return Text( | |
"Total Cases : ${apiResponseModel.cases}\n" | |
"Today's Cases : ${apiResponseModel.todayCases}\n" | |
"Total Deaths : ${apiResponseModel.deaths}\n" | |
"Today's Deaths : ${apiResponseModel.todayDeaths}\n" | |
"Total Recovered : ${apiResponseModel.recovered}\n" | |
"Active Cases : ${apiResponseModel.active}\n" | |
"Critical Cases : ${apiResponseModel.critical}\n" | |
"Cases per million: ${apiResponseModel.casesPerOneMillion}\n" | |
"Deaths per million: ${apiResponseModel.deathsPerOneMillion}\n" | |
"Total Tests Done: ${apiResponseModel.tests}\n" | |
"Tests per million: ${apiResponseModel.testsPerOneMillion}\n" | |
"Affected countires : ${apiResponseModel.affectedCountries}\n", | |
style: TextStyle(fontSize: 18), | |
); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment