flutter_parse 0.1.0 copy "flutter_parse: ^0.1.0" to clipboard
flutter_parse: ^0.1.0 copied to clipboard

outdated

Flutter plugin for managing Parse SDK for both Android and iOS.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:flutter_parse/flutter_parse.dart';

void main() async {
  await FlutterParse.initialize(
      server: 'YOUR_PARSE_SERVER_URL',
      applicationId: 'YOUR_PARSE_APPLICATION_ID',
      clientKey: 'YOUR_PARSE_CLIENT_KEY');
  runApp(MyApp());
}

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

class _MyAppState extends State<MyApp> {

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Flutter Parse Example'),
        ),
      ),
    );
  }
}
15
likes
0
pub points
68%
popularity

Publisher

verified publishermesosfer.com

Flutter plugin for managing Parse SDK for both Android and iOS.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_parse