-
Notifications
You must be signed in to change notification settings - Fork 459
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SVG asset loading/rendering performance in PageView widget #111
Comments
Could you provide a full reproduction of this issue (perhaps a github repo with a working project)? I'd hazzard a guess that you probably don't want to create the |
I uploaded the full source of the testing app here: https://github.com/Raqbit/stacked. It's worth noting that the spikes are worse at the beginning, as expected for a first load. Not sure how I would go about smoothing that part out. When you have loaded all SVGs in the PageView and scroll back though, there still are some spikes when scrolling. |
@dnfield Any update on this? |
If you want to preload the SVG, you should use After that it depends on the complexity of the picture. Some SVGs aren't very performant. If you're drawing something with lots of paths and groups and group opacities and clips, it will be slow to redraw. You could try a repaint boundary, or you could rasterize it. |
@dnfield what is the suggested way to rasterize it? |
Hmm I thought I said this here but guess I didn't. I would start by adding a Repaint boundary over the bigger SVGs and see if that takes care of it |
I’m also having some performance issue with load from assets. I’m using a rotation animation that during the execution continuously switch between two svg files. Probably the files are a little bit complex (76kb) but I need to find a method to improve the performance. Probably it is better to preload the two svg files and then use them. Anyway there is performance issue related to rendering that is not fast |
Reduce The Image resolution and this should significantly improve performance |
I am also seeing performance issues when a parent of my Svg widget is setting state. I've tried wrapping in a RepaintBoundary and did not see significant changes. I've tried optimizing the SVG with a few tools as well. |
Another thing thats interesting. If I set the In my use case the width and height I want to render at is around 375w 163h. If I set the height to 20 the performance is fine, but its obviously too small for my UI. |
I am having the same performance issue with |
I was able to resolve my issue my asking a designer to optimize the SVG in Illustrator. I no longer have issues except that I need to get every SVG specifically optimized. |
@MisterJimson Can you recommend an app / command / process for optimizing SVGs that worked for you? Thanks |
Unfortunately all of the open sources tools and apps I found didn’t do a good enough job. Our designer modified the SVG before exporting it from their design tool. |
Here is a useful post about precaching assets:
|
I want to show them in a scrollable list. If I have to precache them all, I will encounter latency in the start and severe memory problems, with the risk of crashing the app. |
@apoleo88 avoid using SVGs that have embedded images, and see if you can use something like SVG cleaner to shrink down your size. But yes, at some point you do have to choose between frame latency and how much you can pre-warm. |
Hi we have created one tool to solve this issue. Hope this tool will help for the better use of svg to the flutter developers . try it out : https://svg2widget.web.app/ post related to the tool : https://www.linkedin.com/posts/maheshwaran-p_flutterdeveloper-flame-fluttercommunity-activity-6987966041922449408-cge_?utm_source=share&utm_medium=member_desktop this tool will convert the svg into flutter code . |
I haven't tested it properly, but this seems to increase the size of the SVGs by at least 30%. I am not sure of the impact on the size of the finished bundle. |
thanks for letting me know apoleo88 size of the svg is adjustable . Container( you can change the size of the svg by editing this line ---->[painter: CandyPainter( size of the svg )]. you can download the sample project . |
Any updates? |
update on what? @olegyablokov |
any solution for this issue ? |
No by using this svg2flutter you can reduce the app bundle size . Instead svg file you are going to use flutter code . |
how use this tool with svg image |
it's very simple . just select any svg , tool will convert the svg as flutter code . sample project code : https://github.com/maheshwaran-p/samplesvg/ |
please checkout my example/sample project( https://github.com/maheshwaran-p/samplesvg/ ) to know it's full flow .if any further query feel free to reach :) |
Hi,
I'm relatively new to Flutter & could not really find how PageView handles rendering/loading it's child widgets, but when I use SvgPicture as a child of a PageView, I keep getting "lag spikes" from (I guess) the loading/rendering of the SVG.
Currently I'm creating the SvgPicture widgets in
initState()
of a stateful widget and then using the PageView builder to add the to the PageView (This is a simplified example):When using "Flutter Performance" in Android Studio I get this FPS graph while scrolling through the cards:
Do you know what is causing these rendering delays & what would be the best way to fix them?
The text was updated successfully, but these errors were encountered: