Hi :wave: , I have an accessibility issue with Com...
# compose
m
Hi 👋 , I have an accessibility issue with Compose, if anyone could help please. Let’s say I have a
Copy code
Row { 
Text()
Button()
}
and on using the largest font in the device I want to have them both visible, text and button, and if needed to break the content in two lines, is it even possible? So far, I only managed to have them both visible with ellipse of their text
s
https://google.github.io/accompanist/flowlayout/ provides
FlowRow
, which will wrap if needed.
🙌 1
m
thanks!