Skip to content

Commit 82c16af

Browse files
canewsinPramUkesh
authored andcommitted
flutter: fix opacity not applied while codegen (#194)
Co-authored-by: PramUkesh <pramukesh@decentnet.dev>
1 parent ca8c4ca commit 82c16af

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

packages/backend/src/flutter/flutterDefaultBuilder.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ export class FlutterDefaultBuilder {
2828
this.child = flutterVisibility(node, this.child);
2929
this.child = flutterRotation(node, this.child);
3030
this.child = flutterOpacity(node, this.child);
31+
} else if ("opacity" in node) {
32+
this.child = flutterOpacity(node, this.child);
3133
}
3234
return this;
3335
}

0 commit comments

Comments
 (0)