"I'd love to see a video tutorial on creating a Flutter app that seamlessly syncs data between Hive and Firebase, focusing on implementing an offline-first approach. This would be incredibly helpful for developers looking to build robust and efficient mobile apps. Looking forward to your take on this!"
Wow, really easy to use and understand. Thank you for the vid. I'm making something like a game show infographics app where I need to put contestants' names up. This can be a great way to implement it.
@@createdbykoko Going quite well. I also adopted the LinearPercentIndicator you covered in a video and played around with the settings, did some logics and maths here and there too. Doing projects like this is a great way to learn.
Please koko Make tutorial about full e_commerce app with every thing 🙏you are great man 💜and your way to explain any thing it is very easy and helpful, 💚
Thanks MitchKoko for your tutorials, you're an amazing teacher. I have a request. Please could you do well to take a tutorial on a flutter getx method for an auto response chat. And please don't speed up the video. Thank you.
@createdbykoko loving it so far. Just finished watching all the widgets. Of course, I can't even write any one of these widgets so far, but it is giving me a general idea of the complexity. I feel it very easy so far. But when I come to the ui section then I will find it the real truth. I love how you make your video simple, short, and to the point and teaching professionals things in no time. I think I can become a professional in a month or two. If I continuously watch your videos every day and spend 3 to 4 hours a day. Amazing teaching skills 👏
On Firebase/Firestore you'd need to make a "messages" collection, and read the messages to that collection using a stream in the order of "createdAt" (which is a variable you need to create using Timestamp.now()), and post to the collection.
Hey Mitch, thanks a million for this great video! I've been searching for a suitable database option for my app and hive seems like a perfect fit. The only thing I couldn't find yet, is how to prepopulate the database/box. Is that possible? I'd like to repopulate the database with a few list of climbing grades, counts, booleans, etc. Would really appreciate a small hint if that's possible and maybe where I can find information on implementing this. Thanks a million and keep it up! Yannic
I've really been wondering, how do you present your apps on a mobile screen like that? Would love to do that as well if it doesn't involve crazy video editing
Thank you Mitch, that explained the concept of Local storage very well even to a newbie like me, I was trying to setup ObjectBox but I gave up, too complicated :(, I have a couple questions about using Hive: 1. I am trying to capture and store email addresses from landing page using TextFormField, how can I do that using Hive? 2. do you know if there is a 'Control Panel/Log' to list/view database content? thanks again and keep up the good work
Well for the 1st question every textFormField has an associated controller, from there you can extract the emails, and set a Function that submits the info to the database. With hive you create the database and with .add command you add it to the list and it will be saved. And to view database content, well, you can just create a print statement that reads the contents of the list to which you keep adding items in 1.
Thank you! It has really helped me improve. I don't handle this part well but I have no problem implementing it. Now I have a question how to implement that method Local Storage • HIVE • Firebase × FLUTTER. If it is possible to add it in this tutorial it would be excellent.
yes, a simple database, only in sql you can prepare the mybase.sql file in advance and insert data into it through sqlbrowser, but are there similar functions for hive?
Another simple, easy-to-follow tutorial - thanks for taking the time to put these together. I'm curious if anyone is having trouble getting this to work on M1 Mac? I keep getting a cocoapods error ("Cocoapods not installed or not in valid state" when I try to run the code. I've uninstalled cocoapods, reinstalled with Homebrew but still no dice. Very frustrating.
**fixed** When I click on the lightbulb for me there is no import hive library. Only Create and Extract. I'm using Windows 11 and everything is current. No longer an Issue. I'm using VS Code so in terminal I ran "flutter pub add hive" and this is the following - "hive" is already in "dependencies". Will try to update the constraint. So after that everything seems to work.
Hey bro, I needed help! I am making a wallpaper app linked to firebase.. I wanted to know, how can I serve the user with wallpapers related to a specific keyword? Like for eg. if a user searches for Lamborghini, he should get wallpapers of only Lamborghini and not other cars and wallpapers
@@wykeless Okay you mean that I should add a keyword for the images related to them and then in the code, I should add those keywords, and connect it to the search bar and the database
Hive is significantly faster, than shared preferences, and sqlite is for different use cases as sqlite is for relational databases, in cases where you need to do simple things and you don't need queries to search for info Hive makes more sense.
@@createdbykoko Hive slow, stores the entire database in memory, can beat the database and block the entire application, does not work with isolates, no migrations, no ACID, no transactions
@@createdbykoko I myself am a junior, and I don’t know much about it, but all the seniors with whom I spoke kept saying that it’s better not to use hive
🥷🏽 FOLLOW ME
Patreon: www.patreon.com/mitchkoko/
Instagram: instagram.com/createdbykoko/
Twitter: twitter.com/createdbykoko/
TikTok: www.tiktok.com/@createdbykoko/
HIVE is cute though
ig....updating data is same as write??
"I'd love to see a video tutorial on creating a Flutter app that seamlessly syncs data between Hive and Firebase, focusing on implementing an offline-first approach. This would be incredibly helpful for developers looking to build robust and efficient mobile apps. Looking forward to your take on this!"
clear & straight forward with smooth english accent.
Please Make more Tutorials per week. We love your Tutorials. They are easy to understand also🤘🏻
thanks pranjal! I have more on the way 🤘🏻
Absolutely true
I've been looking for solutions on how to store data locally and your tutorial really helped me a lot. Thank you and more power to you!
No problem. Glad it helped! ❤️
I always knew you'd bring in something sweet this Monday... Thanks Mitch ❤
Haha no problem 👨🏽💻❤️
Phenomenal Tutorial Mr. Koko, Love to see more apps with Hive DB
Wow, really easy to use and understand. Thank you for the vid.
I'm making something like a game show infographics app where I need to put contestants' names up. This can be a great way to implement it.
yeah it's great for offline local storage :D hows your game show app coming along?
@@createdbykoko Going quite well. I also adopted the LinearPercentIndicator you covered in a video and played around with the settings, did some logics and maths here and there too.
Doing projects like this is a great way to learn.
You are the best flutter teacher ever on youtube. Thanks alot for sharing this knowledge for free
Nice and clean!
Thank you so much for clear explanation!
my pleasure :D
very informative and you explanation level is remarkable, thank you for providing such kind of educational information.
Quick & to the point! Hive is awesome!
Clear explanation and awesome tutorial. thank you
Your voice is so soothing. Video is amazing also. Bro Try to make a video where we store API data in a different page by using HIVE.
It really helped me as a beginner thanks a lot man
Please koko Make tutorial about full e_commerce app with every thing 🙏you are great man 💜and your way to explain any thing it is very easy and helpful, 💚
sure i'll add it to my to do list haha
Thanks, Mitch. Very nice tutorial.
Thanks MitchKoko for your tutorials, you're an amazing teacher.
I have a request.
Please could you do well to take a tutorial on a flutter getx method for an auto response chat. And please don't speed up the video.
Thank you.
Second it. It's my learning second day of flutter
Amazing!! Keep it up!! How’s it going so far?
@createdbykoko loving it so far. Just finished watching all the widgets. Of course, I can't even write any one of these widgets so far, but it is giving me a general idea of the complexity. I feel it very easy so far. But when I come to the ui section then I will find it the real truth. I love how you make your video simple, short, and to the point and teaching professionals things in no time. I think I can become a professional in a month or two. If I continuously watch your videos every day and spend 3 to 4 hours a day. Amazing teaching skills 👏
Simple and straight forward
i think we should add async ,wait in write, delete function
Thanks for every video
Thank you for your tutorial, all are superb! Can you make a tutorial for php mysql as well for the backend?
Nice tutorial. Could you show how 2 apps can communicate with each other with messages? If that is possible. Via firebase perhaps?
On Firebase/Firestore you'd need to make a "messages" collection, and read the messages to that collection using a stream in the order of "createdAt" (which is a variable you need to create using Timestamp.now()), and post to the collection.
@@juanmacias5922 thanks for the reply. Can you post a link to the docs if you have one?
Hey Mitch, thanks a million for this great video!
I've been searching for a suitable database option for my app and hive seems like a perfect fit. The only thing I couldn't find yet, is how to prepopulate the database/box. Is that possible?
I'd like to repopulate the database with a few list of climbing grades, counts, booleans, etc.
Would really appreciate a small hint if that's possible and maybe where I can find information on implementing this. Thanks a million and keep it up!
Yannic
I've really been wondering, how do you present your apps on a mobile screen like that? Would love to do that as well if it doesn't involve crazy video editing
rotato.app/?ref=mitch
It really simple and easy to use hive. Mitch, you're the the best!
Thank you Mitch, that explained the concept of Local storage very well even to a newbie like me, I was trying to setup ObjectBox but I gave up, too complicated :(,
I have a couple questions about using Hive:
1. I am trying to capture and store email addresses from landing page using TextFormField, how can I do that using Hive?
2. do you know if there is a 'Control Panel/Log' to list/view database content?
thanks again and keep up the good work
Well for the 1st question every textFormField has an associated controller, from there you can extract the emails, and set a Function that submits the info to the database. With hive you create the database and with .add command you add it to the list and it will be saved.
And to view database content, well, you can just create a print statement that reads the contents of the list to which you keep adding items in 1.
Amazing 😎 🤩 🤩
thanks mitch 4 another great tutorial, i want ti make future in flutter what could i do. plz guide if possible 4 u.
thanks
My best advice is start now. Create something very small :)
@@createdbykoko thanks ❤
@@SaifAli-zf5qi good luck! Ask me questionsif u need
@@createdbykoko 😍
Thank you! It has really helped me improve. I don't handle this part well but I have no problem implementing it. Now I have a question how to implement that method Local Storage • HIVE • Firebase × FLUTTER. If it is possible to add it in this tutorial it would be excellent.
yes, a simple database, only in sql you can prepare the mybase.sql file in advance and insert data into it through sqlbrowser, but are there similar functions for hive?
thank you..
Smple but impressive for junior :) Thx for video. I liked it.
Could it get strings (text) from a text editing controller if paired with a key?
Yes it can
Another simple, easy-to-follow tutorial - thanks for taking the time to put these together. I'm curious if anyone is having trouble getting this to work on M1 Mac? I keep getting a cocoapods error ("Cocoapods not installed or not in valid state" when I try to run the code. I've uninstalled cocoapods, reinstalled with Homebrew but still no dice. Very frustrating.
im using m1 but have no issues. i believe should be related to ur cocoapods installation setup.
perfect nice and easy one
Very well explained!
Hello , I did todo list app using your tutorial but my data are not saving in database can you please suggest something... It will very helpful for me
before i watch just like your video hope i can easly understand it
bro how to find size of the local storage size and free space available in flutter please tell bro
can you do backup and restore please? Thanks as always.
bro plz create a video on a roadmap for learning flutters for beginners...
Okay i will add that to my list✌🏾
What are you working on now with flutter?
**fixed** When I click on the lightbulb for me there is no import hive library. Only Create and Extract. I'm using Windows 11 and everything is current. No longer an Issue. I'm using VS Code so in terminal I ran "flutter pub add hive" and this is the following - "hive" is already in "dependencies". Will try to update the constraint. So after that everything seems to work.
please make video by using flutter ui explain Dart Type Conversions
Hey bro, I needed help! I am making a wallpaper app linked to firebase.. I wanted to know, how can I serve the user with wallpapers related to a specific keyword? Like for eg. if a user searches for Lamborghini, he should get wallpapers of only Lamborghini and not other cars and wallpapers
add keywords field in the database, and from search field search the keywords field in database
@@wykeless Okay you mean that I should add a keyword for the images related to them and then in the code, I should add those keywords, and connect it to the search bar and the database
Sqf lite or hive. Which is better?
Hive can only store data using key value mathod right? Or can i make a relationship database that store data with specific column and row in hive?
thanks bro
why app not request to access file manager to store data ?
how hive storing the data
Do you know if the local storage gets deleted as well when the user uninstall the app?
Hey, Awesome content. I just wanna know why Hive and why not something else like shared_preference or sqlite? Thanks
Hive is significantly faster, than shared preferences, and sqlite is for different use cases as sqlite is for relational databases, in cases where you need to do simple things and you don't need queries to search for info Hive makes more sense.
@@Soulandbone So basically Hive is non-relational and faster than shared preferences while SQLite is relational. Cool. Thanks
How can edit the stored data or acsess it in other classes?
do i need to reference my box for every class or can i make it global?
Excellent
you are great thanks
Okay, but can Hive boxes be made for use in a global scope?
Awesome 👍❤❤❤❤
Thanks ,I am trying maplestory
hahaha nice good luck! I had a lot of fun making maplestory ♡
@@createdbykoko 👍++
Thank you
Your welcome 😉
I dont see any .add in the Hive docs, am I right? or is it really there? all I see in write is .put
You know what you are right, I don’t actually see ‘.add’ in the docs, but i did find it here in the flutter hive package pub.dev/packages/hive
Thanks bro! This video helps to me!
Plz bro
Flutter favourite list with local storage
Naxt Tutorial
nice work.
Thankuuu proyecto
Useful✨✨ ....thanks
My pleasure lakshit :)
Hive is async or not?
Very nice! :)
I’ve been loving hive haha it’s great
what if i want to store image
how to searche and flitter hive box
Are these codes valid for Android operating systems??
Thanks broo
My pleasure 😎
Last time I used this, there were so many bugs
What kind of bugs? I can help u out
@@createdbykoko sometimes when I restart, the data was not persistent.
Nice
Miumen bash !
Hi I am Sakthivel from tamilnadu Dharmapuri friend please post rest API series get post push delete update video make me please
Hey Sakthivel! I will look into rest API for u ♡
Thank you friend
Rest api with state management
hive это худшее решения для локальной базы
Can you explain why?
@@createdbykoko Hive slow, stores the entire database in memory, can beat the database and block the entire application, does not work with isolates, no migrations, no ACID, no transactions
@@createdbykoko I myself am a junior, and I don’t know much about it, but all the seniors with whom I spoke kept saying that it’s better not to use hive
@@alert4162 what is the better alternative?
@@code4430 the same drift, shared_preferences, sqlite