Answers for "flutter container show entire image without specifying height"

-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

Code answers related to "flutter container show entire image without specifying height"

Code answers related to "Dart"

Browse Popular Code Answers by Language