Fixed
Status Update
Comments
al...@google.com <al...@google.com> #2
Any chance this will get dealt with relatively soon?
ys...@google.com <ys...@google.com> #3
Hello. No updated to share yet, sorry
ca...@careem.com <ca...@careem.com> #4
Hello, is it fixed in some new compose versions ? Thanks a lot
ca...@careem.com <ca...@careem.com> #5
Hello, is it fixed in some new compose versions ? Thanks a lot
ca...@careem.com <ca...@careem.com> #6
val sheetState = rememberBottomSheetState(
initialValue = BottomSheetValue.Collapsed,
confirmStateChange = {
it != BottomSheetValue.Collapsed
})
val sheetScaffoldState = rememberBottomSheetScaffoldState(
bottomSheetState = sheetState
)
initialValue = BottomSheetValue.Collapsed,
confirmStateChange = {
it != BottomSheetValue.Collapsed
})
val sheetScaffoldState = rememberBottomSheetScaffoldState(
bottomSheetState = sheetState
)
ho...@google.com <ho...@google.com>
os...@google.com <os...@google.com>
os...@google.com <os...@google.com> #7
Hi, nothing to share yet. We will update this issue when we get to it!
Description
Bumping constraintlayout-core to 1.1.0 from 1.0.4 I got runtime exceptions due to binary incompatibilities between the two versions.
In particular I see incompatibilities with the `androidx.constraintlayout.core.state.Dimension` class.
For example the core version bundled with constraintlayout 2.1.4 (core-1.0.4) had the method `public static Dimension Fixed(int value)` which now is not available anymore (renamed to `public static Dimension createFixed(int value)` ?)
Here is the commit that broke incompatibility for the case above:
Would it be possible to restore compatibility in the new core so we are able to update?