Expand description
interface ResizeLayoutOwnProps {
disabled?: boolean;
minHeight?: number;
minWidth?: number;
naturalSize?: boolean;
setValuePercent: (percent: number) => void;
touch?: boolean;
valuePercent: number;
vertical?: boolean;
}Properties§
§§§§§§§§
disabled?: booleanIf the resizing is disabled
min Height?: numberThe minimum pixel height of the first child
min Width?: numberThe minimum pixel width of the first child
natural Size?: booleanUse the natural size instead of valuePercent
set Value Percent: { ... }Callback to set the percentage size of the first child
touch?: booleanOptimize for touch screen
value Percent: numberThe current percentage size of the first child
vertical?: booleanIf the resize layout should be horizontal or vertical
React component. A flex-box layout of 2 children, with a draggable divider between them.