This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.10.0
2
+
3
+ * Bumps default camera_web package version to 0.3.0.
4
+
1
5
## 0.9.7+1
2
6
3
7
* Moves streaming implementation to the platform interface package.
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ Here is a list of all permission error codes that can be thrown:
98
98
99
99
- ` AudioAccessRestricted ` : iOS only for now. Thrown when audio access is restricted and users cannot grant permission (parental control).
100
100
101
- - ` cameraPermission ` : Android and Web only. A legacy error code for all kinds of camera permission errors.
101
+ - ` cameraPermission ` : Android only. A legacy error code for all kinds of camera permission errors.
102
102
103
103
### Example
104
104
Original file line number Diff line number Diff line change @@ -709,7 +709,7 @@ class _CameraExampleHomeState extends State<CameraExampleHome>
709
709
showInSnackBar ('Audio access is restricted.' );
710
710
break ;
711
711
case 'cameraPermission' :
712
- // Android & web only
712
+ // Android only
713
713
showInSnackBar ('Unknown permission error.' );
714
714
break ;
715
715
default :
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ flutter:
23
23
24
24
dependencies :
25
25
camera_platform_interface : ^2.2.0
26
- camera_web : ^0.2.1
26
+ camera_web : ^0.3.0
27
27
flutter :
28
28
sdk : flutter
29
29
flutter_plugin_android_lifecycle : ^2.0.2
You can’t perform that action at this time.
0 commit comments