Home > Blockchain >  I am really confused regarding which backend service should i use with flutter?
I am really confused regarding which backend service should i use with flutter?

Time:01-24

I am confused in choosing database service for my flutter application. I started using firebase but as it is based on NoSQL , But if i am getting the need for rows and columns for my data which backend service should i use!.

CodePudding user response:

I think it depends on how you want to access the data. If you're wanting to stream and push notifications, I would stick with Firebase. If you just need to get and post data, focus more on api implementation. With a solid rest api, you can change up your database/backend all you want and just have to update the api, not your app.

I, personally, suggest searching around for data modeling techniques in Firebase. Check out the Fireship channel on youtube. In his channel's videos, search for modeling and you'll find a ton of info on Firebase data modeling. Many will reference Angular, but the techniques are the same.

CodePudding user response:

As you mentioned you want to user Rows and Columns but want a service like Firebase. Well, here's a SQL alternative to Firebase.

Supabase

Typical SQL DB and works just like Firebase. Below is official docs of Flutter and Supabase which you can use to get started :)

Flutter x Supabase Docs

Cheers!

  •  Tags:  
  • Related