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
-[#292](https://github.com/FlutterGen/flutter_gen/pull/292) Support an ImageProvider.
38
+
```dart
39
+
// Assets.images.chip.provider()
40
+
Container(
41
+
height: 400,
42
+
decoration: BoxDecoration(
43
+
image: DecorationImage(
44
+
image: Assets.images.chip.provider(),
45
+
),
46
+
),
47
+
child: const Center(child: Text('Deco')),
48
+
),
49
+
50
+
```
51
+
-[#294](https://github.com/FlutterGen/flutter_gen/pull/294)[**BREAKING CHANGES**] Moved the `style` and `package_parameter_enabled` to under assets.outputs scope.
52
+
```yaml
53
+
54
+
flutter_gen:
55
+
# ...
56
+
assets:
57
+
package_parameter_enabled: true
58
+
style: snake-case
59
+
outputs:
60
+
class_name: MyAssets
61
+
62
+
flutter_gen:
63
+
# ...
64
+
assets:
65
+
outputs:
66
+
class_name: MyAssets
67
+
package_parameter_enabled: true
68
+
style: snake-case
69
+
```
70
+
71
+
**Bug fix**
72
+
- [#287 ](https://github.com/FlutterGen/flutter_gen/issues/287) Delete the generated files then flutter_gen won't generate files again
73
+
- [#dart-lang/build#3364](https://github.com/dart-lang/build/issues/3364) Aggregate builder not rebuild when one of multiple output files is deleted.
0 commit comments