-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dart 3.0, http upgrade #7
base: master
Are you sure you want to change the base?
Conversation
pubspec.yaml
Outdated
|
||
dependencies: | ||
flutter: | ||
sdk: flutter | ||
http: ^0.13.4 | ||
http: 1.1.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can have http: ^1.0.0 instead of hardcoding http: 1.1.0
pubspec.yaml
Outdated
sdk: ">=2.12.0 <3.0.0" | ||
flutter: ">=1.10.0" | ||
sdk: '>=3.1.3 <4.0.0' | ||
flutter: 3.13.6 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure if this line is required at all since I don't find a flutter tag under environment in the official documentation https://docs.flutter.dev/tools/pubspec
pubspec.yaml
Outdated
|
||
dependencies: | ||
flutter: | ||
sdk: flutter | ||
http: ^0.13.4 | ||
http: 1.1.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can have http: ^1.0.0 instead of hardcoding http: 1.1.0
Done, changed it as you requested |
Upgrade to dart 3.0, and http update.