mirror of https://github.com/evanferrao/mynotes
117 lines
3.6 KiB
Dart
117 lines
3.6 KiB
Dart
import 'package:firebase_auth/firebase_auth.dart';
|
|
import 'package:firebase_core/firebase_core.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:mynotes/constants/routes.dart';
|
|
import 'package:mynotes/firebase_options.dart';
|
|
import 'dart:developer' as devtools show log;
|
|
import 'package:mynotes/utilities/show_error_dialog.dart';
|
|
|
|
class RegisterView extends StatefulWidget {
|
|
const RegisterView({super.key});
|
|
|
|
@override
|
|
State<RegisterView> createState() => _RegisterViewState();
|
|
}
|
|
|
|
class _RegisterViewState extends State<RegisterView> {
|
|
late final TextEditingController _email;
|
|
late final TextEditingController _password;
|
|
|
|
@override
|
|
void initState() {
|
|
_email = TextEditingController();
|
|
_password = TextEditingController();
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_email.dispose();
|
|
_password.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('Register', style: TextStyle(color: Colors.white)),
|
|
backgroundColor: Colors.blue),
|
|
body: Column(
|
|
children: [
|
|
TextField(
|
|
controller: _email,
|
|
enableSuggestions: false,
|
|
autocorrect: false,
|
|
keyboardType: TextInputType.emailAddress,
|
|
decoration: const InputDecoration(
|
|
hintText: 'Enter your email here',
|
|
)),
|
|
TextField(
|
|
controller: _password,
|
|
obscureText: true,
|
|
enableSuggestions: false,
|
|
autocorrect: false,
|
|
decoration: const InputDecoration(
|
|
hintText: 'Enter your password here',
|
|
)),
|
|
TextButton(
|
|
onPressed: () async {
|
|
final email = _email.text;
|
|
final password = _password.text;
|
|
try {
|
|
await FirebaseAuth.instance.createUserWithEmailAndPassword(
|
|
email: email,
|
|
password: password,
|
|
);
|
|
final user = FirebaseAuth.instance.currentUser;
|
|
await user?.sendEmailVerification();
|
|
Navigator.of(context).pushNamed(verifyEmailRoute);
|
|
} on FirebaseAuthException catch (e) {
|
|
if (e.code == 'weak-password') {
|
|
await showErrorDialog(
|
|
context,
|
|
'Weak Password',
|
|
);
|
|
} else if (e.code == 'email-already-in-use') {
|
|
await showErrorDialog(
|
|
context,
|
|
'Email already in use',
|
|
);
|
|
} else if (e.code == 'invalid-email') {
|
|
await showErrorDialog(
|
|
context,
|
|
'Invalid Email',
|
|
);
|
|
} else {
|
|
await showErrorDialog(
|
|
context,
|
|
e.toString(),
|
|
);
|
|
}
|
|
} catch (e) {
|
|
await showErrorDialog(
|
|
context,
|
|
e.toString(),
|
|
);
|
|
devtools.log(e.toString());
|
|
}
|
|
},
|
|
child: const Text('Register', style: TextStyle(color: Colors.blue)),
|
|
),
|
|
TextButton(
|
|
onPressed: () {
|
|
Navigator.of(context).pushNamedAndRemoveUntil(
|
|
loginRoute,
|
|
(route) => false,
|
|
);
|
|
},
|
|
child: const Text('Already have an account? Login here',
|
|
style: TextStyle(color: Colors.blue)),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|