diff --git a/CHANGELOG.md b/CHANGELOG.md index 8454a65..e3d93b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ -## 0.0.1 +## 0.0.1 - September 5th 2022 - Initial release \ No newline at end of file diff --git a/README.md b/README.md index aabb149..c79f87b 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,13 @@ Flutter Image Picker is a package you can use to implement an Image Picker in yo ## 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). -## Example +## How To Use 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. | | 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. -Thank you! +## Issues -## 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. \ No newline at end of file +## 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 \ No newline at end of file diff --git a/test/src/ui/image_picker_ui_test.dart b/test/image_picker_ui_test.dart similarity index 98% rename from test/src/ui/image_picker_ui_test.dart rename to test/image_picker_ui_test.dart index 3f766b5..5b61558 100644 --- a/test/src/ui/image_picker_ui_test.dart +++ b/test/image_picker_ui_test.dart @@ -6,7 +6,7 @@ import 'package:image_picker/image_picker.dart' as image_picker; import 'package:flutter_test/flutter_test.dart'; import 'package:mocktail/mocktail.dart'; -import '../../mocks/image_picker_service_mock.dart'; +import 'mocks/image_picker_service_mock.dart'; void main() { Uint8List cameraImage = Uint8List(10);