16 lines
296 B
Dart
16 lines
296 B
Dart
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,
|
|
});
|
|
}
|