image_pick 0.0.2+1 copy "image_pick: ^0.0.2+1" to clipboard
image_pick: ^0.0.2+1 copied to clipboard

outdated

A new Flutter package project.

image_pick #

An Image picker for Flutter with Memory Decision

Purpose #

I made this package because image picker from flutter sometimes crash and destroy MainActivity when system needs more RAM, so we need to alternative image picker when the condition fullfils

Usage #

First of all, just initialize it in main

void main() {
  runApp(MyApp());
  ImagePick.instance.initializeAvailableCamera(500.0);
}

and then you can use it

FloatingActionButton(
    child: Icon(Icons.camera_alt),
    onPressed: () async {
        PickedFile _image = await ImagePick.instance.getImageWithMemoryDecision(ImagePickWithMemoryConfiguration(
            camera: ImagePickSourceCamera(context: context),
            picker: ImagePickSourcePicker(pickerSource: PickerSource.camera),
        ));

        setState(() {
            _file = _image;
        });
    },
)

Happy fluttering, @Cybernetics Core