Implemented go router

This commit is contained in:
Juan Gilsanz Polo 2023-10-28 22:38:49 +02:00
parent 2ad739ed4f
commit 621171c5b1
23 changed files with 614 additions and 234 deletions

View file

@ -4,14 +4,12 @@ class AppScreen {
final String name;
final IconData icon;
final PreferredSizeWidget? appBar;
final Widget body;
final Widget? fab;
const AppScreen({
required this.name,
required this.icon,
this.appBar,
required this.body,
this.fab
});
}