Answers for "flutter stretch image to fit"

-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

resize image asset flutter

Image.asset(    'assets/images/file-name.jpg',    height: 100,    width: 100, )
Posted by: Guest on November-14-2020

Code answers related to "flutter stretch image to fit"

Browse Popular Code Answers by Language