Answers for "flutter load image container size"

-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
0

how to get image file size in flutter

final bytes = image.readAsBytesSync().lengthInBytes;
final kb = bytes / 1024;
final mb = kb / 1024;
Posted by: Guest on April-19-2021

Code answers related to "flutter load image container size"

Code answers related to "Dart"

Browse Popular Code Answers by Language