spider 0.2.1
spider: ^0.2.1 copied to clipboard
A small dart command-line tool to generate Assets dart code 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';
}