Is there a Composable available that would achieve...
# compose-android
j
Is there a Composable available that would achieve the following layout? I’ve tried both FlowRow and LazyVerticalStaggeredGrid; both have their own limitations. I figured using a FlowRow with a LazyColumn would work but Flow doesn’t allow for tightly packing children when they wrap to the next row. The only solution I found was to build the UI using several Rows with a nested FlowRow and Image. This works but building the layout is very tedious and fragile. Any advice would be greatly appreciated.
s
Closest thing I've seen is this https://github.com/romainguy/combo-breaker but I've never used it myself. Give it a shot and if it works I am also curious to hear about it.