is there a way to focus a composable (specifically...
# compose
b
is there a way to focus a composable (specifically a TextField) in a
@Preview
? I tried adding a focus requester and requesting focus in a DisposableEffect, but as I suspected, no luck.
c
Try
LaunchedEffect
for focusing.
DisposableEffect
doesn't give the composable enough time to layout before it requests focus.
LaunchedEffect
should.
b
@Chris Johnson - Thanks, but Launched Effect doesn’t seem to work either.
c
Must be a Preview specific thing. 😞 LaunchedEffect does work for me in a regular composable.