docs
docs copied to clipboard
Documentation of the Hive database.
Added note to make sure the hive_generator is added as a dependency. I spent about three hours trying to figure out why the build runner wasn't doing code gen before...
Embedding a youtube video through an iframe doesn't not work as intended in .md files. The implemented fix resolves the issue.
This is the "original" code final key = await secureStorage.read(key: 'key'); final encryptionKey = base64Url.decode(key!); print('Encryption key: $encryptionKey'); final encryptedBox= await Hive.openBox('vaultBox', encryptionCipher: HiveAesCipher(encryptionKey)); 1- the variable encryptionKey is declared...
fixes https://github.com/hivedb/hive/issues/664
Currently, the docs are not mentioning that there is a constraint on the custom `typeId`. --- Constraint: `type_registry_impl.dart` ```dart if (!internal) { if (typeId < 0 || typeId > 223)...