octo_image
octo_image copied to clipboard
A multifunctional Flutter image widget
### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) Upgrade flutter_blurshash version ### :new: What is the new behavior (if this is a feature...
## 🚀 Feature Requests Due to some needs of the project, we need to monitor the loading time of pictures, not only downloading, including decoding. That is, we need to...
Great package! Sometimes it is also valuable to obtain the imageprovider in the imageBuilder constructor. Currently it looks like this: typedef OctoImageBuilder = Widget Function(BuildContext context, Widget child); Hence I'd...
I'm sure you are aware of the various problems with inkwell effects on images. What's your preferred solution with respect to Octoimage? Maybe could include an option to include the...
### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) With this PR, the right section on pub.dev will show the View/report issues link to...
import 'package:cached_network_image/cached_network_image.dart'; import 'package:flutter/material.dart'; import 'package:instagram/presentation/widgets/global/others/play_this_video.dart'; // ignore: depend_on_referenced_packages import 'package:octo_image/octo_image.dart'; class NetworkDisplay extends StatefulWidget { final int cachingHeight, cachingWidth; final String url, blurHash; final double aspectRatio; final bool isThatImage;...
It seems blurhash has been removed - but the first example in the documentation still showcases how to use it: ``` OctoImage( image: CachedNetworkImageProvider( 'https://blurha.sh/assets/images/img1.jpg'), placeholderBuilder: OctoPlaceholder.blurHash( 'LEHV6nWB2yk8pyo0adR*.7kCMdnj', ), errorBuilder:...
### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) Bug fix ### :arrow_heading_down: What is the current behavior? defined: `final AlignmentGeometry alignment` In constructor:...
I got an issue with OOM on a very low device with random crashes. After investigation, I figure out that the problem with ImageHandler was reassigned. **Why did it happen?**...
## 🐛 Bug Report When we use FadeWidget with direction reverse and duration zero it is not disposing the child when the animation is completed. The root cause of this...