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

Time:09-21

Flutter Row Column Grid Text Allignment

enter image description here

CodePudding user response:

Use Wrap widget

Wrap(
children:[],
)

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

CodePudding user response:

You have to use Warp. use this structure:

Wrap(children:[])

  • Related