designflow_push_notifications 0.0.6 copy "designflow_push_notifications: ^0.0.6" to clipboard
designflow_push_notifications: ^0.0.6 copied to clipboard

Designflow Push Notifications package for Flutter.

Theta Analytics #

A light-weight analytics service for your web, desktop and mobile apps.

Super-easy to use #

Initialize #

To get the credentials, go to Teta > project dashboard > Getting Started

Since you call the .initialize method, you are able to use ThetaAnalytics.instance or ThetaAnalytics.I anywhere in your application

import 'package:theta_analytics/theta_analytics.dart';

Future<void> main() {
  await ThetaAnalytics.initialize();
  
  runApp(
    // Your app...
  );
}

Insert events #

/// Your button
onTap: () {
  final info = await ThetaAnalytics.instance.client.logEvent(
    title: 'test',
    description: 'test',
    props: <String, dynamic>{
      'test': 'test',
    },
  );
}