(view: View)
| 13 | return round(dipToDp(view.getLocationInWindow().y)); |
| 14 | } |
| 15 | export function right(view: View): number { |
| 16 | return left(view) + width(view); |
| 17 | } |
| 18 | export function bottom(view: View): number { |
| 19 | return top(view) + height(view); |
| 20 | } |
no test coverage detected