spider 0.4.1
spider: ^0.4.1 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';
}