hurshi / dio-http-cache

http cache lib for Flutter dio like RxCache
Apache License 2.0
274 stars 223 forks source link

please add windows support #110

Open insinfo opened 2 years ago

insinfo commented 2 years ago

please add windows support, i am developing an app for ios, android and windows that depends on this.

clragon commented 2 years ago

You can add windows support yourself:

  1. add the desktop sqflite to your pubspec sqflite_common_ffi: ^2.1.0
  2. call this somewhere before runApp:
    if (Platform.isWindows || Platform.isLinux) {
    sqfliteFfiInit();
    databaseFactory = databaseFactoryFfi;
    }