mirror of
https://github.com/Iconica-Development/flutter_image_picker.git
synced 2025-05-18 11:43:44 +02:00
updated readme and changelog
This commit is contained in:
parent
1ec1861ba2
commit
571cae6b08
3 changed files with 14 additions and 10 deletions
|
@ -1,3 +1,3 @@
|
||||||
## 0.0.1
|
## 0.0.1 - September 5th 2022
|
||||||
|
|
||||||
- Initial release
|
- Initial release
|
20
README.md
20
README.md
|
@ -5,13 +5,13 @@ Flutter Image Picker is a package you can use to implement an Image Picker in yo
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
With the Flutter Image Picker you can select an existing picture from the gallery or make a picture with the camera to use in your app.
|
With the Flutter Image Picker you can select an existing picture from the gallery of your device or make a picture with the camera to use in your app. This package is made for Android, iOS and Windows.
|
||||||
|
|
||||||
## Usage
|
## Setup
|
||||||
|
|
||||||
To use this package, add `flutter_image_picker` as a [dependency in your pubspec.yaml file](https://flutter.dev/docs/development/platform-integration/platform-channels).
|
To use this package, add `flutter_image_picker` as a [dependency in your pubspec.yaml file](https://flutter.dev/docs/development/platform-integration/platform-channels).
|
||||||
|
|
||||||
## Example
|
## How To Use
|
||||||
|
|
||||||
See the [Example Code](example/lib/main.dart) for an example on how to use this package.
|
See the [Example Code](example/lib/main.dart) for an example on how to use this package.
|
||||||
|
|
||||||
|
@ -34,11 +34,15 @@ As a whole you get `ImagePicker(ImagePickerTheme(imagePickerTheme: const ImagePi
|
||||||
| closeButtonWidth | The width of the 'Close Dialog' button at the bottom of the Image Picker Dialog. |
|
| closeButtonWidth | The width of the 'Close Dialog' button at the bottom of the Image Picker Dialog. |
|
||||||
| closeButtonHeight | The height of the 'Close Dialog' button at the bottom of the Image Picker Dialog. |
|
| closeButtonHeight | The height of the 'Close Dialog' button at the bottom of the Image Picker Dialog. |
|
||||||
|
|
||||||
## Issues & Feedback
|
|
||||||
|
|
||||||
Please file an [issue](https://github.com/Iconica-Development/flutter_image_picker/issues) to send feedback or report a bug.
|
## Issues
|
||||||
Thank you!
|
|
||||||
|
|
||||||
## Contributing
|
Please file any issues, bugs or feature request as an issue on our [GitHub](https://github.com/Iconica-Development/flutter_image_picker/pulls) page. Commercial support is available if you need help with integration with your app or services. You can contact us at [support@iconica.nl](mailto:support@iconica.nl).
|
||||||
|
|
||||||
Every pull request is welcome.
|
## Want to contribute
|
||||||
|
|
||||||
|
If you would like to contribute to the plugin (e.g. by improving the documentation, solving a bug or adding a cool new feature), please carefully review our [contribution guide](../CONTRIBUTING.md) and send us your [pull request](URL TO PULL REQUEST TAB IN REPO).
|
||||||
|
|
||||||
|
## Author
|
||||||
|
|
||||||
|
This `flutter-image-picker` for Flutter is developed by [Iconica](https://iconica.nl). You can contact us at <support@iconica.nl>
|
|
@ -6,7 +6,7 @@ import 'package:image_picker/image_picker.dart' as image_picker;
|
||||||
import 'package:flutter_test/flutter_test.dart';
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
import 'package:mocktail/mocktail.dart';
|
import 'package:mocktail/mocktail.dart';
|
||||||
|
|
||||||
import '../../mocks/image_picker_service_mock.dart';
|
import 'mocks/image_picker_service_mock.dart';
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
Uint8List cameraImage = Uint8List(10);
|
Uint8List cameraImage = Uint8List(10);
|
Loading…
Reference in a new issue