cloud_helper 1.0.1 copy "cloud_helper: ^1.0.1" to clipboard
cloud_helper: ^1.0.1 copied to clipboard

PlatformiOSmacOS

A Flutter project for working with iCloud.

cloud_helper #

Plugin for Flutter that allows uploading, deleting and modifying records to iCloud.

Prerequisite #

The following setups are needed in order to use this plugin:

  1. An apple developer account
  2. Created an App ID and iCloud Container ID
  3. Enabled iCloud capability and assigned iCloud Container ID for the App ID
  4. Enabled iCloud capability in Xcode

Refer to the How to set up iCloud Container and enable the capability section for more detailed instructions.

API Usage #

Get instance #

final cloudHelper = await CloudHelper.create('iCloudContainerId');

Get files from iCloud #

final fileList = await cloudHelper.getAllRecords(type: 'recordType');

Upload a file to iCloud #

await cloudHelper.addRecord(
    data: 'recordData',
    id: 'recordId',
    type: 'recordType',
);

Delete a file from iCloud #

await cloudHelper.deleteRecord(id: recordId,);

Modify a file #

await cloudHelper.editRecord(
    id: 'recordId',
    data: 'newData',
);

How to set up iCloud Container and enable the capability #

  1. Log in to your apple developer account and select 'Certificates, IDs & Profiles' from the left navigation.
  2. Select 'Identifiers' from the 'Certificates, IDs & Profiles' page, create an App ID if you haven't done so, and create an iCloud Containers ID. icloud container id
  3. Click on your App ID. In the Capabilities section, select 'iCloud' and assign the iCloud Container created in step 2 to this App ID. assign icloud capability
  4. Open your project in Xcode. Set your App ID as 'Bundle Identifier' if you haven't done so. Click on '+ Capability' button, select iCloud, then tick 'CloudKit' in the Services section and select your iCloud container. xcode capability

References #

Apple Documentation - iOS Data Storage Guidelines

Apple Documentation - Designing for Documents in iCloud

1
likes
110
pub points
0%
popularity

Publisher

verified publisherpmobi.tech

A Flutter project for working with iCloud.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on cloud_helper