share_apps 0.1.16 copy "share_apps: ^0.1.16" to clipboard
share_apps: ^0.1.16 copied to clipboard

outdated

Put your app in front of everyone through their peers. Peer-to-peer invitations in a very subtle and simple way.

example/lib/main.dart

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

void main() {
  ShareApps.init(
      appId: '15539901308027672219',
      secreteKey: '5ca001f255007786922623',
      email: 'john@debsmail.com');
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Share App Demo'),
      ),
      body: Center(
        child: Column(
          crossAxisAlignment: CrossAxisAlignment.center,
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            RaisedButton(
              child: Text('Invite Friends'),
              onPressed: () {
                ShareApps.sendInvitation(context: context);
              },
            ),
            RaisedButton(
              child: Text('Invite Friends Background'),
              onPressed: () {
                ShareApps.sendInvitationInBackground(
                    context: context,
                    firstName: 'ABC',
                    lastName: 'XYZ',
                    email: 'xyz@gmail.com',
                    number: '444123456');
              },
            ),
          ],
        ),
      ),
    );
  }
}
5
likes
0
pub points
33%
popularity

Publisher

verified publishershareapps.net

Put your app in front of everyone through their peers. Peer-to-peer invitations in a very subtle and simple way.

Homepage

License

unknown (LICENSE)

Dependencies

contacts_service, device_id, flutter, flutter_user_agent, fluttertoast, http, loading_indicator, permission_handler, shared_preferences, url_launcher, webview_flutter

More

Packages that depend on share_apps