11 lines
258 B
Dart
11 lines
258 B
Dart
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'));
|
||
}
|
||
}
|