Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/provokateurin/flutter_assets_bug
https://github.com/provokateurin/flutter_assets_bug
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/provokateurin/flutter_assets_bug
- Owner: provokateurin
- Created: 2019-11-18T16:24:37.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-18T16:36:25.000Z (about 5 years ago)
- Last Synced: 2024-10-19T11:09:29.557Z (2 months ago)
- Language: Dart
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```