feat: desktop_multi_window Support

This commit is contained in:
2025-03-16 17:14:45 +08:00
parent b18024a8ce
commit f5f3e4753c
17 changed files with 588 additions and 163 deletions

View File

@@ -0,0 +1,18 @@
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: [],
),
);
}
}