> For the complete documentation index, see [llms.txt](https://triyono.gitbook.io/fluttercheatsheet/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://triyono.gitbook.io/fluttercheatsheet/my-note/hive.md).

# Hive

biar tanpa menggunakan await

open hive di main

```
void main() async {

  await Hive.openBox(myUserBox);
```

sekali boxHive open akan open terus , jadi tinggal panggil box tanpa await

```
var _box = Hive.box(myUserBox);

_box.get(boxIsOffline);

```
