I want to render a view that wraps child widgets while optimizing the display space,the widgets have flexible quantity and size. However, using Flutter's Wrap widget doesn't achieve this. Does anyone have any ideas that could help?
As expected and in reality when using Flutter's Wrap, you can see the image below. Thank you!
I want to render a view that wraps child widgets while optimizing the display space,the widgets have flexible quantity and size. However, using Flutter's Wrap widget doesn't achieve this. Does anyone have any ideas that could help?
As expected and in reality when using Flutter's Wrap, you can see the image below. Thank you!
Share Improve this question edited 4 hours ago swordart asked 6 hours ago swordartswordart 11 bronze badge New contributor swordart is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 2- You're probably gonna have to use something like a MultiChildLayoutWidget, or package:boxy which can size each item and pack them according to rules you specify. – Randal Schwartz Commented 5 hours ago
- Thank you for the suggestion, I will try... – swordart Commented 5 hours ago
1 Answer
Reset to default 0Try using Flutter Staggered Grid View