-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Focus Issue On Android Tv #8
Comments
Hey 👋 I guess you are referring to the issue, when the program guide is not scrolled automatically on the focused item. In this case I would recommend to add an For example for cell item it would be: ProgramCell(
program = program,
onClick = {
...
},
modifier = Modifier
.onFocusChanged { focusState ->
if (focusState.hasFocus) {
val index = programs.indexOf(program)
scope.launch { state.animateToProgram(index) }
}
}
) This way the focused item will always be visible, see the video below: Screen.Recording.2023-11-14.at.13.24.48.mp4 |
i will definitely try and give feed back to u |
Item does not scroll with dpad
The text was updated successfully, but these errors were encountered: