How do I make Texts in multiple row and columns in flutter?

Viewed 44

How do I achieve Row and Column Grid Text Alignment in Flutter? Check the example down below :

enter image description here

Thank you in advance.

3 Answers

Use Wrap widget

Wrap(
children:[],
)

Make width of the each widget in children to half of the total width

You have to use Warp. use this structure:

Wrap(children:[])

You can simply use Table and TableRow in order to achieve the design that you are trying to get.

Related