Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface SplitPaneScope {
* Set up first composable item if SplitPane, for [HorizontalSplitPane] it will be
* Left part, for [VerticalSplitPane] it will be Top part
* @param minSize a minimal size of composable item.
* For [HorizontalSplitPane] it will be minimal width, for [VerticalSplitPane] it wil be minimal Heights.
* For [HorizontalSplitPane] it will be minimal width, for [VerticalSplitPane] it will be minimal Heights.
* In this context minimal mean that this composable item could not be smaller than specified value.
* @param content composable item content.
* */
Expand All @@ -32,7 +32,7 @@ interface SplitPaneScope {
* Set up second composable item if SplitPane.
* For [HorizontalSplitPane] it will be Right part, for [VerticalSplitPane] it will be Bottom part
* @param minSize a minimal size of composable item.
* For [HorizontalSplitPane] it will be minimal width, for [VerticalSplitPane] it wil be minimal Heights.
* For [HorizontalSplitPane] it will be minimal width, for [VerticalSplitPane] it will be minimal Heights.
* In this context minimal mean that this composable item could not be smaller than specified value.
* @param content composable item content.
* */
Expand Down