Home > Software design >  row is not expanding as its parent container in flutter
row is not expanding as its parent container in flutter

Time:08-18

Here is my code Screen shot of code

current output

current output screen shot

i want both my icons to spaced between.

CodePudding user response:

Give width to Container()

 Container(
             width: MediaQuery.of(context).size.width,
       ),
  • Related