mirror of
https://ghfast.top/https://github.com/StarCitizenToolBox/app.git
synced 2025-05-14 02:31:24 +08:00
19 lines
440 B
Dart
19 lines
440 B
Dart
import 'package:fluent_ui/fluent_ui.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
|
|
class ToolsLogAnalyzeDialogUI extends HookConsumerWidget {
|
|
const ToolsLogAnalyzeDialogUI({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
return ScaffoldPage(
|
|
header: const PageHeader(
|
|
title: Text("Log 分析器"),
|
|
),
|
|
content: Column(
|
|
children: [],
|
|
),
|
|
);
|
|
}
|
|
}
|