2022-01-16 16:19:01 +00:00
|
|
|
import 'dart:async';
|
|
|
|
|
2022-02-15 18:40:17 +00:00
|
|
|
import 'package:logger/logger.dart';
|
2022-01-29 18:23:10 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2022-01-16 16:19:01 +00:00
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
import 'package:veilid/veilid.dart';
|
2022-02-15 18:40:17 +00:00
|
|
|
import 'package:logger_flutter_viewer/logger_flutter_viewer.dart';
|
2022-01-16 16:19:01 +00:00
|
|
|
|
2022-02-15 18:40:17 +00:00
|
|
|
// Logger
|
|
|
|
var stacklog = Logger(
|
|
|
|
printer: PrettyPrinter(
|
|
|
|
methodCount: 10,
|
|
|
|
errorMethodCount: 10,
|
|
|
|
printTime: true,
|
|
|
|
colors: true,
|
|
|
|
printEmojis: true),
|
|
|
|
output: ScreenOutput());
|
|
|
|
var log = Logger(
|
|
|
|
printer: PrettyPrinter(
|
|
|
|
methodCount: 0,
|
|
|
|
errorMethodCount: 1,
|
|
|
|
printTime: true,
|
|
|
|
colors: true,
|
|
|
|
printEmojis: true,
|
|
|
|
noBoxingByDefault: true,
|
|
|
|
),
|
|
|
|
output: ScreenOutput());
|
|
|
|
var barelog = Logger(
|
|
|
|
printer: PrettyPrinter(
|
|
|
|
methodCount: 0,
|
|
|
|
errorMethodCount: 0,
|
|
|
|
printTime: false,
|
|
|
|
colors: true,
|
|
|
|
printEmojis: true,
|
|
|
|
noBoxingByDefault: true,
|
|
|
|
),
|
|
|
|
output: ScreenOutput());
|
|
|
|
|
|
|
|
class ScreenOutput extends LogOutput {
|
|
|
|
@override
|
|
|
|
void output(OutputEvent event) {
|
|
|
|
LogConsole.output(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Entrypoint
|
2022-01-16 16:19:01 +00:00
|
|
|
void main() {
|
|
|
|
runApp(const MyApp());
|
|
|
|
}
|
|
|
|
|
2022-02-15 18:40:17 +00:00
|
|
|
// Main App
|
2022-01-16 16:19:01 +00:00
|
|
|
class MyApp extends StatefulWidget {
|
|
|
|
const MyApp({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<MyApp> createState() => _MyAppState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _MyAppState extends State<MyApp> {
|
2022-01-29 18:23:10 +00:00
|
|
|
String _veilidVersion = 'Unknown';
|
2022-01-16 16:19:01 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
initPlatformState();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Platform messages are asynchronous, so we initialize in an async method.
|
|
|
|
Future<void> initPlatformState() async {
|
2022-01-29 18:23:10 +00:00
|
|
|
String veilidVersion;
|
2022-01-16 16:19:01 +00:00
|
|
|
// Platform messages may fail, so we use a try/catch PlatformException.
|
|
|
|
// We also handle the message potentially returning null.
|
|
|
|
try {
|
2022-02-14 02:09:43 +00:00
|
|
|
veilidVersion = Veilid.instance.veilidVersionString();
|
2022-01-16 16:19:01 +00:00
|
|
|
} on PlatformException {
|
2022-01-29 18:23:10 +00:00
|
|
|
veilidVersion = 'Failed to get veilid version.';
|
2022-01-16 16:19:01 +00:00
|
|
|
}
|
2022-02-15 18:40:17 +00:00
|
|
|
log.e("Error test");
|
|
|
|
log.w("Warning test");
|
|
|
|
stacklog.i("Info test with stacklog");
|
|
|
|
barelog.d("debug bare-log test");
|
2022-01-16 16:19:01 +00:00
|
|
|
|
|
|
|
// 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(() {
|
2022-01-29 18:23:10 +00:00
|
|
|
_veilidVersion = veilidVersion;
|
2022-01-16 16:19:01 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialApp(
|
|
|
|
home: Scaffold(
|
|
|
|
appBar: AppBar(
|
2022-02-15 18:40:17 +00:00
|
|
|
title: Text('Veilid Plugin Version $_veilidVersion'),
|
2022-01-16 16:19:01 +00:00
|
|
|
),
|
2022-02-15 18:40:17 +00:00
|
|
|
body: LogConsole(dark: Theme.of(context).brightness == Brightness.dark),
|
2022-01-16 16:19:01 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|