Skip to content

Commit

Permalink
Version 1.6 - Minor parser fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielTavernini committed Jun 4, 2020
1 parent 300fb90 commit 251f46d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions lib/parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ class Parser {
cD.totalDeaths = parseInteger(row[11 + offset]);
cD.newDeaths = parseInteger(row[13 + offset]);
cD.totalRecovered = parseInteger(row[15 + offset]);
cD.activeCases = parseInteger(row[17 + offset]);
cD.criticalCases = parseInteger(row[19 + offset]);
cD.casesPerMln = parseDouble(row[21 + offset]);
cD.deathsPerMln = parseDouble(row[23 + offset]);
cD.totalTests = parseInteger(row[25 + offset]);
cD.testsPerMln = parseInteger(row[27 + offset]);
cD.activeCases = parseInteger(row[19 + offset]);
cD.criticalCases = parseInteger(row[21 + offset]);
cD.casesPerMln = parseDouble(row[23 + offset]);
cD.deathsPerMln = parseDouble(row[25 + offset]);
cD.totalTests = parseInteger(row[27 + offset]);
cD.testsPerMln = parseInteger(row[29 + offset]);
cD.link = link;
return cD;
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ packages:
name: fl_chart
url: "https://pub.dartlang.org"
source: hosted
version: "0.9.4"
version: "0.10.0"
flutter:
dependency: "direct main"
description: flutter
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ description: A mobile app developed with Flutter to view Covid19 statistics.
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.5.0+6
version: 1.6.0+7

environment:
sdk: ">=2.2.2 <3.0.0"

dependencies:
http: ^0.12.1
fl_chart: ^0.9.4
fl_chart: ^0.10.0
liquid_pull_to_refresh: ^2.0.0
flutter:
sdk: flutter
Expand Down
Binary file modified repo_files/app-release.apk
Binary file not shown.

0 comments on commit 251f46d

Please sign in to comment.