main #1

Open
fdenzer wants to merge 46 commits from mgl_crew/Mitgliederladen:main into main
Showing only changes of commit f0415a22da - Show all commits

View file

@ -10,6 +10,7 @@ class Finance extends StatelessWidget {
@override
Widget build(BuildContext context) {
initializeDateFormatting('de_DE');
Intl.defaultLocale = 'de_DE';
return Scaffold(
appBar: AppBar(
@ -67,7 +68,7 @@ class Finance extends StatelessWidget {
Text getSubtitle(Transaction transaction) {
String text = '${transaction.amount / 100}';
text += '';
text += DateFormat("EEEE, dd. MMMM yyyy HH:mm", 'de_DE')
text += DateFormat("EEEE, dd. MMMM yyyy HH:mm")
.format(transaction.date);
if (transaction.description != null) {
(text += '\n${transaction.description}');