Can anyone point me to a direction where I can achieve a group layout like this picture? Groups I've been trying to do it with a list view but no luck
Asked
Active
Viewed 408 times
1 Answers
0
You can put a Row widgets in Column Widgets in Container or Card widgets in Column Widget.
Here's an example:
Column(
children: [
Card(
child: Row(
children: [
Column(),
Column(),
Column(),
],
),
),
Card(
child: Row(
children: [
Column(),
Column(),
Column(),
],
),
),
],
)

Mohammad K. Albattikhi
- 709
- 5
- 6
-
Perfect, definitely pointed me in right direction. – neuryzonso May 30 '21 at 19:09