flutter_asset_generator 1.2.0 flutter_asset_generator: ^1.2.0 copied to clipboard
Generates the resource file by scanning assets defined in the pubspec.yaml, imitation R file short name.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate flutter_asset_generator
Use it
The package has the following executables:
$ fgen
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add flutter_asset_generator
With Flutter:
$ flutter pub add flutter_asset_generator
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
flutter_asset_generator: ^1.2.0
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:flutter_asset_generator/builder.dart';
import 'package:flutter_asset_generator/config.dart';
import 'package:flutter_asset_generator/filter.dart';
import 'package:flutter_asset_generator/format.dart';
import 'package:flutter_asset_generator/logger.dart';
import 'package:flutter_asset_generator/markdown_image_server.dart';
import 'package:flutter_asset_generator/replace.dart';
import 'package:flutter_asset_generator/template.dart';