-
Notifications
You must be signed in to change notification settings - Fork 459
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use package:http, drop dart:html (#1038)
* Use package:http, drop dart:html * Format
- Loading branch information
Showing
9 changed files
with
77 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,6 @@ coverage/ | |
.project | ||
|
||
# golden failure diffs | ||
test/failures | ||
**/test/failures | ||
# Flutter crash logs | ||
/flutter_*.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,15 @@ name: flutter_svg | |
description: An SVG rendering and widget library for Flutter, which allows painting and displaying Scalable Vector Graphics 1.1 files. | ||
repository: https://github.com/dnfield/flutter_svg/tree/master/packages/flutter_svg | ||
issue_tracker: https://github.com/dnfield/flutter_svg/issues | ||
version: 2.0.9 | ||
version: 2.0.10 | ||
|
||
dependencies: | ||
flutter: | ||
sdk: flutter | ||
vector_graphics: ^1.1.9+1 | ||
vector_graphics_codec: ^1.1.9+1 | ||
vector_graphics_compiler: ^1.1.9+1 | ||
http: ^1.2.1 | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
dnfield
Author
Owner
|
||
vector_graphics: ^1.1.11 | ||
vector_graphics_codec: ^1.1.11 | ||
vector_graphics_compiler: ^1.1.11 | ||
|
||
dev_dependencies: | ||
flutter_test: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@dnfield This http constraint is really tight and version solving fails when using this package with Flutter 3.16. Flutter 3.16 pins web 0.3.0. http ^1.2.1 wants web 0.5.0. This is okay with Flutter 3.19 because web was moved to a dev_dependency/unpinned. Any chance the requirement can get relaxed to allow earlier versions of the http library?