We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a0aea0 commit 95611dfCopy full SHA for 95611df
1 file changed
packages/backend/src/flutter/flutterDefaultBuilder.ts
@@ -24,10 +24,12 @@ export class FlutterDefaultBuilder {
24
}
25
26
blendAttr(node: SceneNode): this {
27
- if ("layoutAlign" in node && "opacity" in node && "visible" in node) {
28
- this.child = flutterVisibility(node, this.child);
+ console.log("rotation is", node.rotation);
+ if ("rotation" in node) {
29
this.child = flutterRotation(node, this.child);
30
- this.child = flutterOpacity(node, this.child);
+ }
31
+ if ("visible" in node) {
32
+ this.child = flutterVisibility(node, this.child);
33
} else if ("opacity" in node) {
34
this.child = flutterOpacity(node, this.child);
35
0 commit comments