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.
imagini/web_native/lib/screens/splash/components/body.dart

20 lines
410 B
Dart
Raw Normal View History

2021-01-06 21:12:32 +00:00
import 'package:flutter/material.dart';
class Body extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: RaisedButton(
onPressed: () {
2021-01-23 16:57:07 +00:00
// Back (popping)
// Navigator.pop(context);
// Go to Login Screen
Navigator.pushNamed(context, '/Login');
2021-01-06 21:12:32 +00:00
},
2021-01-23 16:57:07 +00:00
child: Text('Login'),
2021-01-06 21:12:32 +00:00
),
);
}
2021-01-08 02:45:59 +00:00
}