(display: LayoutDisplay)
| 241 | } |
| 242 | |
| 243 | setDisplay(display: LayoutDisplay): void { |
| 244 | this.yoga.setDisplay(display === 'flex' ? Display.Flex : Display.None) |
| 245 | } |
| 246 | |
| 247 | getDisplay(): LayoutDisplay { |
| 248 | return this.yoga.getDisplay() === Display.None |
no outgoing calls
no test coverage detected