mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
9 lines
283 B
TypeScript
9 lines
283 B
TypeScript
import common = require("./layout-base-common");
|
|
|
|
export class LayoutBase extends common.LayoutBase {
|
|
public _onClipToBoundsChanged(oldValue: boolean, newValue: boolean) {
|
|
if (this._nativeView) {
|
|
this._nativeView.clipsToBounds = newValue;
|
|
}
|
|
}
|
|
} |