Skip to content

Files

Latest commit

b78694f · Dec 15, 2022

History

History
79 lines (50 loc) · 1.94 KB

imagepickerios.md

File metadata and controls

79 lines (50 loc) · 1.94 KB
id title
imagepickerios
🚧 ImagePickerIOS

Removed. Use one of the community packages instead.


Reference

Methods

canRecordVideos()

static canRecordVideos(callback)

canUseCamera()

static canUseCamera(callback)

openCameraDialog()

static openCameraDialog(config, successCallback, cancelCallback)

Parameters:

Name Type Required Description
config object No See below.
successCallback function No See below.
cancelCallback function No See below.

config is an object containing:

  • videoMode : An optional boolean value that defaults to false.

successCallback is an optional callback function that's invoked when the select dialog is opened successfully. It will include the following data:

  • [string, number, number]

cancelCallback is an optional callback function that's invoked when the camera dialog is canceled.


openSelectDialog()

static openSelectDialog(config, successCallback, cancelCallback)

Parameters:

Name Type Required Description
config object No See below.
successCallback function No See below.
cancelCallback function No See below.

config is an object containing:

  • showImages : An optional boolean value that defaults to false.
  • showVideos: An optional boolean value that defaults to false.

successCallback is an optional callback function that's invoked when the select dialog is opened successfully. It will include the following data:

  • [string, number, number]

cancelCallback is an optional callback function that's invoked when the select dialog is canceled.