Build Note App with Firebase Auth + Firestore & Jetpack Compose + MVVM architecture

Поділитися
Вставка
  • Опубліковано 3 жов 2024
  • Hello Hood Coders, in this tutorial we will learn how to create a note application with firebase, build an authentication feature with firebase authentication and note saving with firebase Firestore, and learn how to use firebase together with Jetpack Compose.
    github.com/Hoo...

КОМЕНТАРІ • 28

  • @raheel2692
    @raheel2692 9 місяців тому +1

    This has helped a lot as a base for my project, thank you very much!!

  • @suakaiyoung6113
    @suakaiyoung6113 Рік тому +6

    I not sure why I follow exactly same with u but have a lot of error

  • @ubersticks
    @ubersticks 2 роки тому

    Thank you for doing this - it was enjoyable.

  • @kadircan1862
    @kadircan1862 3 місяці тому

    thank you for this great video .

  • @nastenkaoo
    @nastenkaoo Рік тому

    you are great guy, I hope that it will work after writing codes, good luck to you in new projects

  • @suwilanjisiwale245
    @suwilanjisiwale245 2 роки тому

    Thank you for this tutorial

  • @edycole5543
    @edycole5543 2 роки тому

    Thanks, and request for chart graph from data and push notification with firebase

  • @RaghulS-nl6wx
    @RaghulS-nl6wx 7 місяців тому

    i am facing error in firebase index and cant find the link in logcat to create please help me resolve

  • @ardinugraha_
    @ardinugraha_ Рік тому

    hi sir, i need help i can't load the data from firestore,i follow the exact code,i try to find the solution on internet but still the data won't show in the home page

  • @m4ykey
    @m4ykey Рік тому

    Hi! Do you have in plans to do more tutorials like this in the future for example with retrofit?

    • @HoodLabs
      @HoodLabs  Рік тому

      Yes I will do more tutorials, I already have a tutorial for retrofit in my channel.

  • @avikalprewatkar6026
    @avikalprewatkar6026 11 місяців тому +1

    after exactly following you, still not working
    worst project

    • @HoodLabs
      @HoodLabs  11 місяців тому

      Sorry to hear that what part didn't work?

    • @avikalprewatkar6026
      @avikalprewatkar6026 11 місяців тому +1

      It isn't starting app just crash in beginning
      I am not able to understand from logcat what is getting wrong
      Edit: Problem found while using CircularProgressIndicator but not able to figure out how to solve it

  • @santiagofXD
    @santiagofXD 9 місяців тому

    Hello great video, i followed every step... but at minute 2.07.30 you said "we are going to create this dialogue in a moment" and you never did it, the logic is missing to delete a note :(

    • @raheel2692
      @raheel2692 9 місяців тому +1

      He must've missed it in the video, but I managed to snatch it while he was scrolling through the code lol
      It goes in Home.kt right under the lazy vertical grid. Also I've modified it to work with Material 3
      Here:
      AnimatedVisibility(visible = openDialogue) {
      AlertDialog(onDismissRequest = {
      openDialogue = false
      }, title = { Text(text = "Delete Note?") },
      confirmButton = {
      Button(
      onClick = {
      selectedNote?.documentId?.let {
      homeViewModel?.deleteNote(it)
      }
      openDialogue = false
      },
      colors = ButtonDefaults.buttonColors(containerColor = Color.Red)
      ) {
      Text(text = "Delete")
      }
      },
      dismissButton = {
      Button(onClick = {openDialogue = false }) {
      Text(text = "Cancel")
      }
      })
      }

    • @santiagofXD
      @santiagofXD 9 місяців тому

      @@raheel2692 i did myself 🤣

  • @monumeena23
    @monumeena23 Рік тому

    Nice tutorial man but I am facing an issue my code I set text color black everywhere but in MI devices it's shows white even I set hard-coded but in vivo OPPO working fine please help how can I rid of this 🙏🏻
    NOTE: I am using same color scheme for dark and light

    • @HoodLabs
      @HoodLabs  Рік тому

      Its difficult to debug this without the code as a suggestion try checking your root composable i think there is some place where you're changing the color

  • @monumeena23
    @monumeena23 2 роки тому

    Nice

  • @Abid-zv5qw
    @Abid-zv5qw Рік тому

    Source Code Please any one

  • @raymondmichael4987
    @raymondmichael4987 Рік тому

    Does it work offline?😊