mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-23 09:01:10 +08:00
13 lines
389 B
TypeScript
13 lines
389 B
TypeScript
import { LayoutBaseCommon, clipToBoundsProperty } from "./layout-base-common";
|
|
|
|
export * from "./layout-base-common";
|
|
|
|
export class LayoutBase extends LayoutBaseCommon {
|
|
|
|
get [clipToBoundsProperty.native](): boolean {
|
|
return this._nativeView.clipsToBounds;
|
|
}
|
|
set [clipToBoundsProperty.native](value: boolean) {
|
|
this._nativeView.clipsToBounds = value;
|
|
}
|
|
} |