We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca8c4ca commit 82c16afCopy full SHA for 82c16af
1 file changed
packages/backend/src/flutter/flutterDefaultBuilder.ts
@@ -28,6 +28,8 @@ export class FlutterDefaultBuilder {
28
this.child = flutterVisibility(node, this.child);
29
this.child = flutterRotation(node, this.child);
30
this.child = flutterOpacity(node, this.child);
31
+ } else if ("opacity" in node) {
32
+ this.child = flutterOpacity(node, this.child);
33
}
34
return this;
35
0 commit comments