(view: View)
| 7 | const EPS = 1; |
| 8 | |
| 9 | export function left(view: View): number { |
| 10 | return round(dipToDp(view.getLocationInWindow().x)); |
| 11 | } |
| 12 | export function top(view: View): number { |
| 13 | return round(dipToDp(view.getLocationInWindow().y)); |
| 14 | } |
no test coverage detected