spider 0.1.3
spider: ^0.1.3 copied to clipboard
A small dart command-line tool to generate Assets dart code from the assets folder.
example/EXAMPLE.md
Example #
Just use following command:
spider
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';
}