flutter_advanced_networkimage
flutter_advanced_networkimage copied to clipboard
flutter advanced network image provider
hello . i am using two networkimage in two page . image urls in two pages are the same. but every one cache image in its first time. means image...
Trying to enableRefresh properly. I load images to display to user and want a button they can press to re-grab those images from the server. Download and cache them like...
Like this: ``` ZoomableWidget( child: Stack( children: [ GestureDetector( onTap: () { debugPrint("onTap!!!"); }, child: Container( width: 40, height: 40, color: Colors.blue, ), ), ], ), ) ```
My code is exactly the same as in example, when calling setState(showing and hiding appbar) the behavior is like in this bellow gif, I dont know how to describe this....
In my app, I used a customized widget for network image. There, I used `TransitionToImage` to handle loading & error. I wanted to use it for SVG image loaded from...
When I wrap a sliver widget in the `ZoomableWidget`,I found that I can't scroll it.So I go to the source code, and add a `Listener()` widget contains the `GestureDetector`.But it's...
Great work! Does this package respect `Cache-Control` headers? Specifically, if a server responds with `Cache-Control: no-cache` and I pass `cacheRule: CacheRule(maxAge: const Duration(days: 7)),` will this lib ignore the server...