backendless_sdk 7.1.5 copy "backendless_sdk: ^7.1.5" to clipboard
backendless_sdk: ^7.1.5 copied to clipboard

outdated

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.

example/lib/main.dart

import 'package:backendless_sdk/backendless_sdk.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  static const String APP_ID = "YOUR_APP_ID";
  static const String ANDROID_KEY = "YOUR_ANDROID_KEY";
  static const String IOS_KEY = "YOUR_IOS_KEY";

  @override
  void initState() {
    super.initState();
    Backendless.initApp(
        applicationId: APP_ID, androidApiKey: ANDROID_KEY, iosApiKey: IOS_KEY);
  }

  void buttonPressed() async {
    // 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."));
    */
    DataQueryBuilder queryBuilder = DataQueryBuilder()..relationsDepth = 2;

    List<Map> data =
        await Backendless.data.of('Conversation').find(queryBuilder);
    print(data);
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
            child: Column(
          crossAxisAlignment: CrossAxisAlignment.center,
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            ElevatedButton(child: Text("Press"), onPressed: buttonPressed)
          ],
        )),
      ),
    );
  }
}
46
likes
0
pub points
80%
popularity

Publisher

unverified uploader

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.

Homepage

License

unknown (LICENSE)

Dependencies

collection, flutter, flutter_web_plugins, http, js, reflectable

More

Packages that depend on backendless_sdk