blitzllama_flutter 0.6.2 blitzllama_flutter: ^0.6.2 copied to clipboard
Flutter plugin for Blitzllama SDK. To know more about Blitzllama, visit https://blitzllama.com.
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:blitzllama_flutter/blitzllama_flutter.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _platformVersion = 'Unknown';
final _blitzllamaFlutterPlugin = BlitzllamaFlutter();
@override
void initState() {
super.initState();
initPlatformState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
String platformVersion;
// Platform messages may fail, so we use a try/catch PlatformException.
// We also handle the message potentially returning null.
try {
BlitzllamaFlutter.init(""); //add test key
new Timer(const Duration(milliseconds: 1000), () {
BlitzllamaFlutter.createUser("bentest1"); // add user id
});
new Timer(const Duration(milliseconds: 10000), () {
BlitzllamaFlutter.setUserEmail("b@gmail.com");
BlitzllamaFlutter.setUserName("ben");
BlitzllamaFlutter.setUserAttribute("age", "12", "number");
BlitzllamaFlutter.triggerEvent("HomeActivity");
});
} on PlatformException {
platformVersion = 'Failed to get platform version.';
}
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Text('Running on: 10.1\n'),
),
),
);
}
}