zesage / panorama

Panorama - Flutter Widget
Apache License 2.0
114 stars 71 forks source link

Image quality is bad and pixeled when I use network image #46

Open moatazfouad opened 2 years ago

moatazfouad commented 2 years ago

When I use network image as Image provider, I get the image quality so bad.


      appBar: AppBar(
        backgroundColor: Theme.of(context).primaryColor,
        elevation: 0,
      ),
      body: SizedBox(
        height: size.height,
        width: size.width,
       child: Panorama(
          //animSpeed: 1.0,
          //sensorControl: SensorControl.Orientation,
          child: Image.network(imageURL),
       ),
      ),
    );```

How can I solve this issue?