first commit

This commit is contained in:
编码猿
2024-09-27 01:32:49 +08:00
commit 28ebe05a64
7399 changed files with 1174529 additions and 0 deletions

View File

@@ -0,0 +1 @@
0cbcbc38-50fe-4a58-aa48-e8d658c4fe89

View File

@@ -0,0 +1 @@
# 全局事件 事件总线控制,进行页面主体间通讯

View File

@@ -0,0 +1,6 @@
// ignore: camel_case_types
class indexLayoutChangeEvent {
// ignore: non_constant_identifier_names
String LayoutStyle;
indexLayoutChangeEvent(this.LayoutStyle);
}

View File

@@ -0,0 +1,5 @@
// ignore: camel_case_types
class themeChangeEvent {
bool dark;
themeChangeEvent(this.dark);
}