Skip to content

Commit

Permalink
Merge pull request #274 from vostpt/task/#269_UI_fixes_graphs
Browse files Browse the repository at this point in the history
Task/#269 ui fixes graphs
  • Loading branch information
Miguel Ruivo authored Jul 6, 2020
2 parents 8b9922f + 9241b98 commit ed238d2
Show file tree
Hide file tree
Showing 19 changed files with 390 additions and 258 deletions.
13 changes: 13 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Flutter",
"request": "launch",
"type": "dart"
}
]
}
9 changes: 5 additions & 4 deletions lib/generated/intl/messages_all.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ MessageLookupByLibrary _findExact(String localeName) {
/// User programs should call this before using [localeName] for messages.
Future<bool> initializeMessages(String localeName) async {
var availableLocale = Intl.verifiedLocale(
localeName, (locale) => _deferredLibraries[locale] != null,
onFailure: (_) => null);
localeName,
(locale) => _deferredLibraries[locale] != null,
onFailure: (_) => null);
if (availableLocale == null) {
return new Future.value(false);
}
Expand All @@ -55,8 +56,8 @@ bool _messagesExistFor(String locale) {
}

MessageLookupByLibrary _findGeneratedMessagesFor(String locale) {
var actualLocale =
Intl.verifiedLocale(locale, _messagesExistFor, onFailure: (_) => null);
var actualLocale = Intl.verifiedLocale(locale, _messagesExistFor,
onFailure: (_) => null);
if (actualLocale == null) return null;
return _findExact(actualLocale);
}
268 changes: 97 additions & 171 deletions lib/generated/intl/messages_en.dart

Large diffs are not rendered by default.

Loading

0 comments on commit ed238d2

Please sign in to comment.