fix(core): default page edges to not overflow

This commit is contained in:
Osei Fortune
2025-08-17 16:56:38 -04:00
parent a6db5bb685
commit 33692b5223

View File

@ -1672,12 +1672,6 @@ function parseEdges(edges: string): number | null {
export class ContainerView extends View {
public iosOverflowSafeArea: boolean;
constructor() {
super();
this._defaultOverflowEdge = OverflowEdgeDontApply;
this._defaultOverflowEdgeValue = 'dont-apply';
}
}
export class CustomLayoutView extends ContainerView implements CustomLayoutViewDefinition {