Coder Social home page Coder Social logo

Comments (4)

yschimke avatar yschimke commented on May 27, 2024 1

You are defining it in the wrong scope. Or rather you need a focusRequester for each scrollable thing, and in the right scope. The active bit of the name, means that it follows the focus lifecycle of the Composable. But you have it at the screen level. It should be inside the Dialog.

@OptIn(ExperimentalHorologistApi::class,
    ExperimentalWearFoundationApi::class
)
@Composable
fun MainScreen(
    modifier: Modifier = Modifier,
) {
    val focusRequester = rememberActiveFocusRequester()
    val columnState = rememberColumnState()
    
    val showDialog = remember { mutableStateOf(false) }

    Scaffold(
        modifier = modifier,
    ) {
        ScalingLazyColumn(
            modifier = Modifier
                .fillMaxSize()
                .rotaryWithScroll(columnState, focusRequester),
            state = columnState.state
        ) {
            // ...
        }

        Dialog(
            // modifier = Modifier.rotaryWithScroll(dialogScrollState, focusRequester),
            showDialog = showDialog.value,
            onDismissRequest = { showDialog.value = false },
            scrollState = dialogScrollState,
        ) {
            val dialogFocusRequester = rememberActiveFocusRequester()
            val dialogScrollState = rememberScalingLazyListState()
            Alert(
                modifier = Modifier.rotaryWithScroll(dialogScrollState, dialogFocusRequester),
                scrollState = dialogScrollState,
                icon = {},
                title = {},
                negativeButton = {},
                positiveButton = {},
            ) {
                // ...
            }
        }
    }
}

from horologist.

Digipom avatar Digipom commented on May 27, 2024 1

@yschimke Thank you, I was able to fix it like this:

Dialog(showDialog = showDialog, onDismissRequest = onDialogDismissed) {
        val scrollState = rememberScalingLazyListState()
        Alert(
            modifier = Modifier
                .fillMaxSize()
                .rotaryWithScroll(
                    focusRequester = rememberActiveFocusRequester(),
                    scrollableState = scrollState
                ),
            scrollState = scrollState,
// ...

As a feature request, if we could have an "opinionated" version that does the same thing as Alert does currently (lets us provide our own buttons and our own composables for title and message, that it wraps itself using CompositionLocalProvider etc...) it would allow me to use AlertDialog instead of Dialog / Alert.

from horologist.

yschimke avatar yschimke commented on May 27, 2024 1

cc @BowerSteve thoughts? The original issue is how to make Wear Compose dialogs work with RSB. The fix is Horologist combined APIs, or Dialog + Alert combos. There isn't a working slot based single API.

I'm not sure it's worth the limitations. You can combine these as you show.

The Horologist material dialogs take strings, in order to follow internal guidance on Material Dialogs, on different screen sizes. Even measuring text length.

The other benefit is the middle part, Alert in your example or AlertContent for the Horologist ones are easily used in Preview or Screenshot tests.

from horologist.

yschimke avatar yschimke commented on May 27, 2024

Horologist has some nicer APIs that do all this for you, AlertDialog and Confirmation.

            AlertDialog(
                showDialog = showDialog.value,
                icon = {},
                title = "Title",
                onCancel = { showDialog.value = false },
                onOk = { showDialog.value = false },
            ) {
                item {
                    Text(text = "Abc Abc Abc Abc\ndef def def\nghi ghi ghi")
                }
            }

from horologist.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.