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

@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
class Body extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: RaisedButton(
onPressed: () {
// Back (popping)
// Navigator.pop(context);
// Go to Login Screen
Navigator.pushNamed(context, '/Login');
},
child: Text('Login'),
),
);
}
}