test_bmrt_flugin 0.0.2
test_bmrt_flugin: ^0.0.2 copied to clipboard
Test Bmrt Pluggin Flutter SDK and Testbmrt reports include video of user actions, network traffic, console logs and many other important traces from your app. Now you know what exactly led to the unex [...]
example/lib/main.dart
import 'dart:io';
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:bmrt_flugin/bmrt_flugin.dart';
/*void main() {
runApp(const MyApp());
}*/
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
await launchBmrt((bool isBugseeLaunched) async {
runApp(const MyApp());
});
}
Future<void> launchBmrt(void Function(bool isBugseeLaunched) appRunner) async {
var bugseeToken = "";
if (Platform.isAndroid) {
bugseeToken = "0c56d0ba-a589-4aae-9f7d-519fdf4f680b";
} else if (Platform.isIOS) {
bugseeToken = "2684adde-711f-475e-b24c-ef84fb1ca2f1";
}
await BmrtFlugin.launch(bugseeToken);
appRunner(true);
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _platformVersion = 'Unknown';
//final _bmrtFluginPlugin = BmrtFlugin();
@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 {
//platformVersion = await _bmrtFluginPlugin.getPlatformVersion() ?? 'Unknown platform version';
} on PlatformException {
platformVersion = 'Failed to get platform version.';
}
/* try {
await _bmrtFluginPlugin.launch(token: "2684adde-711f-475e-b24c-ef84fb1ca2f1");
} on PlatformException {
debugPrint("Some error while launching BMRT");
}*/
// 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;
/* setState(() {
_platformVersion = platformVersion;
});*/
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Text('Running on: $_platformVersion\n'),
),
),
);
}
}