Feature: Implement AppShell with navigation, add Dashboard, Budget, and Settings views, and integrate GoRouter for routing

This commit is contained in:
2025-09-25 17:29:58 +02:00
parent 25e07aef1e
commit 3f515045b2
6 changed files with 356 additions and 89 deletions

View File

@@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class DashboardView extends StatelessWidget {
const DashboardView({super.key});
@override
Widget build(BuildContext context) {
return const Center(child: Text('Dashboard Willkommen bei Finlog'));
}
}