Basic Mobile App Framework

This commit is contained in:
2021-01-23 11:57:07 -05:00
parent 997806b7f0
commit 28649bda73
19 changed files with 309 additions and 77 deletions

View File

@@ -6,10 +6,11 @@ class Body extends StatelessWidget {
return Center(
child: RaisedButton(
onPressed: () {
Navigator.pop(context);
// Go to Login Screen
Navigator.pushNamed(context, '/Gallery');
},
child: Text('Go back!'),
child: Text('Login'),
),
);
}
}
}