hyge
Results
2
comments of
hyge
@Dohmanlechx Maybe this would work. ```dart const loader = SvgAssetLoader('res/large_icon.svg'); svg.cache.putIfAbsent(loader.cacheKey(null), () => loader.loadBytes(null)); ```
@levi956 You can iterate asset names like this. ```dart final manifestJson = await rootBundle.loadString('AssetManifest.json') final images = json.decode(manifestJson).keys.where((String key) => key.startsWith('assets/images')); ``` @simplenotezy I use that code to load a...