pubspec Fix
This commit is contained in:
parent
8a998474fd
commit
109fc6f54b
11
pubspec.lock
11
pubspec.lock
|
@ -30,7 +30,7 @@ packages:
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.6.0"
|
version: "1.6.0"
|
||||||
async:
|
async:
|
||||||
dependency: transitive
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: async
|
name: async
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
|
@ -307,6 +307,13 @@ packages:
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.5"
|
version: "1.0.5"
|
||||||
|
flutter_screenutil:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: flutter_screenutil
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "2.3.0"
|
||||||
flutter_test:
|
flutter_test:
|
||||||
dependency: "direct dev"
|
dependency: "direct dev"
|
||||||
description: flutter
|
description: flutter
|
||||||
|
@ -346,7 +353,7 @@ packages:
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.1.2"
|
version: "0.1.2"
|
||||||
html:
|
html:
|
||||||
dependency: transitive
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: html
|
name: html
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
|
|
32
pubspec.yaml
32
pubspec.yaml
|
@ -15,10 +15,10 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
||||||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||||
# Read more about iOS versioning at
|
# Read more about iOS versioning at
|
||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
version: 0.1.0+1
|
version: 0.2.0
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.7.0 <3.0.0"
|
sdk: ">=2.6.0 <3.0.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
@ -54,6 +54,9 @@ dependencies:
|
||||||
audio_service: ^0.11.0
|
audio_service: ^0.11.0
|
||||||
path_provider_ex: ^1.0.1
|
path_provider_ex: ^1.0.1
|
||||||
random_string: ^2.0.1
|
random_string: ^2.0.1
|
||||||
|
async: ^2.4.1
|
||||||
|
html: ^0.14.0+3
|
||||||
|
flutter_screenutil: ^2.3.0
|
||||||
|
|
||||||
just_audio:
|
just_audio:
|
||||||
git: https://notabug.org/exttex/just_audio.git
|
git: https://notabug.org/exttex/just_audio.git
|
||||||
|
@ -85,19 +88,26 @@ flutter:
|
||||||
|
|
||||||
assets:
|
assets:
|
||||||
- assets/cover.jpg
|
- assets/cover.jpg
|
||||||
|
- assets/cover_thumb.jpg
|
||||||
|
- assets/icon.png
|
||||||
|
|
||||||
fonts:
|
fonts:
|
||||||
- family: Montserrat
|
# - family: Montserrat
|
||||||
|
# fonts:
|
||||||
|
# - asset: assets/fonts/Montserrat-Regular.ttf
|
||||||
|
# - asset: assets/fonts/Montserrat-Bold.ttf
|
||||||
|
# weight: 700
|
||||||
|
# - asset: assets/fonts/Montserrat-Italic.ttf
|
||||||
|
# style: italic
|
||||||
|
- family: MabryPro
|
||||||
fonts:
|
fonts:
|
||||||
- asset: assets/fonts/Montserrat-Regular.ttf
|
- asset: assets/fonts/MabryPro.otf
|
||||||
- asset: assets/fonts/Montserrat-Bold.ttf
|
- asset: assets/fonts/MabryProItalic.otf
|
||||||
|
style: italic
|
||||||
|
- asset: assets/fonts/MabryProBold.otf
|
||||||
weight: 700
|
weight: 700
|
||||||
- asset: assets/fonts/Montserrat-Italic.ttf
|
- asset: assets/fonts/MabryProBlack.otf
|
||||||
style: italic
|
weight: 900
|
||||||
- family: Jost
|
|
||||||
fonts:
|
|
||||||
- asset: assets/fonts/Jost-Italic.ttf
|
|
||||||
style: italic
|
|
||||||
|
|
||||||
# An image asset can refer to one or more resolution-specific "variants", see
|
# An image asset can refer to one or more resolution-specific "variants", see
|
||||||
# https://flutter.dev/assets-and-images/#resolution-aware.
|
# https://flutter.dev/assets-and-images/#resolution-aware.
|
||||||
|
|
Loading…
Reference in New Issue