Automated Image Precache Feature Added: Automatically precache images from the application's asset folder to enhance performance.
- Add the plugin to your project.
dependencies:
gh_asset_pre_cache: ^0.0.1
- Run the following command in the terminal to install the plugin.
flutter pub get
- Call the plugin from any part of your app to automatically perform image precaching.
import 'package:gh_asset_pre_cache/gh_asset_pre_cache.dart';
// ...
void precacheImages() {
GhAssetPreCache().startImageCache();
}
- This version provides basic automated precaching functionality.
- Future updates will include more features and detailed configurations.
- No bug fixes in this version.
- This version marks the initial release of the plugin. Feedback and suggestions are welcome.
Now, optimize your application's performance by automatically managing image precaching with this plugin! Expect more updates and features in the future. Feel free to provide feedback or report issues on the GitHub repository. Thank you!