You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
621 B
26 lines
621 B
2 years ago
|
import 'package:flutter/foundation.dart';
|
||
|
import 'package:hive/hive.dart';
|
||
|
import 'package:path_provider/path_provider.dart';
|
||
|
|
||
|
class HiveStore {
|
||
|
static Box? _appBox;
|
||
|
|
||
|
static Box? get appBox => _appBox;
|
||
|
static Box? _userBox;
|
||
|
|
||
|
static Box? get userBox => _userBox;
|
||
|
static Box? _dataBox;
|
||
|
|
||
|
static Box? get dataBox => _dataBox;
|
||
|
|
||
|
static Future init() async {
|
||
|
if (!kIsWeb) {
|
||
|
var dir = await getApplicationDocumentsDirectory();
|
||
|
Hive.init(dir.path);
|
||
|
_appBox = await Hive.openBox('app');
|
||
|
_userBox = await Hive.openBox('userBox');
|
||
|
_dataBox = await Hive.openBox('dataBox');
|
||
|
}
|
||
|
}
|
||
|
}
|