You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The image is proper and confirmed that it can zoom without pixelated using external tool. To further identify problematic part, used the following code. flutter_svg was used in place of flutter_svg_provider.
While using this package with PhotoView package as follows and then we zoom in a little, the SVG image gets pixelated.
PhotoView( imageProvider: Svg("assets/1223-1920x1080.svg"), ),
The image is proper and confirmed that it can zoom without pixelated using external tool. To further identify problematic part, used the following code. flutter_svg was used in place of flutter_svg_provider.
Transform.scale( scale: 30, child: SvgPicture.asset('assets/1223-1920x1080.svg'), )
This time the image did not pixelate this time.
The text was updated successfully, but these errors were encountered: