Skip to content

Commit

Permalink
[image_picker] doc:readme image picker misprints (flutter#4421)
Browse files Browse the repository at this point in the history
  • Loading branch information
vlkonoshenko authored and amantoux committed Dec 11, 2021
1 parent 93a870a commit f10ed18
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions packages/image_picker/image_picker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.8.4+4

* Fix typos in README.md.

## 0.8.4+3

* Suppress a unchecked cast build warning.
Expand Down
2 changes: 1 addition & 1 deletion packages/image_picker/image_picker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import 'package:image_picker/image_picker.dart';
// Pick a video
final XFile? image = await _picker.pickVideo(source: ImageSource.gallery);
// Capture a video
final XFile? photo = await _picker.pickVideo(source: ImageSource.camera);
final XFile? video = await _picker.pickVideo(source: ImageSource.camera);
// Pick multiple images
final List<XFile>? images = await _picker.pickMultiImage();
...
Expand Down
2 changes: 1 addition & 1 deletion packages/image_picker/image_picker/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Flutter plugin for selecting images from the Android and iOS image
library, and taking new pictures with the camera.
repository: https://github.com/flutter/plugins/tree/master/packages/image_picker/image_picker
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22
version: 0.8.4+3
version: 0.8.4+4

environment:
sdk: ">=2.14.0 <3.0.0"
Expand Down

0 comments on commit f10ed18

Please sign in to comment.