native-layout-stack
Version:
SwiftUI like layout management
3 lines (2 loc) • 302 B
TypeScript
export declare type SingleSize = number | string;
export declare type Padding = SingleSize | [all: SingleSize] | [vertical: SingleSize, horizontal: SingleSize] | [top: SingleSize, horizontal: SingleSize, bottom: SingleSize] | [top: SingleSize, right: SingleSize, bottom: SingleSize, left: SingleSize];