第一次提交

This commit is contained in:
2025-06-27 20:20:51 +08:00
commit 33f86752de
153 changed files with 6743 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
class DestinationItem {
final String label;
final IconData icon;
final Widget child;
final String? title; // 可选标题
const DestinationItem({
required this.label,
required this.icon,
required this.child,
this.title,
});
}