deleted fonts folder

This commit is contained in:
Vadim 2024-04-12 10:39:09 +02:00
parent 29eed73a1e
commit e06650cf76
4 changed files with 6 additions and 7 deletions

Binary file not shown.

Binary file not shown.

View file

@ -62,13 +62,6 @@ flutter:
uses-material-design: true uses-material-design: true
assets: assets:
- assets/camera_stub_image.jpg - assets/camera_stub_image.jpg
# fonts:
# - family: Roboto
# fonts:
# - asset: assets/fonts/Roboto-Regular.ttf
# weight: 400
# - asset: assets/fonts/Roboto-Medium.ttf
# weight: 500
flutter_intl: flutter_intl:
enabled: true enabled: true

6
update_goldens.sh Normal file
View file

@ -0,0 +1,6 @@
defaults -currentHost write -g AppleFontSmoothing -int 0
goldens=$(find ./test -name "*_golden_test.dart" -print)
for f in $goldens; do
flutter test "$f" --dart-define cameraStubImage=assets/camera_stub_image.jpg --update-goldens
done
defaults -currentHost write -g AppleFontSmoothing -int 3