fix(core): default frame edges to overflow

This commit is contained in:
Osei Fortune
2025-08-17 16:55:58 -04:00
parent a530d9be29
commit a6db5bb685

View File

@@ -80,6 +80,8 @@ export class Frame extends FrameBase {
private _containerViewId = -1;
private _tearDownPending = false;
private _attachedToWindow = false;
_defaultOverflowEdge: number;
_defaultOverflowEdgeValue: string;
/**
* This property indicates that the view is to be reused as a root view or has been previously disposed.
*/
@@ -90,6 +92,8 @@ export class Frame extends FrameBase {
constructor() {
super();
this._android = new AndroidFrame(this);
this._defaultOverflowEdge = 1 << 4;
this._defaultOverflowEdgeValue = 'dont-apply';
}
public static reloadPage(context?: ModuleContext): void {