This commit is contained in:
toly
2023-11-04 08:48:16 +08:00
parent 8ef81ddb33
commit 88cd6fb3b4
130 changed files with 2563 additions and 5327 deletions

View File

@@ -16,7 +16,7 @@ class HoverIconButton extends StatefulWidget {
this.hoverColor,
this.size = 24,
this.defaultColor,
this.cursor = SystemMouseCursors.cell,
this.cursor = SystemMouseCursors.click,
});
@override

View File

@@ -4,6 +4,8 @@ class MenuMeta {
// 标签
final String label;
final String? path;
// 图标数据
final IconData icon;
@@ -12,6 +14,7 @@ class MenuMeta {
const MenuMeta({
required this.label,
this.path,
required this.icon,
this.color,
});