(node: GroupNode)
| 133 | }; |
| 134 | |
| 135 | const flutterGroup = (node: GroupNode): string => { |
| 136 | const widget = flutterWidgetGenerator(node.children); |
| 137 | return flutterContainer( |
| 138 | node, |
| 139 | generateWidgetCode("Stack", { |
| 140 | children: widget ? [widget] : [], |
| 141 | }), |
| 142 | ); |
| 143 | }; |
| 144 | |
| 145 | const flutterContainer = (node: SceneNode, child: string): string => { |
| 146 | let propChild = ""; |
no test coverage detected