Files
rely/lib/app/navigation/app_destination.dart
T
2026-05-18 20:33:54 +02:00

15 lines
411 B
Dart

import 'package:flutter/material.dart';
/// Typed shell destinations used by the app navigation shell.
enum AppDestination {
shareInbox('Capture', Icons.inbox_rounded),
people('People', Icons.people_alt_rounded),
aiReview('Digest', Icons.rate_review_rounded),
settings('Settings', Icons.settings_rounded);
const AppDestination(this.label, this.icon);
final String label;
final IconData icon;
}