123456789101112131415 |
- package com.th3rdwave.safeareaview;
-
- /* package */ class EdgeInsets {
- public float top;
- public float right;
- public float bottom;
- public float left;
-
- public EdgeInsets(float top, float right, float bottom, float left) {
- this.top = top;
- this.right = right;
- this.bottom = bottom;
- this.left = left;
- }
- }
|