Hive (Flutter Tutorial) – Lightweight & Fast NoSQL Database in Pure Dart

Hive (Flutter Tutorial) – Lightweight & Fast NoSQL Database in Pure Dart

Reso Coder

4 года назад

99,353 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Zubair Malik
Zubair Malik - 25.03.2023 11:28

how i can get the same box value on other page but within same project

Ответить
Keith Bacalso
Keith Bacalso - 15.07.2022 13:40

Compact is a deep english word, it couldve been better if you shown an animation of how it works under the hood(like showing a real world example). I really did not understand seeing the `compactStrategy` and cant image how it works under the hood. However it is a good tutorial tho. I just do not get the use of the `compactStrategy`.

Ответить
Hüseyin Yonca
Hüseyin Yonca - 25.05.2022 21:13

Firebase set do hive ?

Ответить
Amin Samad
Amin Samad - 05.03.2022 21:08

Does it support windows? And can I back up my data and load it on another platform?

Ответить
Sampelmind81
Sampelmind81 - 18.02.2022 00:30

Is hive able to handle millions of items, is there a limit?

Ответить
Radu Roț
Radu Roț - 12.01.2022 15:42

Great tutorial. Is there a flutter hive client/data visualiser to inspect boxes?

Ответить
Ismail shah
Ismail shah - 13.11.2021 21:00

How can I add unique data in hive box

Ответить
Ismail shah
Ismail shah - 13.11.2021 18:51

Your content saved my day.... ❤️❤️❤️❤️ Great content...... Keep posting bro you are amazing.....

Ответить
Brendan Chatt
Brendan Chatt - 11.11.2021 20:07

12:356 tehe

Ответить
Brendan Chatt
Brendan Chatt - 11.11.2021 19:20

You're really important to the community, Reso! Thanks!

Ответить
Kartik Shrivastava
Kartik Shrivastava - 29.09.2021 09:01

What is the search performance of hive? In case of millions of entries, is it suitable?

Ответить
Armağan Gök
Armağan Gök - 27.08.2021 10:43

where is the starter project link? please type it down I could not find it

Ответить
Armağan Gök
Armağan Gök - 13.08.2021 09:10

it has been 2 years you should update codes!

Ответить
abdelrahman abied
abdelrahman abied - 25.07.2021 04:22

new code of listview is
ValueListenableBuilder(
valueListenable: contacts.listenable(),
builder: (context, box, child) {
return ListView.builder(
itemCount: contacts.length,
itemBuilder: (context, index) {
final contact = contacts.get(index) as Contact;
return ListTile(
title: Text(contact.name),
subtitle: Text(contact.age.toString()),
);
});
})

Ответить
43_ARSHAD SAIYED
43_ARSHAD SAIYED - 11.07.2021 11:17

Which plugin you are using for brackets?

Ответить
Pradeep Kumar Reddy Kondreddy
Pradeep Kumar Reddy Kondreddy - 13.06.2021 09:24

Where are we defining box name as contacts ?

Ответить
Hoang Lai
Hoang Lai - 01.06.2021 06:56

Can you give me the name of the theme u used for your vscode?

Ответить
vivek kumar
vivek kumar - 31.05.2021 11:01

What path we should give for flutter web?

Ответить
old men ✔
old men ✔ - 30.04.2021 11:39

Hey my question is do I need to ask for permission from user something like internal storage permission etc, or I can simply use it without permission as it is and in what file format it stores your data and where 🙄🙄 please help me out

Ответить
Nathan Zabaldo
Nathan Zabaldo - 24.04.2021 16:31

Great walk through of Hive, but outdated. Lots of updates in current version 2.0.4 not covered in your tutorial. Would be great to see an updated version. E.g. typeId is required to generate type adapter now and when registering an adapter, typeId cannot be passed as shown in video. I'm sure it's a pain to stay current with updates on packages. Problem is you make tutorials that are too good so we expect you'll keep them current with every minor version update of any package. :)

Ответить