backendless_sdk 0.2.0 backendless_sdk: ^0.2.0 copied to clipboard
Flutter plugin for Backendless SDK. It provides access to the Backendless services that enable the server-side functionality for developing and running mobile and desktop apps.
Backendless SDK for Flutter #
A Flutter plugin enabling integration with Backendless.
Note: This plugin is still under active development. Some APIs may not be available yet while others may change. We will be updating the release history of the plugin and as soon as it reaches the general availability (GA) state, the APIs will be consistent for backward-compatibility.
Feedback and Pull Requests are most welcome!
Getting Started #
Follow the steps below to get started with Backendless Flutter SDK:
STEP 1. Register the plugin
To use this plugin in your Flutter project, add backendless_sdk
as a dependency in your pubspec.yaml file:
dependencies:
backendless_sdk: ^0.2.0
STEP 2. Import the Backendless SDK:
Add the following import to your Dart code
import 'package:backendless_sdk/backendless_sdk.dart';
STEP 3: Initialize the Backendless SDK
Use the following call in your code:
@override
void initState() {
super.initState();
Backendless.initApp(APPLICATION_ID, ANDROID_API_KEY, IOS_API_KEY);
}
The APPLICATION_ID
, ANDROID_API_KEY
and IOS_API_KEY
values must be obtained in Backendless Console:
- Login to your Backendless account and select the application.
- Click the Manage icon from the vertical icon-menu on the left.
- The App Settings section is selected by default. The interface contains values for Application ID and API keys for each supported client-side environment.
- Use the Copy icon to copy the value into the system clipboard.
STEP 4. Use the Backendless APIs.
For example, here is a sample code which stores an object in Backendless database:
Backendless.initApp(APPLICATION_ID, ANDROID_API_KEY, IOS_API_KEY);
// create a Map object. This will become a record in a database table
Map testObject = new Map();
// add a property to the object.
// The property name ("foo") will become a column in the database table
// The property value ("bar") will be stored as a value for the stored record
testObject["foo"] = "bar";
// Save the object in the database. The name of the database table is "TestTable".
Backendless.data.of("TestTable").save(testObject).then(
(response) => print("Object is saved in Backendless. Please check in the console."));