(node: TextNode)
| 162 | }; |
| 163 | |
| 164 | const flutterText = (node: TextNode): string => { |
| 165 | const builder = new FlutterTextBuilder().createText(node); |
| 166 | previousExecutionCache.push(builder.child); |
| 167 | |
| 168 | return builder.blendAttr(node).textAutoSize(node).position(node).child; |
| 169 | }; |
| 170 | |
| 171 | const flutterFrame = ( |
| 172 | node: SceneNode & BaseFrameMixin & MinimalBlendMixin, |
no test coverage detected