Home > Software engineering >  Centering an widget in a row by height in flutter
Centering an widget in a row by height in flutter

Time:04-10

I'm sorry for my bad english

I just want to center the icon widget on the row. How can I do that?

enter image description here

CodePudding user response:

maybe you just make this crossAxisAlignment: CrossAxisAlignment.start, to crossAxisAlignment: CrossAxisAlignment.center, for first Row

  • Related