15 lines
411 B
Dart
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;
|
|
}
|