You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Flutter library for custom analytics management, designed to streamline integration and usage for efficient event tracking and reporting in Dart applications.
4
+
5
+
## Features
6
+
7
+
-**Custom Event Tracking**: Easily log and manage events in your application.
8
+
-**Screen View Logging**: Track screen views to gain insights into user navigation.
9
+
-**Robust Reporting**: Access detailed reports on user interactions and events.
10
+
11
+
## Getting Started
12
+
13
+
### Installation
14
+
15
+
To use the Analytix library, add the following dependency to your `pubspec.yaml` file:
16
+
17
+
```yaml
18
+
dependencies:
19
+
analytix: ^1.0.0 # Replace with the latest version
20
+
```
21
+
22
+
### Importing the Library
23
+
Import the library in your Dart files:
24
+
25
+
```dart
26
+
import 'package:analitix/analitix.dart';
27
+
```
28
+
29
+
### Basic Usage
30
+
Here’s a quick example of how to integrate Analytix into your Flutter application:
0 commit comments