change the default values for android safe area

This commit is contained in:
Martin Yankov
2018-08-24 18:50:47 +03:00
parent d9d847ec91
commit 76d4ee55bb

View File

@@ -881,7 +881,7 @@ export abstract class ViewCommon extends ViewBase implements ViewDefinition {
}
public getSafeAreaInsets(): { left, top, right, bottom } {
return undefined;
return {left: 0, top: 0, right: 0, bottom: 0};
}
public getLocationInWindow(): Point {