Status Update
Comments
il...@google.com <il...@google.com>
ks...@gmail.com <ks...@gmail.com> #2
Thanks! This looks like a bug, thank you for reporting!
sa...@gmail.com <sa...@gmail.com> #3
Dragging up to 10% or between 50% and 90% will cause it to snap back to the start anchor.
Dragging between 10% and 50% or past 90% will cause it to snap to the end anchor.
co...@gmail.com <co...@gmail.com> #4
Project: platform/frameworks/support
Branch: androidx-main
Author: Jossi Wolf <
Link:
Update AnchoredDraggable target calculation logic
Expand for full commit details
Update AnchoredDraggable target calculation logic
We were previously relying on currentValue and the next closest anchor in the drag direction, but the simpler and more reliable way is to look at the left and right anchors as the window.
Relnote: Fixed a bug where positional thresholds passed to AnchoredDraggableDefaults.flingBehavior were not considered correctly in some scenarios.
Test: anchoredDraggable_fling_offsetPastHalfwayBetweenAnchors_beforePosThreshold_doesntAdvance
Bug: 367660226
Bug: 366003852
Change-Id: Ifdf0dfcf3d7ff8288affee56e7092bbed473d6ab
Files:
- M
compose/foundation/foundation/src/androidInstrumentedTest/kotlin/androidx/compose/foundation/anchoredDraggable/AnchoredDraggableStateTest.kt
- D
compose/foundation/foundation/src/androidInstrumentedTest/kotlin/androidx/compose/foundation/anchoredDraggable/AnchoredDraggableTestState.kt
- M
compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/gestures/AnchoredDraggable.kt
Hash: eff53304942e9fd4fa5382e0cf487a734c5b8d28
Date: Thu Sep 19 16:24:55 2024
co...@gmail.com <co...@gmail.com> #5
ez...@gmail.com <ez...@gmail.com> #6
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.compose.foundation:foundation:1.8.0-alpha04
androidx.compose.foundation:foundation-android:1.8.0-alpha04
androidx.compose.foundation:foundation-jvmstubs:1.8.0-alpha04
he...@gmail.com <he...@gmail.com> #7
Using the new version 1.8.0-alpha04
does not seem to resolve the issue for me. I tested with the same setting as the reported issue:
// it doesn't matter what you put here a the multiplier, the positionalThreshold is always 50%
positionalThreshold = { d -> d * 0.9f },
velocityThreshold = { Float.POSITIVE_INFINITY },
ru...@gmail.com <ru...@gmail.com> #8
Same. I've run this again on 1.8.0-alpha04. When using
positionalThreshold = { d -> d * 0.1f }
Dragging up to 10% or between 50% and 90% will cause it to snap back to the start anchor. Dragging between 10% and 50% or past 90% will cause it to snap to the end anchor.
I would expect It to only return if dragged less than or equal to 10% and snap to the end if dragged greater than 10%.
When using
positionalThreshold = { d -> d * 0.9f }
It acts as if the threshold has been set to 50%.
From what I can tell, nothing has changed about the behavior.
ru...@gmail.com <ru...@gmail.com> #9
Thanks, we will investigate and update this issue.
sj...@gmail.com <sj...@gmail.com> #10
st...@gmail.com <st...@gmail.com> #11
Project: platform/frameworks/support
Branch: androidx-main
Author: Jossi Wolf <
Link:
Update AnchoredDraggable target calculation logic
Expand for full commit details
Update AnchoredDraggable target calculation logic
There was a missed case when the velocity was negative.
Test: New tests with more parameter permutations
Fixes: 367660226
Bug: 376931805
Relnote: "Follow-up fix for an issue in AnchoredDraggable's target calculation where it could settle at the wrong anchor for specific swipes."
Change-Id: I23b8773d3a694aa3c8de6a8f34b9d7fb54cfe560
Files:
- M
compose/foundation/foundation/src/androidInstrumentedTest/kotlin/androidx/compose/foundation/anchoredDraggable/AnchoredDraggableStateTest.kt
- M
compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/gestures/AnchoredDraggable.kt
Hash: 6a23aa4ee37ba171475e4155db0d24c90b358c7e
Date: Fri Nov 08 14:11:31 2024
il...@google.com <il...@google.com> #12
What is the fix version?
ap...@google.com <ap...@google.com> #13
We will comment on the issue when it has been included in a release. Until then, you can try the snapshot versions from androidx.dev.
ng...@gmail.com <ng...@gmail.com> #14
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.compose.foundation:foundation:1.8.0-alpha07
androidx.compose.foundation:foundation-android:1.8.0-alpha07
androidx.compose.foundation:foundation-jvmstubs:1.8.0-alpha07
androidx.compose.foundation:foundation-linuxx64stubs:1.8.0-alpha07
lo...@gmail.com <lo...@gmail.com> #15
ba...@gmail.com <ba...@gmail.com> #16
#15, please report a new issue with a full reproduction case and the versions you are using. Thank you!
da...@gmail.com <da...@gmail.com> #17
Running compose foundation 1.8.0-alpha07
I'm using AnchoredDraggable with nested scrolling. When I drag and release the lazy layout sometimes the draggable settles correctly and sometimes it doesn't even when i drag and release past the threshold (positionalThreshold = { distance -> distance / 2f }.
internal fun nestedScrollConnection(
dragState: AnchoredDraggableState<Anchors>,
decayAnimationSpec: DecayAnimationSpec<Float>,
orientation: Orientation = Orientation.Vertical,
): NestedScrollConnection = object : NestedScrollConnection {
override fun onPreScroll(
available: Offset,
source: NestedScrollSource,
): Offset {
val availableDelta = available.toFloat()
return if (
availableDelta < 0f
) dragState.dispatchRawDelta(availableDelta).toOffset()
else Offset.Zero
}
override fun onPostScroll(
consumed: Offset,
available: Offset,
source: NestedScrollSource,
): Offset {
val availableDelta = available.toFloat()
return if (
availableDelta >= 0f
) dragState.dispatchRawDelta(availableDelta).toOffset()
else Offset.Zero
}
override suspend fun onPreFling(
available: Velocity,
): Velocity {
val availableDelta = available.toFloat()
val consumedOffset = if (availableDelta < 0f) dragState.animateToWithDecay(
velocity = availableDelta,
targetValue = Anchors.Collapsed,
decayAnimationSpec = decayAnimationSpec,
) else 0f
return Velocity(
x = 0f,
y = consumedOffset,
)
}
override suspend fun onPostFling(
consumed: Velocity,
available: Velocity,
): Velocity {
val availableDelta = available.toFloat()
if (
availableDelta > 0f
) dragState.animateToWithDecay(
velocity = availableDelta,
targetValue = Anchors.Expanded,
decayAnimationSpec = decayAnimationSpec,
)
dragState.settle(animationSpec = spring())
return Velocity(x = 0f, y = availableDelta)
}
private fun Float.toOffset(): Offset = Offset(
y = if (orientation == Orientation.Vertical) this else 0f,
x = if (orientation == Orientation.Horizontal) this else 0f,
)
@JvmName("offsetToFloat")
private fun Offset.toFloat() = if (orientation == Orientation.Horizontal) x else y
@JvmName("velocityToFloat")
private fun Velocity.toFloat() = if (orientation == Orientation.Horizontal) x else y
}
de...@gmail.com <de...@gmail.com> #18
Hi, this seems to be a different issue. Please provide a full reproducer in a new issue so we can investigate. Thank you!
ra...@gmail.com <ra...@gmail.com> #19
Or, is there some way to look up which is the first build to contain the change?
de...@gmail.com <de...@gmail.com> #20
Looking at the release notes (
lo...@gmail.com <lo...@gmail.com> #21
Unfortunately, this still does not work. I'm on 1.8.0-alpha07 and when I use 0.9f from the original example it still snaps at 50%.
ap...@google.com <ap...@google.com> #22
#21, are you using exactly the same code shared in #1?
ap...@google.com <ap...@google.com> #23
Yes, I'm the OP.
ap...@google.com <ap...@google.com> #24
sdkmanager "build-tools;build-tools-version"
b9...@gmail.com <b9...@gmail.com> #25
Apologies #23, but I am not able to reproduce the issue with the sample from #1, running on Compose 1.8.0-alpha08. Can you please provide a full reproducer project as a zip? Thanks!
ap...@google.com <ap...@google.com> #26
Can confirm that positionalThreshold doesn't work, still snaps at 50%.
Here is composable I'm using to test:
@Composable
fun AnchoredDraggableAnchorsFromCompositionSample() {
val density = LocalDensity.current
val state = rememberSaveable(saver = AnchoredDraggableState.Saver()) {
AnchoredDraggableState(initialValue = DragAnchors.Start)
}
val draggableWidth = 200.dp
val containerWidthPx = with(density) { draggableWidth.toPx() }
// Our anchors depend on the density which is obtained from composition, so we update them using
// updateAnchors whenever they are available
SideEffect {
state.updateAnchors(
DraggableAnchors {
DragAnchors.Start at 0f
DragAnchors.End at containerWidthPx
}
)
}
Box(Modifier.width(draggableWidth).background(Color.Gray)) {
Box(Modifier
.size(50.dp)
.offset { IntOffset(x = state.requireOffset().roundToInt(), y = 0) }
.anchoredDraggable(
state,
Orientation.Horizontal,
flingBehavior =
AnchoredDraggableDefaults.flingBehavior(
state,
positionalThreshold = { distance -> distance * 0.95f }
)
)
.background(Color.Red)
)
}
}
ap...@google.com <ap...@google.com> #27
ag...@xmartlabs.com <ag...@xmartlabs.com> #28
I am experiencing an issue with the transition. When my app is opened, the splash is shown and on exit transition it has a broken crossfade. Also, after this, no interaction is registered by the app. This issue is introduced in 2.4.0-alpha05
sw...@gmail.com <sw...@gmail.com> #29
cf...@gmail.com <cf...@gmail.com> #30
I am experiencing the same issue as
@Composable
fun ScreenThatRequiresAuth(navController: NavController, authenticated: Boolean) {
if (authenticated) {
// emit UI content for this screen
} else {
navController.navigate("login-screen")
}
}
no longer works because the navigation no longer happens instantaneously, so navController.navigate("login-screen")
is called repeatedly on subsequent recompositions as the animation proceeds. Therefore we are indefinitely navigating and crossfading, resulting in that visual glitch. If there is no way navigate without an animation anymore, then alpha05 breaks most implementations of this officially recommended pattern. My current workaround is to navigate inside of a LaunchedEffect
block so that it doesn't happen again on recompositions while animating the transition. The UI content of ScreenThatRequiresAuth
is still not shown if we have no auth, but now it is less clean than an if/else statement:
@Composable
fun ScreenThatRequiresAuth(navController: NavController, authenticated: Boolean) {
LaunchedEffect(authenticated) {
if (!authenticated) {
navController.navigate("login-screen")
}
}
if (authenticated) {
// emit UI content for this screen
}
}
This works, it just means that the login screen has to fade in from nothing, which may look awkward, and now the code required to implement this pattern is less straightforward. Since we should not be showing ScreenThatRequiresAuth
at all if there is no auth, it doesn't make sense to fade it out -- this transition should happen without an animation. When will this be possible?
je...@gmail.com <je...@gmail.com> #31
Navigating on recomposition seems like an anti pattern to me. I think calling 'navigate' should only happen upon a UI event. If you want to show a login screen, you should probably check if the app has persisted credentials and then either show the log-in (if there are no credentials) screen or the main screen (if there are some).
The composable could look like this:
@Composable
fun ContentView(
registration: Registration
) {
when (registration) {
is Registration.Registered -> MainView(...)
else -> OnboardingView(...)
}
}
Navigation is then happening inside the MainView composable and the OnboardingView composable. There you have your destinations like such:
@Composable
fun MainView(
...
) {
val navController = rememberNavController()
val actions = remember(navController) { NavActions(navController) }
NavHost(navController = navController, startDestination = Destinations.Home) {
composable(Destinations.Home) {
HomeView(
profileSelected = { navController.navigate(route = Destinations.Profile) },
...
)
}
...
}
}
Handling the credentials could be done in a separate class, which is instantiated in an activity:
sealed class Registration {
class Registered(val credentials: Credentials): Registration()
object Onboarding: Registration()
}
class AppState(private val persistence: Persistence): ViewModel() {
companion object {
var registration by mutableStateOf<Registration>(Registration.Onboarding)
private set
}
init {
load()
}
private fun load() {
val credentials = persistence.readCredentials()
registration = if (credentials != null)
Registration.Registered(credentials)
else
Registration.Onboarding
}
fun setCredentials(credentials: Credentials) {
persistence.saveCredentials(credentials)
registration = Registration.Registered(credentials)
}
}
jb...@google.com <jb...@google.com> #32
As of compose 1.0.1
many of the @Experimental
.
In the interest of providing a solution for Navigation with custom Compose Animations as soon as possible, we opted to provide a new module in 1.1.0
, we will move the implementation back into the Jetpack Navigation library
from Accompanist Navigation Animation
.
The bug we will use for tracking folding the APIs back into Jetpack Navigation is
For more details, see the
me...@gmail.com <me...@gmail.com> #33
Should we still be using Accompanist Navigation Animation? We're on Compose 1.2.0-beta02 by the way.
jo...@gmail.com <jo...@gmail.com> #34
I would like to do something like navigationController.navigate(AnotherScreen(name: String, anotherArgument: Boolean), animated = NavigationAnimation.Push) and thats it.
To achieve a push animation which is used so often in apps, it's way too hard to achieve.
bl...@gmail.com <bl...@gmail.com> #35
#34 I found it's easier & much more flexible to just implement your own navigation solution. It need not be super complicated in Compose. The Jetpack nav library really isn't worth the hassle.
jo...@gmail.com <jo...@gmail.com> #36
lo...@gmail.com <lo...@gmail.com> #37
I can't understand why you have such a negative view on compose and the navigation approach given. I use the
Description
Version used: 1.0.0-alpha01
Devices/Android versions reproduced on: All
Provide a way to navigate composable screens with animations (slide, fade etc')