| 
				
					
						 | 
			před 7 roky | |
|---|---|---|
| example | před 7 roky | |
| lib | před 7 roky | |
| test | před 7 roky | |
| .gitignore | před 7 roky | |
| CHANGELOG.md | před 7 roky | |
| LICENSE | před 7 roky | |
| README.md | před 7 roky | |
| pubspec.lock | před 7 roky | |
| pubspec.yaml | před 7 roky | 
image picker, multi picker use flutter as ui
if you want to build custom ui, you just need api to make custom ui. to use photo_manager
dependencies:
  photo: ^0.0.1
import 'package:photo/photo.dart';
import 'package:photo_manager/photo_manager.dart';
void _pickImage() async{
  void _pickImage() async {
    List<ImageEntity> imgList = await PhotoPicker.pickImage(
      context: context, // BuildContext requied
      /// The following are optional parameters.
      themeColor: Colors.green, // the title color and bottom color
      padding: 5.0, // item padding
      dividerColor: Colors.deepOrange, // divider color 
      disableColor: Colors.grey.shade300, // the check box disable color
      itemRadio: 0.88, // the content item radio
      maxSelected: 8, // max picker image count
      provider: CNProvider(), // i18n provider ,default is chinese.
      rowCount: 5,  // item row count
      textColor: Colors.white, // text color
    );
    imgList.forEach((e) async {
      print(e.id);
    });
  }