veilid/veilid-flutter/example/lib/main.dart

105 lines
2.6 KiB
Dart
Raw Normal View History

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