flutter_mongo_stitch 0.2.0 copy "flutter_mongo_stitch: ^0.2.0" to clipboard
flutter_mongo_stitch: ^0.2.0 copied to clipboard

discontinuedreplaced by: flutter_mongodb_realm
outdated

A Flutter plugin for using services of the serverless platform MongoDB Stitch.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_mongo_stitch/flutter_mongo_stitch.dart';
import 'package:flutter_mongo_stitch_example/login_screen.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await MongoStitchClient.initializeApp("mystitchapp-fjpmn");
  runApp(MyApp());

}

class MyApp extends StatelessWidget{
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: LoginScreen(),
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.green
      ),
    );
  }

}
15
likes
0
pub points
11%
popularity

Publisher

unverified uploader

A Flutter plugin for using services of the serverless platform MongoDB Stitch.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

bson, extension, flutter, streams_channel

More

Packages that depend on flutter_mongo_stitch