react-native-ios-utilities
Version:
Utilities for react-native + iOS and wrappers for using swift together with fabric/paper + JSI
16 lines (14 loc) • 534 B
text/typescript
import type { HorizontalAlignmentPosition } from "./HorizontalAlignmentPosition";
import type { VerticalAlignmentPosition } from "./VerticalAlignmentPosition";
export type AlignmentPositionConfig = {
horizontalAlignment: HorizontalAlignmentPosition;
verticalAlignment: VerticalAlignmentPosition;
preferredHeight?: number;
preferredWidth?: number;
marginTop?: number;
marginBottom?: number;
marginLeading?: number;
marginTrailing?: number;
shouldPreferHeightAnchor?: boolean;
shouldPreferWidthAnchor?: boolean;
};