-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: phone call (#61) * fix: call + sms phone format * chore: update TASKS * fix: bad state error (#62) * chore: UI clean up I somehow couldn't reproduce the bug. I ended up cleaning up some UI. * chore: update TASKS * refactor: redux reset store on logout (#63) * chore: first look * chore: code clean up * chore(redux): second draft * feat(redux): clean up store on logout * feat: reset store on logout * chore: update TASKS * feat: version check (#64) * feat: version check * chore: update TASKS * feat: bump to 1.0.3 * fix: reference upload (#65) * chore: code clean up * fix: reference upload Fixes the bad state as well. Turns out firstWhere throws on Empty. * chore: update TASKS
- Loading branch information
Showing
39 changed files
with
642 additions
and
447 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
class SettingsModel { | ||
String premiumNotice; | ||
final String premiumNotice; | ||
final String versionName; | ||
|
||
SettingsModel({ | ||
this.premiumNotice, | ||
this.versionName, | ||
}); | ||
|
||
factory SettingsModel.fromJson(Map<String, dynamic> json) { | ||
assert(json != null); | ||
return new SettingsModel( | ||
premiumNotice: json['premiumNotice'], | ||
versionName: json['versionName'], | ||
); | ||
} | ||
} |
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
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
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
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
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
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
Oops, something went wrong.