This commit is contained in:
toly
2023-12-16 12:40:32 +08:00
parent ab2778a22b
commit 01fdf966c5
593 changed files with 8995 additions and 27753 deletions

View File

@@ -0,0 +1,21 @@
import 'package:flutter/cupertino.dart';
class MenuMeta {
// 标签
final String label;
final String? path;
// 图标数据
final IconData icon;
// 图标颜色
final Color? color;
const MenuMeta({
required this.label,
this.path,
required this.icon,
this.color,
});
}