Du machst die besten Flutter-Tutorials auf KZbin. Ein glück habe ich dich entdeckt.
@HeyFlutter2 жыл бұрын
Glad to hear that, Thank you peter s! 😊
@sighera2 жыл бұрын
Great tutorial. Even though sometimes switching between files goes too fast for a beginner like me, I like and appreciate the style of teaching 🎉 Thank you!
@manuponce2883 жыл бұрын
Thank Johannes. This was a brilliant. Better than a flutter course that I paid for. Keep it up!
@wahyualfandi6113 жыл бұрын
amazing as always, your tutorial is always on point, love to learn new stuff from you sir
@wahyualfandi6113 жыл бұрын
@@HeyFlutter it's my pleasure sir
@ivanyoed3 жыл бұрын
Super Tutorial Johannes!! Sehr sehr herzlichen Dank!
@narcissisticnarcissus49563 жыл бұрын
Provider starts at 11:11
@gangasunny19083 жыл бұрын
In show dialogue there is builder field what should i give there?
@StarBattle083 жыл бұрын
what is *VoidCallback* ? it's my first time seeing it, does it work the same as *Function* ? Also my first time seeing *ValueChanged*
@haiderjaafer81644 жыл бұрын
Great as always keep going forward
@emptylyrics50144 жыл бұрын
Thank you sir! when will you upload the second part of this video? can you show us on how to display the todo task by categories? thank you sir! it would be a big help :))
@samirhberra69052 жыл бұрын
Thanks for this tutorial ❤
@musoxon_3 жыл бұрын
Thank you for the tutorials. God bless you.
@user-or7ji5hv8y3 жыл бұрын
Do you have a simple example video for Provider()? Just want to understand why it is relevant.
@bijayaadhikari4424 жыл бұрын
Tough but you made it easy.
@althafaralijaffarali18034 жыл бұрын
😁Again👌. Make some videos on stream builder and inherited widget bro. Keep rocking 🔥
@ahmedbakry47303 жыл бұрын
awesome! very helpful!
@faheemahmadofficial77014 жыл бұрын
Wow bronu r so awesome and so stable and clear, please experiment with windows apps or mac os apps in next videos.. and if possible use 60 fps
@faheemahmadofficial77014 жыл бұрын
@@HeyFlutter Web and mac os app too!! Also please can you give a look at UNO platform it seems to rival android and has more to ofer please do see and maybe vidoe on it please
@skininja17472 жыл бұрын
I am having a huge problem with the code at 7:30. I copied the code completely the same however when I did it, I got a huge bunch of errors in this part of the code: TodoFormWidget( onChangedTitle: (title) => setState(() => this.title = title), onChangedDescription: (description) => setState(() => this.description = description), onSavedTodo: () {}, here are the errors: - A value of type 'Null' can't be assigned to a parameter of type 'void Function(String)' in a const constructor. - Invalid constant value. - The values in a const list literal must be constants. These errors was for each line onChangedTitle, onChangedDescription and onSavedTodo. Overall, I have 9 errors and I dont know why because I have written the exact same code. please help and quickly because I really want to finish this. thanks
@HeyFlutter2 жыл бұрын
Hello, Ski Ninja! Follow this link: stackoverflow.com/questions/69182132/a-value-of-type-null-cant-be-assigned-to-a-parameter-of-type-string-in-a-co I hope it will solve your problem. Thank You 🙂
@shanney22802 жыл бұрын
under todo_widget, the slidable action does not work anymore, Ive followed the latest version but it still doesnt work. I decided to use the flutter slidable version used in your tutorial, however the error was cannot run with sound null safety. Can you help me please? I don't know how to solve this issue :(
@LenziaGameplays2 жыл бұрын
This helped me :) Change this in you puspec.yaml: dependencies: flutter_slidable: ^0.6.0-nullsafety.0 But then you might get an error when you try to run the app again by run without debugging... If that happens try this: 1) First Install App using flutter run from Terminal 2) When App is Installed. long press on app icon on the Phone and go to app info. 3) Force stop app. 4) Remove cache (and delete storage but for me that wasn't necessary) which is contained by app. 5 ) Uninstall App. 6) Install Again (Run without debugging). And it will work like before :)
@shanney22802 жыл бұрын
@@LenziaGameplays thank you!!
@safari112 жыл бұрын
Error: Could not find the correct Provider above this ToDoListWidget Widget I GOT THIS ERROR...ANYBODY CAN HELP?
@HeyFlutter2 жыл бұрын
Thank You Safari Kids! Follow this link: stackoverflow.com/questions/57124258/could-not-find-the-correct-provider-above-this-widget I hope you will get your answer 🙂
@Tom-en9tc3 жыл бұрын
Great app, unfortunately it's very hard to follow this tutorial since they introduced null safety. Even running the app after implementing the provider is impossible until you manually add --no-sound-null-safety inside settings > Flutter run additional args
@Tom-en9tc3 жыл бұрын
@@HeyFlutter thanks for the reply Johannes. Slowly but surely I'm getting through it haha. My understanding of null safety is not that great yet so it will take some time. Have a nice day
@sameeranand1917 Жыл бұрын
It would be better if you use better naming conventions for files.Sometimes it is confusing to understand.
@HeyFlutter Жыл бұрын
Thanks for your feedback, @sameeranand1917! 🙂
@razakhan35863 жыл бұрын
I am unable to show data on home screen
@razakhan35863 жыл бұрын
@@HeyFlutter I am following
@razakhan35863 жыл бұрын
@@HeyFlutter but still error
@shreyanshsharma87613 жыл бұрын
Downloaded your repo it started and then it was not working because you cheated and didn't uploaded entire projrct
@lyricsmint5674 жыл бұрын
Awesome
@faheemahmadofficial77014 жыл бұрын
😱 woe
@АлександрИванов-ю8с8г4 жыл бұрын
cool
@JihuRamen3 жыл бұрын
In show dialogue there is builder field what should i give there?
@lucasteixeira49322 жыл бұрын
Although this is a really late response, the child parameter has been removed. We have builder now and instead of doing >> child: AddTodoDialogWidget() builder: (context) => AddTodoDialogWidget()