(dir: FlexDirection)
| 331 | } |
| 332 | } |
| 333 | function trailingEdge(dir: FlexDirection): number { |
| 334 | switch (dir) { |
| 335 | case FlexDirection.Row: |
| 336 | return EDGE_RIGHT |
| 337 | case FlexDirection.RowReverse: |
| 338 | return EDGE_LEFT |
| 339 | case FlexDirection.Column: |
| 340 | return EDGE_BOTTOM |
| 341 | case FlexDirection.ColumnReverse: |
| 342 | return EDGE_TOP |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | // -- |
| 347 | // Public types |
no outgoing calls
no test coverage detected