Image Picker that can be used to pick an image from storage or make a picture with your camera.
Find a file
2022-08-31 16:54:45 +02:00
.vscode Made first version of image picker 2022-08-31 10:09:36 +02:00
example more code improvements and added some documentation in the readme 2022-08-31 16:54:45 +02:00
lib more code improvements and added some documentation in the readme 2022-08-31 16:54:45 +02:00
test more code improvements and added some documentation in the readme 2022-08-31 16:54:45 +02:00
.flutter-plugins Added more folders 2022-08-29 15:10:34 +02:00
.flutter-plugins-dependencies Replaced the alert dialog with modal bottom sheet 2022-08-31 11:45:12 +02:00
.gitignore Initial Commit 2022-08-29 14:52:48 +02:00
.metadata Initial Commit 2022-08-29 14:52:48 +02:00
analysis_options.yaml Initial Commit 2022-08-29 14:52:48 +02:00
CHANGELOG.md Code improvements and removed calculator 2022-08-31 10:19:57 +02:00
LICENSE Initial Commit 2022-08-29 14:52:48 +02:00
pubspec.yaml Made first version of image picker 2022-08-31 10:09:36 +02:00
README.md more code improvements and added some documentation in the readme 2022-08-31 16:54:45 +02:00

Flutter Image Picker

Flutter Image Picker is a package you can use to implement an Image Picker in your Flutter app.

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.

Usage

To use this package, add flutter_image_picker as a dependency in your pubspec.yaml file.

Example

See Example Code for an example on how to use this package.

You can add optional parameters to the showImagePickerDialog(context) function call. These are:

Parameter Explaination
title left-aligned
titleTextSize centered
iconSize right-aligned
iconTextSize right-aligned
spaceBetweenIcons right-aligned
makePhotoText right-aligned
makePhotoIcon right-aligned
selectImageText right-aligned
selectImageIcon right-aligned
closeButtonText right-aligned

Additional information

TODO: Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.