Answers for "make the image take the size of the container flutter"

-2

flutter image cover container

// If your container has a fixed height use the following code
Container(
  width: MediaQuery.of(context).size.width,
  height: 100,
  decoration: BoxDecoration(
    image: DecorationImage(
      fit: BoxFit.fill,
      image: NetworkImage("https://picsum.photos/250?image=9"),
    ),
  ),
)
Posted by: Guest on November-26-2020
-2

flutter image size percentage

MediaQuery.of(context).size.width * 1
Posted by: Guest on January-23-2021

Code answers related to "make the image take the size of the container flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language