does anyone know how could I build, if its possibl...
# compose
g
does anyone know how could I build, if its possible at all, a composable like this?
there will always be a textfield, either in the middle of the text, at the beginning, or at the end
a
A annotated string ? Or custom layout
Annotated string actually doesn’t allow anything but other text, not composables. You could use a flow row and break each text block out by string -> text field -> string
gratitude thank you 1
1
a
If the size of the text field is known and fixed, you could use an annotated string with
inlineContent
. Use the
inlineContent
to insert your text field wherever you want.
👀 1
gratitude thank you 1