This repository has been archived on 2023-11-13. You can view files and clone it, but cannot push or open issues or pull requests.

17 lines
346 B
Dart

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