Last updated:
0 purchases
idkit assets
idkit_assets #
1. Briefly #
This command line tool is for the convenient use and management of the resource management files of the Flutter project.
2. Instructions for use #
1. Install the resource management command tool
The instructions are as follows:
$ dart pub global activate idkit_assets
copied to clipboard
Note:
If the prompt No active package idkit_assets appears,use
$ flutter pub global activate idkit_assets
copied to clipboard
to install it once.
2. Create a flutter project or a flutter package project
The instructions are as follows:
$ flutter create xx
copied to clipboard
3. Initialize project resource management
The instructions are as follows:
$ idkit_assets run
copied to clipboard
or
idkit_assets -r
copied to clipboard
4. Update the name of the referenced class in the project resource file
The instructions are as follows:
$ idkit_assets rename AssetsMap
copied to clipboard
or
$ idkit_assets -rn AssetsMap
copied to clipboard
5. Check for unused resources in the project
The instructions are as follows:
$ idkit_assets unused check
copied to clipboard
or
$ idkit_assets -uc
copied to clipboard
6. Remove unused resource files from project resources
The instructions are as follows:
$ idkit_assets unused remove
copied to clipboard
or
$ idkit_assets -ur
copied to clipboard
7. Filter resource files greater than or equal to the specified project
The instructions are as follows:
# default: 200KB
$ idkit_assets unused filter
$ idkit_assets unused filter 300
copied to clipboard
or
# default: 200KB
$ idkit_assets -f 200
$ idkit_assets -f 300
copied to clipboard
8. Delete the resource file of the specified path in the project
The instructions are as follows:
$ idkit_assets delete xx
copied to clipboard
or
$ idkit_assets -d xx
copied to clipboard
9. Get instructions for using the resource management project command tool
The instructions are as follows:
$ idkit_assets help
copied to clipboard
or
$ idkit_assets -h
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.