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

Update home_view.dart

parent 63a55676
No related branches found
No related tags found
No related merge requests found
......@@ -14,16 +14,16 @@ class HomeView extends StatelessWidget {
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Column(
const Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: const [
children: [
Icon(Icons.arrow_downward, color: Colors.green, size: 16.0),
Text('Income'),
],
),
const Text('1234.56€')
Text('1234.56€')
],
),
Center(
......@@ -44,16 +44,16 @@ class HomeView extends StatelessWidget {
),
),
),
Column(
const Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: const [
children: [
Icon(Icons.arrow_upward, color: Colors.red, size: 16.0),
Text('Expenses'),
],
),
const Text('1234.56€')
Text('1234.56€')
],
),
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment