@nativescript/core
Version:
A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.
11 lines (10 loc) • 614 B
TypeScript
import { WrapLayoutBase, orientationProperty, itemWidthProperty, itemHeightProperty } from './wrap-layout-common';
import { CoreTypes } from '../../../core-types';
export * from './wrap-layout-common';
export declare class WrapLayout extends WrapLayoutBase {
[orientationProperty.setNative]: (value: "horizontal" | "vertical") => void;
[itemWidthProperty.setNative]: (value: CoreTypes.LengthType) => void;
[itemHeightProperty.setNative]: (value: CoreTypes.LengthType) => void;
nativeViewProtected: org.nativescript.widgets.WrapLayout;
createNativeView(): org.nativescript.widgets.WrapLayout;
}