You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.8 KiB
Dart
66 lines
1.8 KiB
Dart
5 years ago
|
import 'package:famedlysdk/famedlysdk.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class LogViewer extends StatefulWidget {
|
||
|
@override
|
||
|
_LogViewerState createState() => _LogViewerState();
|
||
|
}
|
||
|
|
||
|
class _LogViewerState extends State<LogViewer> {
|
||
|
Level logLevel = Level.debug;
|
||
|
double fontSize = 14;
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
final outputEvents = Logs()
|
||
|
.outputEvents
|
||
|
.where((e) => e.level.index >= logLevel.index)
|
||
|
.toList();
|
||
|
return Scaffold(
|
||
|
backgroundColor: Colors.black,
|
||
|
appBar: AppBar(
|
||
|
title: Text(logLevel.toString()),
|
||
|
leading: BackButton(),
|
||
|
actions: [
|
||
|
IconButton(
|
||
|
icon: Icon(Icons.zoom_in_outlined),
|
||
|
onPressed: () => setState(() => fontSize++),
|
||
|
),
|
||
|
IconButton(
|
||
|
icon: Icon(Icons.zoom_out_outlined),
|
||
|
onPressed: () => setState(() => fontSize--),
|
||
|
),
|
||
|
PopupMenuButton<Level>(
|
||
|
itemBuilder: (context) => Level.values
|
||
|
.map((level) => PopupMenuItem(
|
||
|
value: level,
|
||
4 years ago
|
child: Text(level.toString()),
|
||
5 years ago
|
))
|
||
|
.toList(),
|
||
|
onSelected: (Level level) => setState(() => logLevel = level),
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
body: ListView.builder(
|
||
|
itemCount: outputEvents.length,
|
||
|
itemBuilder: (context, i) => SingleChildScrollView(
|
||
|
scrollDirection: Axis.horizontal,
|
||
4 years ago
|
child: Text(outputEvents[i].toDisplayString()),
|
||
5 years ago
|
),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
4 years ago
|
extension on LogEvent {
|
||
|
String toDisplayString() {
|
||
|
var str = '# $title';
|
||
|
if (exception != null) {
|
||
|
str += ' - ${exception.toString()}';
|
||
5 years ago
|
}
|
||
4 years ago
|
if (stackTrace != null) {
|
||
|
str += '\n${stackTrace.toString()}';
|
||
5 years ago
|
}
|
||
4 years ago
|
return str;
|
||
5 years ago
|
}
|
||
|
}
|