Created
April 5, 2021 15:36
-
-
Save huuhieupham189/4c461e46ad6395082e073a6c515d2474 to your computer and use it in GitHub Desktop.
Flutter Svg Precache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Future.wait([ | |
precachePicture( | |
ExactAssetPicture(SvgPicture.svgStringDecoder, 'assets/my_icon.svg'), | |
null, | |
), | |
precachePicture( | |
ExactAssetPicture(SvgPicture.svgStringDecoder, 'assets/my_asset.svg'), | |
null, | |
), | |
// other SVGs or images here | |
]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment