Skip to content

Commit

Permalink
feat: update for 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
MahanRahmati committed Sep 13, 2023
1 parent 9553e93 commit c693c36
Show file tree
Hide file tree
Showing 4 changed files with 95 additions and 80 deletions.
2 changes: 0 additions & 2 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,13 @@ linter:
- implementation_imports
- implicit_call_tearoffs
# - invalid_case_patterns
- iterable_contains_unrelated_type
# - join_return_with_assignment # not required by flutter style
- leading_newlines_in_multiline_strings
- library_annotations
- library_names
- library_prefixes
- library_private_types_in_public_api
- lines_longer_than_80_chars # not required by flutter style
- list_remove_unrelated_type
# - literal_only_boolean_expressions # too many false positives: https://github.com/dart-lang/linter/issues/453
- missing_whitespace_between_adjacent_strings
- no_adjacent_strings_in_list
Expand Down
2 changes: 1 addition & 1 deletion lib/src/providers/global_providers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ import '/src/providers/theme_mode_provider.dart';
class GlobalProviders {
GlobalProviders._();
static List<SingleChildWidget> providers = <SingleChildWidget>[
ListenableProvider<ThemeModeProvider>.value(value: ThemeModeProvider())
ListenableProvider<ThemeModeProvider>.value(value: ThemeModeProvider()),
];
}
Loading

0 comments on commit c693c36

Please sign in to comment.