Skip to content
Snippets Groups Projects
Commit 2f140522 authored by Florian Schindler's avatar Florian Schindler
Browse files

Update home_view.dart

parent 6b60ab00
No related branches found
No related tags found
No related merge requests found
......@@ -175,9 +175,7 @@ class _HomeViewState extends State<HomeView> {
physics: const NeverScrollableScrollPhysics(),
shrinkWrap: true,
itemCount: transContr.transactionsList.length <= 25 ? transContr.transactionsList.length : 25,
itemBuilder: (context, index) {
return TransactionListtile(transaction: transContr.transactionsList[index]);
},
itemBuilder: (context, index) => TransactionListtile(transaction: transContr.transactionsList[index])
);
},
),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment