What would be the best way in compose to create a ...
# compose
p
What would be the best way in compose to create a composable which outputs something like the image: • Two texts displayed with an image in between • Both first and second text is of unknown length • The image and the second text should start on the same row as the first text ended (unless first text is just as wide as the parent container) Is this somehow possible with just plain
Row
and
Text
composables? Or do I need to implement a custom Layout and measure and place the parts?
z
This looks like inline content
see the
inlineContent
parameter on
BasicText
👀 2
👆 1
p
Excellent, worked like a charm! 💎