Easier Assets Management

Do

Image.asset(AppAssets.appLogo);


Don't

Image.asset("assets/images/app_logo.png");


Conclusions: Managing assets can be very hard. If you want to use an image several times in your app, you have to specify the path again. But there is a much easier solution for this. Create an App Assets class where all your app assets are stored. Now you can easily call your assets with AppAssets.appLogo.