Home > OS >  which Local relational Data Base for Flutter windows app after 2.10 stable version. Should Use?
which Local relational Data Base for Flutter windows app after 2.10 stable version. Should Use?

Time:02-25

Hello There I want to know is there any way to implement the local relational database for the windows Flutter app. because the flutter 2.10 is here with windows stable..

one of my app have Floor database used for relational database for IOS and ANDROID version of my app.

now I want to create the same app for windows version but Floor is not supported flutter windows.

Now I'm stuck until I get suitable suggestion..

I have seen Hive on Pub.dev many nonSql database.. but I want a relational database..

CodePudding user response:

SQLite should work fine on Windows:

sqflite package

They have an example project that runs on Windows as well as iOS and Android.

CodePudding user response:

Drift is the new version of Floor, it supports all platforms including Windows: https://pub.dev/packages/drift

CodePudding user response:

Actually, Floor works fine with windows too. I've used it in many applications, but not in production mode.

  • Related