react-native-ios-utilities
Version:
Utilities for react-native + iOS and wrappers for using swift together with fabric/paper + JSI
20 lines • 839 B
TypeScript
import type { ComputableLayoutValue } from "./ComputableLayoutValue";
import type { HorizontalAlignment } from "./HorizontalAlignment";
import type { VerticalAlignment } from "./VerticalAlignment";
export type ComputableLayout = {
horizontalAlignment: HorizontalAlignment;
verticalAlignment: VerticalAlignment;
width: ComputableLayoutValue;
height: ComputableLayoutValue;
marginLeft?: ComputableLayoutValue;
marginRight?: ComputableLayoutValue;
marginTop?: ComputableLayoutValue;
marginBottom?: ComputableLayoutValue;
paddingLeft?: ComputableLayoutValue;
paddingRight?: ComputableLayoutValue;
paddingTop?: ComputableLayoutValue;
paddingBottom?: ComputableLayoutValue;
offsetX?: ComputableLayoutValue;
offsetY?: ComputableLayoutValue;
};
//# sourceMappingURL=ComputableLayout.d.ts.map