-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚀 Supports the WASM environment (#2274)
Resolves #2265 Signed-off-by: Alex Li <[email protected]>
- Loading branch information
Showing
21 changed files
with
88 additions
and
536 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
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 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 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 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 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 |
---|---|---|
@@ -1,24 +1,7 @@ | ||
library dio_web_adapter; | ||
|
||
// We separate implementations as `html` and `js_interop` | ||
// only for convenient diffing. | ||
|
||
export 'src/html/adapter.dart'; | ||
|
||
// export 'src/js_interop/adapter.dart'; | ||
|
||
export 'src/html/compute.dart'; | ||
|
||
// export 'src/js_interop/compute.dart'; | ||
|
||
export 'src/html/dio_impl.dart'; | ||
|
||
// export 'src/js_interop/dio_impl.dart'; | ||
|
||
export 'src/html/multipart_file.dart'; | ||
|
||
// export 'src/js_interop/multipart_file.dart'; | ||
|
||
export 'src/html/progress_stream.dart'; | ||
|
||
// export 'src/js_interop/progress_stream.dart'; | ||
export 'src/adapter.dart'; | ||
export 'src/compute.dart'; | ||
export 'src/dio_impl.dart'; | ||
export 'src/multipart_file.dart'; | ||
export 'src/progress_stream.dart'; |
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
2 changes: 0 additions & 2 deletions
2
...ns/web_adapter/lib/src/html/dio_impl.dart → plugins/web_adapter/lib/src/dio_impl.dart
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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
// export '../js_interop/dio_impl.dart'; | ||
|
||
import 'package:dio/dio.dart'; | ||
|
||
import 'adapter.dart'; | ||
|
Oops, something went wrong.