Router changes

This commit is contained in:
Juan Gilsanz Polo
2024-02-23 13:06:53 +01:00
parent 25d0e230c6
commit f1e5e3ec71
6 changed files with 91 additions and 76 deletions

13
lib/models/app_route.dart Normal file
View File

@@ -0,0 +1,13 @@
import 'package:flutter/material.dart';
class AppRoute {
final IconData icon;
final String route;
final String name;
const AppRoute({
required this.icon,
required this.route,
required this.name,
});
}