spider 3.2.0 copy "spider: ^3.2.0" to clipboard
spider: ^3.2.0 copied to clipboard

A small dart command-line tool for generating dart references of assets from the assets folder.

example/EXAMPLE.md

Basic Example #

Just use following command:

spider build

Before

Widget build(BuildContext context) {
  return Image(image: AssetImage('assets/background.png'));
}

After

Widget build(BuildContext context) {
  return Image(image: AssetImage(Assets.background));
}

Generated Assets Class

class Assets {
  static const String background = 'assets/background.png';
}
290
likes
120
pub points
94%
popularity

Publisher

verified publisherbirju.dev

A small dart command-line tool for generating dart references of assets from the assets folder.

Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

args, dart_style, html, http, logging, meta, path, sprintf, watcher, yaml

More

Packages that depend on spider