skip to Main Content

Flutter/Dart/Firebase Creating User – This expression has a type of 'void' so its value can't be used

I have following code which does not work somehow: Future<void> createUserWithEmailAndPassword() async { //try nutzer erstellen try { UserCredential userCredential = await Auth().createUserWithEmailAndPassword( email: _controllerEmail.text, password: _controllerPassword.text ); } catch (e) { if (e is FirebaseAuthException) { setState(() { errorMessage…

VIEW QUESTION

Flutter countdown deadline audio

I am currently working on a Flutter project and utilizing the circular_countdown_timer package to display a countdown timer. However, I am facing a challenge in implementing a feature where I want to play a "Tic" audio during the last 5…

VIEW QUESTION
Back To Top
Search