hive_repo 1.4.0 copy "hive_repo: ^1.4.0" to clipboard
hive_repo: ^1.4.0 copied to clipboard

Repositories classes to standardize access to hive boxes for user defined types

Repository functionalities on top of hive

Usage #

Just pass a box to the constructor and use the Repository and LazyRepository methods

import 'package:hive_repo/hive_repo.dart';

main() {

  Hive.init(Directory.systemTemp.path + '/test');
  Hive.registerAdapter(UserAdapter());

  final repository = Repository<User>(Hive.box<User>('_test_user'));

  final List<User> users = await repository.list();
}
0
likes
150
points
32
downloads

Publisher

verified publishermsiviero.dev

Weekly Downloads

Repositories classes to standardize access to hive boxes for user defined types

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

hive, quiver

More

Packages that depend on hive_repo