ActionsdownloadImageToGalleryVersion: 4.62On this pagedownloadImageToGallery Downloads an image to the device's local storage. To skip the completion, async has to be used. Field Configurations KeyTypeDescriptionDefault Value"params" (required)Objectundefinednull Parameters KeyTypeDescriptionDefault Value"additionalHeaders"AdditionalHeadersAdditional HTTP headers which will be appended to the request.null"async"BooleanSpecifies whether the action should perform asynchronously.null"field"StringThe name of the querie's returned field.null"progressBarBackground"ColorThe background color of the progress bar when the image is loaded.null"progressBarColor"ColorThe color of the progress bar when the image is loaded.null"query"StringThe name of the query.null"queryParams"ArrayThe list of appended query parameters.null"table"StringThe name of the database table.null"url"StringThe URL of the image to be downloaded (Could be bundle assets).null"urls"ArrayThe list of image URL's to be downloaded (Could be bundle assets).null Inherited From Base ActionBase ActionField ConfigurationsKeyTypeDescriptionDefault Value"dynamicParams"ObjectDynamic params to retrieve data from a specific context e.g. a userSetting.null"leadingDelimiter"StringThe leading mustache delimiter to use.null"params"Object,ArrayObject containing the properties of the action.null"trailingDelimiter"StringThe trailing mustache delimiter to use.null"type"StringType name of the action.null Examples Example 1: Download images to the local storage. Show ExampleHide ExampleDownload the three images specified in the urls param to the local storage.{ "type": "downloadImageToGallery", "params": { "async": true, "urls": [ "asset://downloadImageToGallery_Image01.png", "asset://downloadImageToGallery_Image02.png", "asset://downloadImageToGallery_Image03.png" ] }}