change the default values for android safe area

This commit is contained in:
Martin Yankov
2018-08-24 18:50:47 +03:00
parent 50a6073f33
commit fea47e838d

View File

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