Ref: Passt Linter-Rules an

This commit is contained in:
2025-12-22 03:34:15 +01:00
parent 92fec89333
commit 7a76f0d40e
4 changed files with 18 additions and 19 deletions

View File

@@ -14,10 +14,10 @@ class Dashboard extends StatelessWidget {
/// [context] ist der Build-Kontext
@override
Widget build(final BuildContext context) {
const double currentBalance = 4820.75;
const currentBalance = 4820.75;
const double previousMonthBalance = 4300;
final Map<String, double> monthlyBalance = <String, double>{
final monthlyBalance = <String, double>{
'Jan': 1200.0,
'Feb': 900.0,
'Mär': 1100.0,
@@ -26,7 +26,7 @@ class Dashboard extends StatelessWidget {
'Jun': 1050.0,
};
final List<Map<String, Object>> recentTransactions = <Map<String, Object>>[
final recentTransactions = <Map<String, Object>>[
<String, Object>{'name': 'Supermarkt', 'amount': -45.50},
<String, Object>{'name': 'Gehalt', 'amount': 2500.00},
<String, Object>{'name': 'Miete', 'amount': -900.00},