snowplow_tracker 0.1.0 snowplow_tracker: ^0.1.0 copied to clipboard
A package for tracking Snowplow events in Flutter apps
// Copyright (c) 2022 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
// You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the Apache License Version 2.0 is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
import 'package:flutter/material.dart';
import 'package:snowplow_tracker/snowplow_tracker.dart';
import 'main_page.dart';
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
/// create a Snowplow tracker instance
final SnowplowTracker tracker = await Snowplow.createTracker(
namespace: "ns1",
endpoint: const String.fromEnvironment('ENDPOINT',
defaultValue: 'http://0.0.0.0:9090'),
trackerConfig: const TrackerConfiguration(
webPageContext: false,
webActivityTracking:
WebActivityTracking(minimumVisitLength: 15, heartbeatDelay: 10)),
gdprConfig: const GdprConfiguration(
basisForProcessing: 'consent',
documentId: 'consentDoc-abc123',
documentVersion: '0.1.0',
documentDescription:
'this document describes consent basis for processing'),
subjectConfig: const SubjectConfiguration(userId: 'XYZ'));
runApp(MyApp(tracker: tracker));
}
class MyApp extends StatefulWidget {
final SnowplowTracker tracker;
const MyApp({Key? key, required this.tracker}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> with WidgetsBindingObserver {
@override
Widget build(BuildContext context) {
SnowplowTracker tracker = widget.tracker;
return MaterialApp(
title: 'Demo App',
home: MainPage(tracker: tracker),
navigatorObservers: [tracker.getObserver()]);
}
}