文件名称:external_asset_bundle:从捆绑包外部的外部文件夹加载资源的AssetBundle。 像rootBundle或DefaultAssetBundle一样使用它
文件大小:9KB
文件格式:ZIP
更新时间:2024-03-27 06:51:45
外部资产捆绑 外部资产捆绑包的工作原理与rootBundle或DefaultAssetBundle完全相同,但是从外部位置(如应用程序或库路径)加载资源。 它还实现了用于资源加载的缓存。 如果要使用临时或外部存储中的文件夹中的资源,这将非常有用。 您可以使用Image.asset来创建一个Image实例,就像默认的bundle一样: var externalAssetBundle = ExternalAssetBundle ( "download/folder/assets" ); var image = Image . asset ( "sample.png" , bundle : externalAssetBundle, //Don't forget to use your own AssetBundle! ); 或非常容易地从路径加载字符串文件
【文件预览】:
external_asset_bundle-main
----test()
--------user_asset_bundle_test.dart(66B)
----.metadata(309B)
----external_asset_bundle.iml(982B)
----LICENSE(1KB)
----.idea()
--------modules.xml(282B)
--------.gitignore(176B)
--------libraries()
----.gitignore(618B)
----pubspec.yaml(2KB)
----CHANGELOG.md(44B)
----lib()
--------external_asset_bundle.dart(3KB)
----README.md(2KB)
----.gitattributes(66B)