v3
This commit is contained in:
18
lib/components/toly_ui/navigation/menu_meta.dart
Normal file
18
lib/components/toly_ui/navigation/menu_meta.dart
Normal file
@@ -0,0 +1,18 @@
|
||||
import 'package:flutter/cupertino.dart';
|
||||
|
||||
class MenuMeta {
|
||||
// 标签
|
||||
final String label;
|
||||
|
||||
// 图标数据
|
||||
final IconData icon;
|
||||
|
||||
// 图标颜色
|
||||
final Color? color;
|
||||
|
||||
const MenuMeta({
|
||||
required this.label,
|
||||
required this.icon,
|
||||
this.color,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user