Notes without firebase

Is it possible to create a notepad app that allows users to save their written text and create a corresponding title, which would then be displayed in a listview for easy access? Additionally, is it possible to achieve this functionality without using firebase?

Yes of course, you can use the tinydb to save all the users data on the device.

If you want the data to be available online, there are other providers than Google (firebase), or you could use cloudDB or tinyWebDB.

Okay, great to hear that the issue is fixed. I do have one more question though. Can you explain why we need Firebase if we can just save data on the user's device with tinyDB?

Firebase is an online database, for use in sharing data across devices.
If you don't need to share your data and you are happy keeping all your data in one device, then TinyDB should suffice.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.