Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/provokateurin/flutter_assets_bug


https://github.com/provokateurin/flutter_assets_bug

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

        

# flutter_assets_bug
Example for flutter copying file to the build assets which is not in the assets.
Run:
```bash
flutter build web
cat build/web/assets/some_random_folder/file.txt
# -> this should not be copied
flutter clean
flutter build bundle
cat build/flutter_assets/some_random_folder/file.txt
# -> this should not be copied
```