Last updated:
0 purchases
flutter parse
Flutter Parse #
Plugin for managing and accessing Parse Server for Dart and Flutter.
Features:
ParseACL
ParseCloud
ParseConfig
ParseFile
ParseGeoPoint
ParseLiveQuery
ParseObject
ParseQuery
ParseRole
ParseSchema
ParseSession
ParseUser
Installation #
Add to pubspec.yaml:
dependencies:
flutter_parse: ^1.0.0
copied to clipboard
Import Library #
import 'package:flutter_parse/flutter_parse.dart';
copied to clipboard
Initializing Library #
void main() {
ParseConfiguration config = ParseConfiguration(
server: 'YOUR_PARSE_SERVER_URL',
applicationId: 'YOUR_PARSE_APPLICATION_ID',
clientKey: 'YOUR_PARSE_CLIENT_KEY',
localStorage: Storage("path/to/writable/data"),
);
Parse.initialize(config);
runApp(MyApp());
}
copied to clipboard
Create Object #
final object = ParseObject(className: 'Beacon')
..set('proximityUUID', 'CB10023F-A318-3394-4199-A8730C7C1AEC')
..set('major', 1)
..set('enabled', true)
..set('timestamp', DateTime.now());
await object.save();
copied to clipboard
Register User #
final user = ParseUser()
..username = 'alan'
..password = 'maulana';
await user.signUp();
copied to clipboard
Query Object #
final query = ParseQuery(className: 'Beacon')
..whereEqualTo('proximityUUID', 'CB10023F-A318-3394-4199-A8730C7C1AEC')
..whereLessThanOrEqualTo('major', 10);
final listObjects = await query.find();
copied to clipboard
Author #
Parse Dart plugin is developed by Eyro Labs. You can contact me at [email protected].
License #
BSD License
See LICENSE
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.