(view: View)
| 10 | return round(dipToDp(view.getLocationInWindow().x)); |
| 11 | } |
| 12 | export function top(view: View): number { |
| 13 | return round(dipToDp(view.getLocationInWindow().y)); |
| 14 | } |
| 15 | export function right(view: View): number { |
| 16 | return left(view) + width(view); |
| 17 | } |
no test coverage detected