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

onboarding test button moved

parent 09603975
No related branches found
No related tags found
No related merge requests found
......@@ -28,15 +28,6 @@ class _HomeViewState extends State<HomeView> {
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
TextButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const OnboardingView())
);
},
child: const Text('onboarding')
),
const Text(
'Balance',
style: TextStyle(
......@@ -167,7 +158,16 @@ class _HomeViewState extends State<HomeView> {
TransactionListtile(transaction: trn),
TransactionListtile(transaction: trn),
TransactionListtile(transaction: trp),
TransactionListtile(transaction: trn)
TransactionListtile(transaction: trn),
FilledButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const OnboardingView())
);
},
child: const Text('onboarding')
),
],
),
),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment