SqfliteFlutter警告

aemubtdh  于 2023-05-19  发布在  Flutter
关注(0)|答案(1)|浏览(124)

我在使用sqflite包时遇到了这个警告

*** sqflite warning ***

You are changing sqflite default factory.
Be aware of the potential side effects. Any library using sqflite
will have this factory as the default for all operations.

*** sqflite warning ***

如何删除这些警告
我已添加

sqfliteFfiInit();
databaseFactoryOrNull = databaseFactoryFfi;

在我的虚空中

xiozqbni

xiozqbni1#

databaseFactoryOrNull = null;
sqfliteFfiInit();

我已经在我的虚空中使用了这个。警告不再显示。

相关问题