Skip to content

2.6.0

Choose a tag to compare

@github-actions github-actions released this 11 Jun 09:15
· 6 commits to main since this release

Added

  • Each modal API (sheets, dialogs) now comes with its own Host composable. When you wrap your
    content with the respective host, the modal is rendered within the same composition tree, instead
    of its own Window. (#410)
  • Added new Track composable in the ToggleSwitch, in order to separate the clickable area from
    the rendered area of the switch. This is useful when building full row toggles such as in setting
    screens.(#415)
  • Added unscoped versions of radio button, disclosure, and tab group to make it more straightforward
    to build your own components without fighting scoping. (#417, #421, #424)
  • Added contentAlignment parameter to TabGroup's Tab to make it simpler to position children
    inside of tabs. (#426)
  • Stack is now part of the default composeunstyled module. (#425)

Fixed

  • Fixed modal bottom sheet overlays being dismissed before the sheet finishes exiting. (#409)
  • Fixed vertical sliders handling pointer and keyboard input in the wrong direction. (#413)
  • Fixed UnstyledSlider thumbs briefly rendering at the start of the track before moving to their
    initial value position. (#430)