Answers for "flutter full width image"

0

container width full screen flutter

width: MediaQuery.of(context).size.width,
Posted by: Guest on June-17-2021
-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

Browse Popular Code Answers by Language