designflow_push_notifications 0.0.9 copy "designflow_push_notifications: ^0.0.9" to clipboard
designflow_push_notifications: ^0.0.9 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',
    },
  );
}
0
likes
120
points
229
downloads

Publisher

unverified uploader

Weekly Downloads

Designflow Push Notifications package for Flutter.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

BSD-3-Clause (license)

Dependencies

firebase_messaging, flutter, flutter_local_notifications, light_logger

More

Packages that depend on designflow_push_notifications