You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In compose we can get LocalAccessibilityManager that have a method to compute ideal timeout. After some experimentation, it make duration 3 times greater.
val manager =LocalAccessibilityManager.current
val durationWithAccessibility = manager?.let {
it.calculateRecommendedTimeoutMillis(
duration.inWholeMilliseconds,
containsIcons =true,
containsText =true,
containsControls =true
).milliseconds
The maintainVisibleOnFocus seems to not working with TalkBack.
Choice
When accessibility is enabled rememberDelayedVisibilityState force to disable auto hide mechanism.
As a user / integrator I want a composable like AnimatedVisibility that hide automatically after a delay.
Acceptance criteria
Tasks
The text was updated successfully, but these errors were encountered: