added default locale
This commit is contained in:
parent
496a1f2857
commit
f0415a22da
1 changed files with 2 additions and 1 deletions
|
@ -10,6 +10,7 @@ class Finance extends StatelessWidget {
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
initializeDateFormatting('de_DE');
|
initializeDateFormatting('de_DE');
|
||||||
|
Intl.defaultLocale = 'de_DE';
|
||||||
|
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
|
@ -67,7 +68,7 @@ class Finance extends StatelessWidget {
|
||||||
Text getSubtitle(Transaction transaction) {
|
Text getSubtitle(Transaction transaction) {
|
||||||
String text = '${transaction.amount / 100}';
|
String text = '${transaction.amount / 100}';
|
||||||
text += '€ ';
|
text += '€ ';
|
||||||
text += DateFormat("EEEE, dd. MMMM yyyy HH:mm", 'de_DE')
|
text += DateFormat("EEEE, dd. MMMM yyyy HH:mm")
|
||||||
.format(transaction.date);
|
.format(transaction.date);
|
||||||
if (transaction.description != null) {
|
if (transaction.description != null) {
|
||||||
(text += '\n${transaction.description}');
|
(text += '\n${transaction.description}');
|
||||||
|
|
Loading…
Reference in a new issue