Status Update
Comments
mn...@google.com <mn...@google.com>
sg...@google.com <sg...@google.com>
st...@gmail.com <st...@gmail.com> #2
Branch: androidx-master-dev
commit 3d00acd443e0e5dd2cc33eb314a65f78f21cec61
Author: Calin Tataru <calintat@google.com>
Date: Mon Aug 10 17:59:53 2020
Modifier.swipeable polishing
This CL does the following things:
* Expand the documentation in SwipeableState.
* Make the setter of SwipeableState.value private.
* Rename some of the properties in SwipeableState, and slightly change
the definition of swipeTarget (now called targetValue) so that it uses
the target value of the ongoing animation if isAnimationRunning = true.
* Add a rememberSwipeableState function to help reduce boilerplate.
* Add Savers for [Drawer/BottomDrawer/Dismiss/Swipeable]State, so that
we can use rememberSavedInstanceState in the rememberFooState functions.
Bug: 163129614
Bug: 163132293
Test: Ran SwipeableTest and other tests depending on swipeable
Relnote: "Renamed some properties in SwipeableState: swipeTarget ->
targetValue, swipeProgress -> progress, swipeDirection -> direction.
Added a rememberSwipeableState function for creating SwipeableStates."
Change-Id: I2fc9c3af465b579a18359ae0aa0853c2d2b02abe
M ui/ui-material/api/current.txt
M ui/ui-material/api/public_plus_experimental_current.txt
M ui/ui-material/api/restricted_current.txt
M ui/ui-material/samples/src/main/java/androidx/compose/material/samples/SwipeToDismissSamples.kt
M ui/ui-material/samples/src/main/java/androidx/compose/material/samples/SwipeableSamples.kt
M ui/ui-material/src/androidAndroidTest/kotlin/androidx/compose/material/SwipeableTest.kt
M ui/ui-material/src/commonMain/kotlin/androidx/compose/material/Drawer.kt
M ui/ui-material/src/commonMain/kotlin/androidx/compose/material/SwipeToDismiss.kt
M ui/ui-material/src/commonMain/kotlin/androidx/compose/material/Swipeable.kt
M ui/ui-material/src/commonMain/kotlin/androidx/compose/material/Switch.kt
ig...@gmail.com <ig...@gmail.com> #3
I added a rememberSwipeableState
function to easily create and remember a SwipeableState
with the default animation clock. That should work perfectly for your usecase.
km...@ramp.com <km...@ramp.com> #4
Regression in material3: the function is now marked internal. Please re-open.
sg...@google.com <sg...@google.com> #6
Thanks for your feedback. We are looking into the ways of improving the current Mosidifer.swipeable, it has a number of critical bugs and we don't want to publish it as-is in material3. Stay tuned
gk...@ramp.com <gk...@ramp.com> #7
I would like to add one thing (if it's not planned in the new swipeable() yet).
Right now, if you add an anchor, lets say 0..100 then it works as expected if you swipe from left (0) to right (100). However when doing the opposite swipe (from right 100 to left 0), instead of just not doing anything, swipeable shows the "overscroll" (or rather "overstretch") effect and consumes the scroll events if it's located in a horizontally scrollable container.
For example, let's say I want to put swipeable elements inside of the drawer. I want to be able to swipe to the right to "remove" the elements but I also want to be able to close the drawer by swiping to the left. Right now the drawer is impossible to close by swiping to the left. There needs to be some kind of a flag to disable this default behavior and to hint the swipeable to not consume scroll events in this and similar cases.
sg...@google.com <sg...@google.com>
sg...@google.com <sg...@google.com> #8
Unlike many of our components that just take a slot for a Composable
lambda, the date-pickers have a more complex UI that includes Text
composables that are internal to the component. This is probably the reason you mainly hit this issue with the pickers.
To ensure we give precedence for the colors that are defined at the DatePickerColors
over the colors that are set in the TextStyles
, we will need to adjust the internal Texts
and pass the relevant color via their color
parameter.
Once this is fixed, it should be available at the following 1.4.x alpha release.
ap...@google.com <ap...@google.com> #9
Project: platform/frameworks/support
Branch: androidx-main
Author: Shalom Gibly <
Link:
DatePicker colors with typography-defined colors
Expand for full commit details
DatePicker colors with typography-defined colors
Fix the way we apply colors at the DatePicker and the
DateRangePicker when a `Typography` is configured to have TextStyles
with colors.
The change ensures that whatever is set at the DatePickerColors takes
presedence over any color that was set at the Typography's TextStyles.
Fixes: 347031394
Test: Added tests
Relnote: "DatePickerColors now correctly take precedence over any
conflicting colors defined at the theme's Typography text styles.
Also note that this update adjusts the `color` parameter's position in
the date picker functions and introduces a `contentColor` parameter
for customizing the header and title text colors."
Change-Id: I30d0307b11ba2e1a02535928ab4e4131100692a8
Files:
- M
compose/material3/material3/api/current.txt
- M
compose/material3/material3/api/restricted_current.txt
- M
compose/material3/material3/src/androidInstrumentedTest/kotlin/androidx/compose/material3/DatePickerTest.kt
- M
compose/material3/material3/src/androidInstrumentedTest/kotlin/androidx/compose/material3/DateRangePickerTest.kt
- M
compose/material3/material3/src/commonMain/kotlin/androidx/compose/material3/DatePicker.kt
- M
compose/material3/material3/src/commonMain/kotlin/androidx/compose/material3/DateRangePicker.kt
Hash: c903f18c4d35096154798f269c249896c057e492
Date: Wed Oct 02 11:27:22 2024
gk...@ramp.com <gk...@ramp.com> #10
Thank you so much for fixing!! Looking forward to using the fix
na...@google.com <na...@google.com> #11
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.compose.material3:material3:1.4.0-alpha02
androidx.compose.material3:material3-android:1.4.0-alpha02
androidx.compose.material3:material3-jvmstubs:1.4.0-alpha02
androidx.compose.material3:material3-linuxx64stubs:1.4.0-alpha02
ta...@gmail.com <ta...@gmail.com> #12
onDismissRequest = onDismiss,
// ...
) {
CompositionLocalProvider(LocalContentColor provides Color.Black) {
DatePicker(
state = datePickerState,
colors = DatePickerDefaults.colors(
containerColor = Color.White,
// subheadContentColor = Color.Whatever,
// ...
)
)
}
}
Use CompositionLocalProvider. This forces your content to be tinted as specified by LocalContentColor.
Description
Jetpack Compose version: androidx.compose:compose-bom:2024.05.00
Jetpack Compose component(s) used: Material3 DatePicker
Android Studio Build: Android Studio Jellyfish
Kotlin version: 2.0.0
Steps to Reproduce or Code Sample to Reproduce: