design improvements
This commit is contained in:
parent
f083ab8cf0
commit
3ab6cd5690
2 changed files with 9 additions and 4 deletions
|
@ -144,8 +144,6 @@ class Finance extends StatelessWidget {
|
|||
}
|
||||
|
||||
return Text(text);
|
||||
//return Text(
|
||||
// '${DateFormat("EEEE, dd. MMMM yyyy HH:mm", 'de_DE').format(transactions[index].datum)}: ${transactions[index].betrag / 100}€\n${transactions[index].beschreibung}');
|
||||
}
|
||||
|
||||
Icon getIcon(Art art) {
|
||||
|
|
|
@ -82,8 +82,15 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||
child: Text('Page $test'),
|
||||
),
|
||||
Finance(),
|
||||
const Text(
|
||||
'Hier könnten Einstellungen zu Darkmode mit shared_preferences und riverpod sein')
|
||||
ListView(children: const <Widget>[
|
||||
ListTile(
|
||||
leading: Icon(Icons.dark_mode),
|
||||
title: Text(
|
||||
'Hier könnten Einstellungen zu Darkmode mit shared_preferences und riverpod sein',
|
||||
maxLines: 2,
|
||||
),
|
||||
)
|
||||
])
|
||||
][currentPageIndex],
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue