Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 main.dart 文件中初始化并打开 Hive 数据库框并执行 crud 操作。当我重新加载应用程序时应用程序冻结,但当我删除 Hive.openBox() 后面的“await”关键字时取消冻结; 等待 Hive.openBox(ExpenseBoxName); 但是应用程序将停止执行数据库操作。
第三个片段是我执行 crud 操作的地方
像这样初始化数据库
void main() async { WidgetsFlutterBinding.ensureInitialized(); final document = await getApplicationDocumentsDirectory(); Hive.init(document.path); await Hive.openBox<String>(datbase_name"); runApp(MyApp()); }