Skip to content

Instantly share code, notes, and snippets.

@huuhieupham189
Created April 5, 2021 15:36
Show Gist options
  • Save huuhieupham189/4c461e46ad6395082e073a6c515d2474 to your computer and use it in GitHub Desktop.
Save huuhieupham189/4c461e46ad6395082e073a6c515d2474 to your computer and use it in GitHub Desktop.
Flutter Svg Precache
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