|
1 | 1 | name: flex_color_scheme_example |
2 | 2 | description: Examples that demonstrate how to use the FlexColorScheme package. |
3 | | -version: 7.0.1 |
| 3 | +version: 7.0.2 |
4 | 4 | publish_to: 'none' |
5 | 5 | environment: |
6 | 6 | sdk: '>=2.19.0 <4.0.0' |
@@ -40,7 +40,7 @@ dependencies: |
40 | 40 | # FlexSeedScheme package, by Mike Rydstrom, rydmike.com (@rydmike). |
41 | 41 | # Used by the playground app to compute and display tonal palettes. |
42 | 42 | # https://pub.dev/packages/flex_seed_scheme |
43 | | - flex_seed_scheme: ^1.2.3 |
| 43 | + flex_seed_scheme: ^1.2.4 |
44 | 44 |
|
45 | 45 | # The Flutter SDK, by Google flutter.dev. |
46 | 46 | flutter: |
@@ -68,12 +68,15 @@ dependencies: |
68 | 68 | # Color utilities by Google (material.io). |
69 | 69 | # |
70 | 70 | # Used in Playground by CodeTheme to harmonize colors against main theme colors. |
| 71 | + # Flutter SDK from 2.10.0 stable also depends on this package. |
71 | 72 | # |
72 | | - # Flutter SDK from 2.10.0 stable also uses and depends on this package. |
73 | | - # Version 0.3.0 contains many new features, but Flutter stable and master are |
74 | | - # locked to version 0.2.0, so we cannot use it, also 0-ver does not |
75 | | - # upgrade from version ^0.2.0 to 0.3.x, only to 0.2.x. |
76 | | - material_color_utilities: ^0.2.0 |
| 73 | + # Flutter stable 3.7 uses 0.2.0, and Flutter beta 3.10.x and master are |
| 74 | + # locked to version 0.3.0. Since it is using 0-ver, it does not upgrade with |
| 75 | + # constraint ^0.2.0 to 0.3.x, only to 0.2.x. We must use this deviant constraint |
| 76 | + # to be able to use it with Flutter stable, beta and master. It works well because |
| 77 | + # version 0.3.0 is actually not breaking any 0.2.0 APIs, it only contains new |
| 78 | + # features and fixes. |
| 79 | + material_color_utilities: '>=0.2.0 <0.4.0' |
77 | 80 |
|
78 | 81 | # Commonly used directories on host platform file systems, by Google (flutter.dev). |
79 | 82 | # Used to get a working storage path for Hive on Windows. |
|
0 commit comments