revenuecat 1.0.5 copy "revenuecat: ^1.0.5" to clipboard
revenuecat: ^1.0.5 copied to clipboard

Deprecated! Please use `purchases_flutter` instead.

example/lib/main.dart

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

import 'package:flutter/services.dart';
import 'package:revenuecat/revenuecat.dart';

void main() => runApp(new MyApp());

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

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
    initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String platformVersion;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      await RevenueCat.setup("YOUR_API_KEY_HERE", null);
      var entitlements = await RevenueCat.getEntitlements();
      print("Entitlements are $entitlements");
      var products = await RevenueCat.getProducts(["com.postmuseapp.designer.sub.monthly"]);
      print("Products are $products");
      platformVersion = await RevenueCat.getAppUserID();
    } catch (e, s) {
      platformVersion = 'Failed with $e $s';
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    setState(() {
      _platformVersion = platformVersion;
    });
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new Scaffold(
        appBar: new AppBar(
          title: const Text('RevenueCat example app'),
        ),
        body: new Center(
          child: new Text('RevenueCat user id: $_platformVersion\n'),
        ),
      ),
    );
  }
}
2
likes
30
pub points
29%
popularity

Publisher

unverified uploader

Deprecated! Please use `purchases_flutter` instead.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on revenuecat