gian
12/13/2022, 9:15 AMfun Combined(modifier: Modifier) {
  Row(...) {
    BasicTextField(...)
    …
  }
}
Now, if the consumer passes Modifier.focusRequester(requester) in the outer Combined composable, I'd like to have the focus requests skip the Row and go to the BasicTextField. Is there a (simple?) way to do this?myanmarking
12/13/2022, 9:43 AMgian
12/14/2022, 4:08 PM