trsurveys 1.3.0 copy "trsurveys: ^1.3.0" to clipboard
trsurveys: ^1.3.0 copied to clipboard

PlatformAndroidiOS
unlistedoutdated

TheoremReach Surveys for Android & iOS

example/lib/main.dart

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

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(MyApp());
}

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

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    TheoremReach.instance
        .init(apiToken: 'api_token', userId: 'user_id');
    TheoremReach.instance.setOnRewardListener(onTheoremReachReward);
    TheoremReach.instance
        .setRewardCenterClosed(onTheoremReachRewardCenterClosed);
    TheoremReach.instance
        .setRewardCenterOpened(onTheoremReachRewardCenterOpened);
    TheoremReach.instance
        .setSurveyAvaiableListener(onTheoremReachSurveyAvailable);
    super.initState();
  }

  void onTheoremReachReward(int quantity) {
    print('TR: $quantity');
  }

  void onTheoremReachSurveyAvailable(int survey) {
    print('TR: $survey');
  }

  void onTheoremReachRewardCenterClosed() {
    print('TR: closed');
  }

  void onTheoremReachRewardCenterOpened() {
    print('TR: opened');
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
            child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            ElevatedButton(
              child: Text("Launch TheoremReach"),
              onPressed: () => TheoremReach.instance.show(),
            ),
            ElevatedButton(
              child: Text("Launch TheoremReach Placement"),
              onPressed: () => TheoremReach.instance.show(),
            )
          ],
        )),
      ),
    );
  }
}
2
likes
130
pub points
0%
popularity

Publisher

verified publisheranavrinapps.com

TheoremReach Surveys for Android & iOS

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on trsurveys