Answers for "flutter column take full width"

0

container width full screen flutter

width: MediaQuery.of(context).size.width,
Posted by: Guest on June-17-2021
0

add fit to column flutter

Column(
      crossAxisAlignment: CrossAxisAlignment.start,
      children: <Widget>[
        Image.network("Your image url",
          width: double.infinity, 
          fit: BoxFit.fitWidth,
        ),
        Text("Fitted image"),
      ],
    )
Posted by: Guest on August-10-2020

Code answers related to "flutter column take full width"

Browse Popular Code Answers by Language