{"id":15554959,"url":"https://github.com/flutter-form-builder-ecosystem/form_builder_image_picker","last_synced_at":"2025-04-15T03:53:37.013Z","repository":{"id":40783007,"uuid":"325809103","full_name":"flutter-form-builder-ecosystem/form_builder_image_picker","owner":"flutter-form-builder-ecosystem","description":"Images picker field for FlutterFormBuilder. Get images from gallery or camera","archived":false,"fork":false,"pushed_at":"2025-03-23T12:52:51.000Z","size":423,"stargazers_count":33,"open_issues_count":10,"forks_count":62,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-11T15:10:27.338Z","etag":null,"topics":["dart","flutter","form","image"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/form_builder_image_picker","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flutter-form-builder-ecosystem.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2020-12-31T13:47:38.000Z","updated_at":"2025-03-23T12:52:35.000Z","dependencies_parsed_at":"2023-10-12T04:52:08.436Z","dependency_job_id":"18863961-2eeb-431f-a694-6585219748ae","html_url":"https://github.com/flutter-form-builder-ecosystem/form_builder_image_picker","commit_stats":{"total_commits":77,"total_committers":12,"mean_commits":6.416666666666667,"dds":0.4415584415584416,"last_synced_commit":"250214c54da2f26adbef0017d9f1c424d55a7ac4"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flutter-form-builder-ecosystem%2Fform_builder_image_picker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flutter-form-builder-ecosystem%2Fform_builder_image_picker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flutter-form-builder-ecosystem%2Fform_builder_image_picker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flutter-form-builder-ecosystem%2Fform_builder_image_picker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flutter-form-builder-ecosystem","download_url":"https://codeload.github.com/flutter-form-builder-ecosystem/form_builder_image_picker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248696927,"owners_count":21147217,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dart","flutter","form","image"],"created_at":"2024-10-02T15:05:21.730Z","updated_at":"2025-04-15T03:53:36.995Z","avatar_url":"https://github.com/flutter-form-builder-ecosystem.png","language":"Dart","funding_links":["https://opencollective.com/flutter-form-builder-ecosystem"],"categories":[],"sub_categories":[],"readme":"# Form Builder Image Picker\n\nImages picker field for FlutterFormBuilder. Get images from gallery or camera.\n\n[![Pub Version](https://img.shields.io/pub/v/form_builder_image_picker?logo=flutter\u0026style=for-the-badge)](https://pub.dev/packages/form_builder_image_picker)\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/flutter-form-builder-ecosystem/form_builder_image_picker/base.yaml?branch=main\u0026logo=github\u0026style=for-the-badge)](https://github.com/flutter-form-builder-ecosystem/form_builder_image_picker/actions/workflows/base.yaml)\n[![CodeFactor Grade](https://img.shields.io/codefactor/grade/github/flutter-form-builder-ecosystem/form_builder_image_picker?logo=codefactor\u0026style=for-the-badge)](https://www.codefactor.io/repository/github/flutter-form-builder-ecosystem/form_builder_image_picker)\n[![Codecov](https://img.shields.io/codecov/c/github/flutter-form-builder-ecosystem/form_builder_image_picker?logo=codecov\u0026style=for-the-badge)](https://codecov.io/gh/flutter-form-builder-ecosystem/form_builder_image_picker/)\n___\n\n- [Features](#features)\n- [Use](#use)\n  - [Setup](#setup)\n  - [Basic use](#basic-use)\n  - [Only specific pickers](#only-specific-pickers)\n- [Support](#support)\n  - [Contribute](#contribute)\n  - [Questions and answers](#questions-and-answers)\n  - [Donations](#donations)\n- [Roadmap](#roadmap)\n- [Ecosystem](#ecosystem)\n- [Thanks to](#thanks-to)\n\n## Features\n\n- Pick image from gallery or camera\n- Show images in form\n- Support several images types: `Uint8List`, `XFile`, `String` (url) or `ImageProvider`\n\n## Use\n\n### Setup\n\nSince this package makes use of [image_picker](https://pub.dev/packages/image_picker) package, for platform specific setup, follow the instructions [here](https://github.com/flutter/plugins/tree/main/packages/image_picker/image_picker#installation)\n\n### Basic use\n\n```dart\nFormBuilder(\n  child: Column(\n    mainAxisAlignment: MainAxisAlignment.center,\n    children: \u003cWidget\u003e[\n      FormBuilderImagePicker(\n        name: 'photos',\n        decoration: const InputDecoration(labelText: 'Pick Photos'),\n        maxImages: 1,\n      ),\n    ],\n  ),\n),\n```\n\n### Only specific pickers\n\n```dart\nFormBuilder(\n  child: Column(\n    mainAxisAlignment: MainAxisAlignment.center,\n    children: \u003cWidget\u003e[\n      FormBuilderImagePicker(\n        name: 'noCamera',\n        availableImageSources: const [ImageSourceOption.gallery],\n      ),\n    ],\n  ),\n),\n```\n\nSee [pub.dev example tab](https://pub.dev/packages/form_builder_image_picker/example) or [github code](example/lib/main.dart) for more details\n\n## Support\n\n### Contribute\n\nYou have some ways to contribute to this packages\n\n- Beginner: Reporting bugs or request new features\n- Intermediate: Implement new features (from issues or not) and created pull requests\n- Advanced: Join to [organization](#ecosystem) like a member and help coding, manage issues, dicuss new features and other things\n\n See [contribution file](https://github.com/flutter-form-builder-ecosystem/.github/blob/main/CONTRIBUTING.md) for more details\n\n### Questions and answers\n\nYou can question or search answers on [Github discussion](https://github.com/flutter-form-builder-ecosystem/form_builder_image_picker/discussions) or on [StackOverflow](https://stackoverflow.com/questions/tagged/flutter-form-builder)\n\n### Donations\n\nDonate or become a sponsor of Flutter Form Builder Ecosystem\n\n[![Become a Sponsor](https://opencollective.com/flutter-form-builder-ecosystem/tiers/sponsor.svg?avatarHeight=56)](https://opencollective.com/flutter-form-builder-ecosystem)\n\n## Roadmap\n\n- Simplify the field form to minimal use case\n- [Add visual examples](https://github.com/flutter-form-builder-ecosystem/form_builder_image_picker/issues/31) (images, gifs, videos, sample application)\n- [Solve open issues](https://github.com/flutter-form-builder-ecosystem/form_builder_image_picker/issues), [prioritizing bugs](https://github.com/flutter-form-builder-ecosystem/form_builder_image_picker/labels/bug)\n\n## Ecosystem\n\nTake a look to [our awesome ecosystem](https://github.com/flutter-form-builder-ecosystem) and all packages in there\n\n## Thanks to\n\n[All constributors](https://github.com/flutter-form-builder-ecosystem/form_builder_image_picker/graphs/contributors)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflutter-form-builder-ecosystem%2Fform_builder_image_picker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflutter-form-builder-ecosystem%2Fform_builder_image_picker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflutter-form-builder-ecosystem%2Fform_builder_image_picker/lists"}