cofounderella/lib/pages/registration_complete_page....

49 lines
1.4 KiB
Dart
Raw Normal View History

2024-05-20 01:16:54 +02:00
import 'package:flutter/material.dart';
import 'home_page.dart';
class RegistrationCompletePage extends StatelessWidget {
const RegistrationCompletePage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
automaticallyImplyLeading: false, // remove back button
title: const Text('Registration Complete'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Icon(
Icons.check_circle,
color: Colors.green,
size: 100,
),
const SizedBox(height: 20),
const Text(
'Registration completed!',
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
),
const SizedBox(height: 80),
const Text(
2024-05-21 14:01:44 +02:00
"You can enjoy the app now.",
2024-05-20 01:16:54 +02:00
style: TextStyle(fontSize: 18),
),
const SizedBox(height: 20),
ElevatedButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => HomePage()),
);
},
child: const Text("S T A R T"),
),
],
),
),
);
}
}