Files
NativeScript/packages/core/ui/layouts/stack-layout/stack-layout-common.ts
2020-08-11 22:50:33 -07:00

23 lines
798 B
TypeScript

import { StackLayout as StackLayoutDefinition, Orientation } from '.';
import { LayoutBase } from '../layout-base';
import { CSSType } from '../../core/view';
import { Property, makeParser, makeValidator } from '../../core/properties';
import { isIOS } from '../../../platform';
@CSSType('StackLayout')
export class StackLayoutBase extends LayoutBase implements StackLayoutDefinition {
public orientation: Orientation;
}
StackLayoutBase.prototype.recycleNativeView = 'auto';
const converter = makeParser<Orientation>(makeValidator('horizontal', 'vertical'));
export const orientationProperty = new Property<StackLayoutBase, Orientation>({
name: 'orientation',
defaultValue: 'vertical',
affectsLayout: isIOS,
valueConverter: converter,
});
orientationProperty.register(StackLayoutBase);