Skip to content

Add Exclude Function

Compare
Choose a tag to compare
@esafirm esafirm released this 11 Jan 15:05
· 135 commits to main since this release

Now you can exclude image from being shown in the picker

ImagePicker.create(this)
    .exclude(image)           // exclude everything in `List<Image>`
    .excludeFiles(files)      // or you can exclude everything in `List<File>` 
    .start(RQ)