(width?: number, _height?: number)
| 80 | // Layout |
| 81 | |
| 82 | calculateLayout(width?: number, _height?: number): void { |
| 83 | this.yoga.calculateLayout(width, undefined, Direction.LTR) |
| 84 | } |
| 85 | |
| 86 | setMeasureFunc(fn: LayoutMeasureFunc): void { |
| 87 | this.yoga.setMeasureFunc((w, wMode) => { |
no outgoing calls
no test coverage detected