Commit Graph

10 Commits

Author SHA1 Message Date
Verminskiy Vladislav
d80331834c Update SplitPaneDSL.kt (#2196)
It is look likes mistake in documentation for placements first and second component in the  horizontal pane
2022-07-23 15:14:07 +04:00
Ilya Ryzhenkov
010576557f Fix split panel (#2175)
* Fix ignoring modifier when one of the parts is missing

* Fix ignoring density for min size when measuring

* Fix a copypasta for secondMinSizePx
2022-07-07 19:10:04 +02:00
Igor Demin
713f687b02 SplitPane. Remove material dependency (#1979)
SplitPane by design, shouldn't have default visual representation, because it mostly depends on the design system (material, material3, etc)

Fixes https://github.com/JetBrains/compose-jb/issues/1975

RelNote:
SplitPane no longer depends on compose.material. Now, by default, SplitPane has invisible 0px splitter, not 1px black/white splitter as it was before. If you want to preserve the previous behaviour, specify a splitter explicitly:
```
HorizontalSplitPane(splitterState) {
    splitter {
        visiblePart {
            Box(
                Modifier
                    .height(1.dp)
                    .fillMaxHeight()
                    .background(MaterialTheme.colors.background)
            )
        }
    }
}
```
2022-04-11 11:47:45 +03:00
akurasov
064e3ed3d4 updating components and tutorials to latest Compose API 2021-10-07 17:58:25 +03:00
Noire
0f9735140d Fix component SplitPane (#1037) 2021-08-10 15:59:08 +03:00
Igor Demin
854de3681c Publish components (#829) 2021-06-29 16:55:08 +03:00
Nikolay Igotti
1999f58e75 Move to build 0.3.1. 2021-03-01 09:37:24 +03:00
Igor Demin
bc90bb7074 SplitPane. Fix SplitterHandleAlignment 2021-02-21 01:19:38 +03:00
Igor Demin
1b634255e8 Split pane. Refactoring (#408) 2021-02-21 00:03:04 +03:00
LAP2
901406269a Add split pane (#355)
Components. SplitPane
2021-02-20 23:53:50 +03:00