Thanks Mitch ❤.. I have a request🙏😊.. Can you please make a tutorial for multi-level(3-4) dependent dropdown fetching data from API.... I do need this.
These 20 - 50 min projects/turorials are really great. Short enough to not lose interest but long enough to learn a lot. Reminds of the 'web dev simplified' channel. His videos are similarly structured and i think that's why he became popular. Keep this going!
I am Japanese and not very fluent in English. However, I found your commentary to be straightforward and yet very intriguing. I will continue to refer to it. Thank you for the wonderful lectures.
Hi @Mitch I don't usually comment on anything, but you are the first person on the entire internet whose tutorials I can easily swallow without reading throught days of source documentation. Thank you for the great job. I was wondering if you have or could do a course for intermediate or advanced flutter devs more focused on backend e.g Flutter with AppWrite (seems to be a trend) as firebase is now saturated, I swear I will pay top $ for that course.
This is serious... I just finished developing a todo list app which was very successful and cool with your tutorials on hive and now you have made a tutorial on it...You're doing the most Mitch... I'm going through to see how you approached it... Thanks a lot for all the tutorials
Mitch, you are a wonderful teacher. I have recently discovered your page and have been implementing all the concepts you are explaining in my apps without any confusion. Thanks for making these videos. Hope you do more advanced videos like writing a plugin, custompaint, etc. Keep up the good work!!
Haha good idea. Sometimes i don’t even know why certain designs look good but i can just feel it in terms of the color palette and stuff. But thanks for the idea
I really like that you put comment label on every code you wrote, it really helps us beginner to know how to follow along your explaination. Thanks alot Mitch for this awesome tutorial.
Well, Hive not necessary works like that and is a bit more complex 🙂 The method you showed only somewhat works because your data model is rather simple. What you should have done, is to put each to-do task in a separate key-value pair, and each task should have its individual id (key). This way, you can use the box methods directly and everything would be updating live (no matter of the screen you are in); for example: taskBox.put(id, newTask), taskBox.delete(id) and so on. You are just updating "the whole" database every time something changes on the task list, which is super inefficient and when the task list will grow bigger, it could impact the app's performance in a huge way. I hope this helps, love your videos!
@@createdbykoko Yeah, just write and read the data directly into and from the Hive's box. Not using that toDoList list as a middleman would be a great start 😀 And hold each task in a separate key - value pair. Hive also have ValueListenableBuilder which manages the rebuilding of a widget tree based on a state of the opened box. You can wrap your ListView with it, and each time something changes inside the box (a task is removed or added to the box), the task list gets refreshed.
Love your content so much, I definitely owe you a portion of my salary at this point. Constructive criticism: add some quiet background music to help the video when you aren’t talking. Again you are monumental for flutter developers
so far so good, I am actually learning flutter to develop a mobile app for a research in my university. I would love to watch a video from you where you teach on google maps features@@createdbykoko
Good Work Broski! Keep up the good work also bring such working apps which are functional with backend. Much Love and Power to you ❤️! Ik it's not an easy task but it's worth it💕
Hey there, i guess ive been late to find this but i think this is helping me so damn well, ive also refered to your drag and drop reorder tiles video, im new to flutter and im puzzled to integrate that reorder list to this todo app, hoping to get some help
whenever i try to run the app, it just gets stuck on a white screen. i used my debugger and i got the error "Unhandled Exception: HiveError: Cannot read, unknown typeId: 33. Did you forget to register an adapter?" how can i resolve this issue?
Bro i linked your page in my dashboard but when l click save button it is going blank i don't why , when i run separately it coming but after routing it is not coming but there is no error in the code, please help me with this.
thanks for the tutorial Mitch. I have a problem when clicking the 'make Tutorial' button, it does not draw a line through the text when i click on it but the 'Do Exercise' draws through when i click on the checkbox. What could be the issue?
Hi, a really nice video with a nice project congratulations 🎊 I would like to ask you only one thing if I for example do an update that I change some things when I go to install it in the phone the saved notes of the previous version are lost?
Hi Mitch, really liked your video for this app (you have a great teaching style), but it doesn't quite work : when u show and click the 'delete' button = it DOESN'T delete the task ... is there some code missing from the video ? ... Please help
how to add the error message when the user hit the save button without entering anyting in the textfield? Because it is saving the task without any text.
hello Mitch, fantastic work. One question: do you use in real life small/medium apps some kind of architecture pattern, like DDD - bloc - MV MVVC - clean architecture...?
hi i write the code with your video in flutter but receive this error : Exception has occurred. RangeError (RangeError (index): Invalid value: Only valid value is 0: 1) in homepage screen at line 92
Hi! I want to make categories for tasks, for example, "tasks at work", "household chores" and I need to be transferred to a new blank form after clicking on the category, where I can write down my affairs. Please help me, which way should I dig to find the answer?
💬 Chat App w/ Notifications • mitchkoko.gumroad.com/l/ChatAppMasterclass
📱 Flutter Masterclass • mitchkoko.app/
🔥 I'm coding a startup.. www.patreon.com/mitchkoko
Thanks Mitch ❤.. I have a request🙏😊.. Can you please make a tutorial for multi-level(3-4) dependent dropdown fetching data from API.... I do need this.
Hey Mr. Koko, there's no link to hive, for future learners to easily find.
You are a natural teacher. The stress or anxiety in learning is offsetted by your chill attitude. Much appreciated.
haha that's good to hear :D coding is fun ❤
@@createdbykoko +1 to this, could also be a meditation teacher in another life
These 20 - 50 min projects/turorials are really great. Short enough to not lose interest but long enough to learn a lot. Reminds of the 'web dev simplified' channel. His videos are similarly structured and i think that's why he became popular. Keep this going!
Glad u like it!
I am Japanese and not very fluent in English. However, I found your commentary to be straightforward and yet very intriguing. I will continue to refer to it. Thank you for the wonderful lectures.
Hi welcome Taiyo Maruyama! ❤️🇯🇵
Hi @Mitch I don't usually comment on anything, but you are the first person on the entire internet whose tutorials I can easily swallow without reading throught days of source documentation. Thank you for the great job. I was wondering if you have or could do a course for intermediate or advanced flutter devs more focused on backend e.g Flutter with AppWrite (seems to be a trend) as firebase is now saturated, I swear I will pay top $ for that course.
Love being able to watch the creation process in action! Great job
Haha yeh i enjoy creating it from scratch ❤👨🏽💻
This is serious... I just finished developing a todo list app which was very successful and cool with your tutorials on hive and now you have made a tutorial on it...You're doing the most Mitch... I'm going through to see how you approached it... Thanks a lot for all the tutorials
Haha that timing! Congratz on making your todo app!! 😊
Your tutorials are very helpful Bro..My todo app was a combination of a lot of your tutorials, a whole lot... I'll be looking forward to more
Hey! Mitch Your teaching is so good and simplified. You start from basic structure and then go to deep dive!!!
Whoah!!!
I am littrelly blown away!!!
How this playlist is even FREE???
You’re content is clean and simple to get through and get into our heads. Keep going sir❤❤
What a solid tutorial, love it man!
Mitch, you are a wonderful teacher. I have recently discovered your page and have been implementing all the concepts you are explaining in my apps without any confusion. Thanks for making these videos. Hope you do more advanced videos like writing a plugin, custompaint, etc. Keep up the good work!!
Welcome ❤️
You are soo chilled❤️😩 . I love the way you teach . Keep up the good work man 💪🏽💪🏽
Beautiful design
U should start a small series on what to do to make flutter apps more attractive tips and tricks…
Haha good idea. Sometimes i don’t even know why certain designs look good but i can just feel it in terms of the color palette and stuff. But thanks for the idea
I am addicted to your videos! Thank you!
I really like that you put comment label on every code you wrote, it really helps us beginner to know how to follow along your explaination. Thanks alot Mitch for this awesome tutorial.
Well, Hive not necessary works like that and is a bit more complex 🙂 The method you showed only somewhat works because your data model is rather simple. What you should have done, is to put each to-do task in a separate key-value pair, and each task should have its individual id (key). This way, you can use the box methods directly and everything would be updating live (no matter of the screen you are in); for example: taskBox.put(id, newTask), taskBox.delete(id) and so on.
You are just updating "the whole" database every time something changes on the task list, which is super inefficient and when the task list will grow bigger, it could impact the app's performance in a huge way. I hope this helps, love your videos!
Thanks! Do you have recommendations on how to improve the code ?
@@createdbykoko Yeah, just write and read the data directly into and from the Hive's box. Not using that toDoList list as a middleman would be a great start 😀 And hold each task in a separate key - value pair. Hive also have ValueListenableBuilder which manages the rebuilding of a widget tree based on a state of the opened box. You can wrap your ListView with it, and each time something changes inside the box (a task is removed or added to the box), the task list gets refreshed.
Whoah! Can you show how you implemented that?
Thanks for the tutorial, I am a beginner in flutter and you have helped me :)
❤️
Excellent your way of explanation sir it will enhance my curiosity for learning the flutter
Glad you like it :)
Sir, please upload lots of content because I am the fresher to learn flutter I confidently say that I will become an expert if I follow your teaching
@@rajeshmullapudi7081 more to come :)
Thanku so much, as a flutter beginner, this tutorial helped me alot.
Love your content so much, I definitely owe you a portion of my salary at this point. Constructive criticism: add some quiet background music to help the video when you aren’t talking. Again you are monumental for flutter developers
Haha glad u like it. Thanks for the feedback 👨🏽💻❤️
Your sense of asthetics are just awsome
haha thanks I'm glad you appreciate it ❤
you did complete 42 min but for me it took hole day to build this app after watching your video, thank you for creating this. Love from India.
You are the best teacher ! Thank you :)
💜💜 my pleasure!
Congratulation for 100K. Love from INDIA 🇮🇳
Thank you very much, your tutorials are helping me in a way words can't tell
Haha glad i can help! How is flutter going for you so far?
so far so good, I am actually learning flutter to develop a mobile app for a research in my university. I would love to watch a video from you where you teach on google maps features@@createdbykoko
I am very happy with your video. Its very easy to understand keep it up
Thank you so much for your tutorials. For me, they are the best out there.
Haha no worries. Glad i can help❤️ keep it up!!
Good Work Broski! Keep up the good work also bring such working apps which are functional with backend. Much Love and Power to you ❤️! Ik it's not an easy task but it's worth it💕
Yes sirrr more to come. Thanks for the support ❤
Nice Work keep it on
Love from India 🇮🇳👍🏻👍🏻👍🏻
Thanks :D
Thank you man, I really needed it for practice. new subscriber
Hey welcome bro 👨🏽💻❤️ more to come✌🏾
Just created this app thank you ❤
@@abhishek_0_7_8_9 good job!! ❤️✌🏽
Simple explanation and easy to understand. Thank you sir.
thanks Mitch KoKo for all you do.. you really changing lives thanks so much and keep going ..
Haha my pleasure. You are too nice ❤️❤️
You are a god bro. this is the type of content that makes the world of learnign a better place for nerds😁😁
Haha you are too nice 👨🏽💻❤️
I love this course so much!!
Glad it helps!! 👨🏽💻❤️
Mitch you are amazing... Your tutorials have really helped... But pls can you do a tutorial project based on API
yes please
i 'm learning a lot from you bro, thanks a lot
ពិតជាអរគុណបងប្រុស ខ្លាំងណាស់ ដែល ចែករំលែក 😊
He does the best flutter tutorials tbh. I wish you will do react/nextjs as well
Thanks Billy means a lot ❤
wow thank you, now i can have fun!
haha i'm glad you find this fun! ✌🏾
Thanks bro you are very good teacher and good coder
flutter goat, love it G
💎 thanks haha glad u like it
Thanks, very much eye opening. Looks so easy when you do it!
Thank you for making this so easy
no problem
great tutorial, thank you so much!!
My pleasure bro 👨🏽💻❤️
Best lecture ever
Glad u like it 💜
the best tutorial ever
thanks for letting us learn from you be blessed 🙌
Thanks. I want more tutorials on Hive
You are the G.O.A.T♥
@@proamooryzx4416 you’re too nice
Thank you very much, an excellent explanation.
I loved this video, I hope you can upload more like this
more like this to come !❤
Hey there, i guess ive been late to find this but i think this is helping me so damn well, ive also refered to your drag and drop reorder tiles video, im new to flutter and im puzzled to integrate that reorder list to this todo app, hoping to get some help
Thank you so much for this tutorial. It's so helpful
Mitch i am rooting for your tutorial on REST API
Thanks! Very helpful..
❤️❤️
Dear man I follow all your step but I got ( error type 'string ' is not subtype of type 'bool ' ) on screen phone so How can I solve it ?
Thank you very much for sharing your knowledge, I am learning a lot.
Love ❤❤❤❤ , this app you explain easy
Your are the best man
Thank you
Thank you so much. Love ❤from India.
Thank you for your good lecture :)
I can't understand the onchanged of the checkbox....
Thanks for the tutorial.
whenever i try to run the app, it just gets stuck on a white screen. i used my debugger and i got the error "Unhandled Exception: HiveError: Cannot read, unknown typeId: 33. Did you forget to register an adapter?" how can i resolve this issue?
my text are not showing while on click of save
Can you do a fitness app please, I am starting my new project on the same topic, I would love to learn some coding practices from you Mitch.
Yeah sure fitness app sounds cool. I wonder what specifically you want from the fitness app?😊
@@createdbykoko something like workout planner and calorie counter etc. anything basic
thank you so much, I learnt a lot from this tutorial.
Bro i linked your page in my dashboard but when l click save button it is going blank i don't why , when i run separately it coming but after routing it is not coming but there is no error in the code, please help me with this.
Hey koko, thanks for the video. Can you make video about flutter bloc ? Thanks
thanks for the tutorial Mitch. I have a problem when clicking the 'make Tutorial' button, it does not draw a line through the text when i click on it but the 'Do Exercise' draws through when i click on the checkbox. What could be the issue?
Thnx man
My pleasure bro
Hey can anyone tell me if the text of a task overflows the size then what to do ??
Hi I would like to know just how to go about it if we want to delete a tack with a select_all and delete/delete_all button ?
greate teaching learning many thing , i have question its also allow empty task
Nice tutorial. How about create part 2 to deploy this on firebase using firestore db?
Best tutorials! Please make a tutorial about getting data from Google Sheets into Flutter.
if there are errors in the code : could you post the required source code corrections here please ? ... thanks Mitch
A W E S O M E !
Y A Y 🎉❤
Hi, a really nice video with a nice project congratulations 🎊 I would like to ask you only one thing if I for example do an update that I change some things when I go to install it in the phone the saved notes of the previous version are lost?
Hi Mitch, really liked your video for this app (you have a great teaching style), but it doesn't quite work : when u show and click the 'delete' button = it DOESN'T delete the task ... is there some code missing from the video ? ... Please help
I hope you know how much you helping meeeee bro 😭
haha i'm glad it helps you! that's why I do this
very easy tutorial🔥🔥
How would you add a slide to edit the text within a task ( maybe a mistake spelling or just want to change task)?
how to add the error message when the user hit the save button without entering anyting in the textfield? Because it is saving the task without any text.
Thanks for the video. Question: Could it be saved in the database and data such as the date and time of the records?
Absolutely!! You should check out the DateTime object in flutter
You should create a tutorial about getting ads into your app!
u need to make a video about rest api in connection with flutter
Noted 💜
hello Mitch, fantastic work. One question: do you use in real life small/medium apps some kind of architecture pattern, like DDD - bloc - MV MVVC - clean architecture...?
It's awesome, could you add edit option to update new data on old data. 😍
this tutorial is so cool👍👍👍👍🔥🔥
Thanks brother.Well done
My pleasure bro ❤
hi i write the code with your video in flutter but receive this error :
Exception has occurred.
RangeError (RangeError (index): Invalid value: Only valid value is 0: 1)
in homepage screen at line 92
hello thanks for your good explaining.... but could you please make a tutorial by applying provider package on this "To DO App"
can you add a feature to edit task?
update: nevermind, I did it myself, thanks for the video
very easy tutorial🔥🔥🔥🔥
I would like to know how to change the font size of the tasks 😌 (good video by the way)
hi @Mitch Koko and everyone reading this, please tell me how to create phone emulator on VS code.
really thanks for this amazing video.
Hi! I want to make categories for tasks, for example, "tasks at work", "household chores" and I need to be transferred to a new blank form after clicking on the category, where I can write down my affairs. Please help me, which way should I dig to find the answer?