Overview
Welcome to the Flutter SDK Installation Guide. This document provides step-by-step instructions for installing and configuring the Ditto SDK, enabling you to sync, query, and insert data seamlessly within your existing Flutter application.
If you’re looking to get started quickly with an existing app we recommend following the Flutter beta Quick Start.
Prerequisites
Before you begin, ensure you have the following installed:
- Installed code editor (preferably Visual Studio Code or Android Studio)
- Flutter SDK installed on your machine
- An existing Flutter application to integrate Ditto into
- Ditto Portal account with a Ditto App (see Getting Playground Token Credentials)
For Android development:
- Android Studio installed on your machine
- A physical Android device or Android emulator
For iOS development:
- macOS with the latest version of Xcode installed
- A physical iOS device or an iOS simulator
Step 1: Add the Ditto Dependency to the Application
Run the following command in your terminal from the root of your application:
For iOS development, add the following permissions to ios/Runner/Info.plist
:
For Android development, add the following permissions to android/app/src/main/AndroidManifest.xml
.
Step 2: Obtain Ditto AppID and Playground Token
Log in to your Ditto Portal account.
Navigate to your application and obtain the App ID and Playground Token. (See Getting Playground Token Credentials for details)
Locate the appID
and playground token
for your application. These are required to initialize the Ditto Live SDK.
Step 3: Import and Initialize the Ditto SDK
Import the SDK in your Dart file where you plan to use it.
Initialize the SDK to obtain an instance of Ditto
. This is the main entry point into all Ditto-related functionality.
Step 4: Creating and Observing Data Store Changes
Insert Data into the Ditto Store
To insert data into the Ditto store, use the following example. This demonstrates inserting a document into a collection named items
:
Call the insertData
function wherever appropriate in your application, such as in a button press handler.
Register an Observer to Listen for Data Store Changes
To observe changes in the data store, register an observer. This example sets up an observer to listen for changes in the items
collection:
Call the observeData
function, typically in the initState
method of a stateful widget to start observing when the widget is initialized.
Remember to cancel your observer in your widget’s dispose()
method to prevent resource leaks
Step 5: Syncing Data
To keep your data in sync across devices and with the Ditto Cloud (Big Peer), you need to register sync subscriptions. Sync subscriptions define the specific data that should be automatically synchronized to the device.
Starting Sync
To start sync on the device you need to call startSync
. This enables this device to sync data with other peers including the Ditto Cloud.
Registering a Subscription
Register a subscription to a collection to keep the data in sync. Below is an example of how to register a subscription to the items
collection:
Call the syncData
function, typically when initializing your Ditto instance.
Step 6: Syncing Data Offline
Once your application is syncing data using Ditto, you can deploy it to multiple local devices, Android emulators, or iOS simulators. You can then disable the internet to observe the devices syncing offline.
Step 7: Troubleshooting
- Ensure that all dependencies are up-to-date by updating to the latest version.
- Contact the Ditto team through Contact Us
Was this page helpful?