We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1778ba1 commit edb0eb1Copy full SHA for edb0eb1
tns-core-modules/ui/core/view/view.ios.ts
@@ -468,6 +468,10 @@ export class CustomLayoutView extends View {
468
this.nativeViewProtected = UIView.alloc().initWithFrame(iosUtils.getter(UIScreen, UIScreen.mainScreen).bounds);
469
}
470
471
+ get ios(): UIView {
472
+ return this.nativeViewProtected;
473
+ }
474
+
475
public onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void {
476
// Don't call super because it will set MeasureDimension. This method must be overriden and calculate its measuredDimensions.
477
0 commit comments