mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
_createNativeView to createNativeView; _initNativeView to initNativeView _disposeNativeView to disposeNativeView _resetNativeView to resetNativeView
15 lines
578 B
TypeScript
15 lines
578 B
TypeScript
import { StackLayoutBase, orientationProperty } from "./stack-layout-common";
|
|
|
|
export * from "./stack-layout-common";
|
|
|
|
export class StackLayout extends StackLayoutBase {
|
|
nativeView: org.nativescript.widgets.StackLayout;
|
|
|
|
public createNativeView() {
|
|
return new org.nativescript.widgets.StackLayout(this._context);
|
|
}
|
|
|
|
[orientationProperty.setNative](value: "horizontal" | "vertical") {
|
|
this.nativeView.setOrientation(value === "vertical" ? org.nativescript.widgets.Orientation.vertical : org.nativescript.widgets.Orientation.horizontal)
|
|
}
|
|
} |