import 'package:firebase_auth/firebase_auth.dart'; import '../main.dart'; class AuthService { register(String pseudo, String email, String password) async { try { final data = await FirebaseAuth.instance.createUserWithEmailAndPassword( email: email, password: password, ); final user = { "mail": email, "pseudo": pseudo, "phone_number": "", "picture": "https://media.licdn.com/dms/image/D4E03AQHvc_b89ogFtQ/profile-displayphoto-shrink_400_400/0/1665060931103?e=1695859200&v=beta&t=wVLbxqeokYiPJ13nJ3SMq97iZvcm3ra0ufWFZCSzhjg", "friends": [] }; MyApp.db .collection("users") .doc(data.user?.uid) .set(user) .then((value) => print("User Added")) .catchError((error) => print("Failed to add user: $error")); } on FirebaseAuthException catch (e) { if (e.code == 'weak-password') { throw ('The password provided is too weak.'); } else if (e.code == 'email-already-in-use') { throw ('The account already exists for that email.'); } } catch (e) { throw (e); } } login(String email, String password) async { try { await FirebaseAuth.instance .signInWithEmailAndPassword(email: email, password: password); } on FirebaseAuthException { rethrow; } } void signOut() async { await FirebaseAuth.instance.signOut(); } }