Flutter Tutorial
A Deep Look Into Flutter Databases
Persist Data Over The Lifetime of Your App
There is not one app that doesn’t have to save data. And if you want to persist that data, a database is practically your only option. Plus, if you want to avoid a server and the underlying costs at the start of your developer journey, you’ll need to store the user’s files locally on the individual device.
This is where solutions like SQLite and Hive come in. Since I’ve been working with SQLite, we shall focus on this one…