You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -9,6 +9,11 @@ A command-line tool which simplifies the task of updating your Flutter app's lau
9
9
10
10
## :sparkles: What's New
11
11
12
+
#### Version 0.7.1 (24th May 2019)
13
+
* Fixed issue with image dependency not working on latest version of Flutter (thanks to @sboutet06)
14
+
* Fixed iOS icon sizes which were incorrect (thanks to @sestegra)
15
+
* Removed dart_config git dependency and replaced with yaml dependency
16
+
12
17
#### Version 0.7.0 (22nd November 2018)
13
18
* Added check to ensure the Android file name is valid
14
19
* Fixed issue where there was a git diff when there was no change
@@ -34,7 +39,7 @@ Add your Flutter Launcher Icons configuration to your `pubspec.yaml` or create a
34
39
An example is shown below. A more complex example [can be found in the example project](https://github.com/fluttercommunity/flutter_launcher_icons/blob/master/example/pubspec.yaml).
35
40
```yaml
36
41
dev_dependencies:
37
-
flutter_launcher_icons: "^0.7.0"
42
+
flutter_launcher_icons: "^0.7.1"
38
43
39
44
flutter_icons:
40
45
android: "launcher_icon"
@@ -45,8 +50,8 @@ If you name your configuration file something other than `flutter_launcher_icons
45
50
the name of the file when running the package.
46
51
47
52
```
48
-
flutter packages get
49
-
flutter packages pub run flutter_launcher_icons:main -f <yourconfigfilenamehere>
53
+
flutter pub get
54
+
flutter pub run flutter_launcher_icons:main -f <yourconfigfilenamehere>
50
55
```
51
56
52
57
Note: If you are not using the existing `pubspec.yaml` ensure that your config file is located in the same directory as it.
@@ -56,8 +61,8 @@ Note: If you are not using the existing `pubspec.yaml` ensure that your config f
56
61
After setting up the configuration, all that is left to do is run the package.
57
62
58
63
```
59
-
flutter packages get
60
-
flutter packages pub run flutter_launcher_icons:main
64
+
flutter pub get
65
+
flutter pub pub run flutter_launcher_icons:main
61
66
```
62
67
63
68
If you encounter any issues [please report them here](https://github.com/fluttercommunity/flutter_launcher_icons/issues).
# - always_put_required_named_parameters_first # we prefer having parameters in the same order as fields https://github.com/flutter/flutter/issues/10219
50
+
- always_require_non_null_named_parameters
51
+
- always_specify_types
52
+
- annotate_overrides
53
+
# - avoid_annotating_with_dynamic # conflicts with always_specify_types
54
+
- avoid_as
55
+
# - avoid_bool_literals_in_conditional_expressions # not yet tested
56
+
# - avoid_catches_without_on_clauses # we do this commonly
57
+
# - avoid_catching_errors # we do this commonly
58
+
- avoid_classes_with_only_static_members
59
+
# - avoid_double_and_int_checks # only useful when targeting JS runtime
60
+
- avoid_empty_else
61
+
- avoid_field_initializers_in_const_classes
62
+
- avoid_function_literals_in_foreach_calls
63
+
# - avoid_implementing_value_types # not yet tested
64
+
- avoid_init_to_null
65
+
# - avoid_js_rounded_ints # only useful when targeting JS runtime
66
+
- avoid_null_checks_in_equality_operators
67
+
# - avoid_positional_boolean_parameters # not yet tested
68
+
# - avoid_private_typedef_functions # we prefer having typedef (discussion in https://github.com/flutter/flutter/pull/16356)
69
+
- avoid_relative_lib_imports
70
+
- avoid_renaming_method_parameters
71
+
- avoid_return_types_on_setters
72
+
# - avoid_returning_null # there are plenty of valid reasons to return null
73
+
# - avoid_returning_null_for_future # not yet tested
74
+
- avoid_returning_null_for_void
75
+
# - avoid_returning_this # there are plenty of valid reasons to return this
76
+
# - avoid_setters_without_getters # not yet tested
77
+
# - avoid_shadowing_type_parameters # not yet tested
78
+
# - avoid_single_cascade_in_expression_statements # not yet tested
79
+
- avoid_slow_async_io
80
+
- avoid_types_as_parameter_names
81
+
# - avoid_types_on_closure_parameters # conflicts with always_specify_types
82
+
- avoid_unused_constructor_parameters
83
+
- avoid_void_async
84
+
- await_only_futures
10
85
- camel_case_types
11
-
- non_constant_identifier_names
86
+
- cancel_subscriptions
87
+
# - cascade_invocations # not yet tested
88
+
# - close_sinks # not reliable enough
89
+
# - comment_references # blocked on https://github.com/flutter/flutter/issues/20765
90
+
# - constant_identifier_names # needs an opt-out https://github.com/dart-lang/linter/issues/204
91
+
- control_flow_in_finally
92
+
# - curly_braces_in_flow_control_structures # not yet tested
93
+
- directives_ordering
94
+
- empty_catches
95
+
- empty_constructor_bodies
96
+
- empty_statements
97
+
# - file_names # not yet tested
98
+
- flutter_style_todos
12
99
- hash_and_equals
100
+
- implementation_imports
101
+
# - invariant_booleans # too many false positives: https://github.com/dart-lang/linter/issues/811
13
102
- iterable_contains_unrelated_type
103
+
# - join_return_with_assignment # not yet tested
104
+
- library_names
105
+
- library_prefixes
106
+
# - lines_longer_than_80_chars # not yet tested
14
107
- list_remove_unrelated_type
15
-
- unrelated_type_equality_checks
16
-
- valid_regexps
17
-
- cancel_subscriptions
108
+
# - literal_only_boolean_expressions # too many false positives: https://github.com/dart-lang/sdk/issues/34181
109
+
- no_adjacent_strings_in_list
110
+
- no_duplicate_case_values
111
+
- non_constant_identifier_names
112
+
# - null_closures # not yet tested
113
+
# - omit_local_variable_types # opposite of always_specify_types
114
+
# - one_member_abstracts # too many false positives
0 commit comments