Horizontal Split Layout
A customizable horizontal split layout Composable function that allows you to divide the available space between two components using a draggable divider. The divider can be dragged to resize the panes, but cannot be focused.
Parameters
The Composable function representing the first component, that will be placed on one side of the divider, typically on the left or above.
The Composable function representing the second component, that will be placed on the other side of the divider, typically on the right or below.
The modifier to be applied to the layout.
The width of the draggable area around the divider. This is a invisible, wider area around the divider that can be dragged by the user to resize the panes.
The minimum size of the first component.
The minimum size of the second component.
The divider style to be applied to the layout.
The SplitLayoutState object that will be used to store the split state.