routes top-level constant Other

Map<String, ({IconData icon, String path, String text})> const routes

Static data about the routes of the ReVoiceMe app. Contains the path, text and icon for each route.

{@category Other}

Implementation

const Map<String, ({String path, String text, IconData icon})> routes =
    <String, ({String path, String text, IconData icon})>{
  "home": (path: "/", text: "Hauptseite", icon: Icons.home),
  "configurator": (
    path: "/configurator",
    text: "Konfiguration",
    icon: Icons.settings
  ),
};