Every weekend, I sit and wait for your video. I learned Flutter UI from you. Hopefully, this video series will be a complete application. Thank you very much.
I don't know Flutter. I have plans to study. Your videos are an inspiration for me. Eventhogh I'm not using the tutorial, but I always expect your channel's notification. Because you should continue your works! Thanks for doing amazing works! More love to you!
"ProductDetailsArguments routeArguments = ModalRoute.of(context).settings.arguments as ProductDetailsArguments" That's really cool mate. I would never imagine routing to be this simple. Thanks and keep up the awesome work
Amazing man, thank you for the series so far. I will refactor the code to manage state with a provider instead of passing the product between widgets multiple times since I'm trying to get good at state management with the provider package
Muchas felicidades Haces un buen trabajo, y agradezco que compartas tus conocimientos con nosotros. Estoy comenzando en el mundo de Flutter, y con tus videos me sigo enamorando de esa tecnología. Muchas gracias!
The best flutter code structuring & UI development tutorial I have watched so far! Excellent experience slowing down this video & coding alongside. A small request, can you please share the design template used for this video series inside the git-repo or somewhere, I would want to practice other small sections which is not covering in this tutorial.
Hi. Awesome work! I just started programming apps with flutter and your videos helped me great way in understanding and building the designs i want. Just a question: How do you make the mockups for your designs? So what tools and ressources and skills do you use? It's where I have to improve next and I hope you could share your flow. Thank you so much for your work!
First of all, I want to say thank you for this series, I've been following then very well. Suddenly in this homescreen, I'm getting an error that says " the method "todouble" was called on null" and I guess the problem is from the getProportionatetoScreenHeight and width How should I solve it please?
@@Tony-ue9dl you have to call SizeConfig().init(context); from within a build method and since each screen is pushed into the tree you will have to call it inside each screen widget
Hi, first of all, awesome videos, but I've got a problem, hope you can help me, I keep getting the next error "type 'Product' is not a subtype of type 'ProductDetailsArguments' ", I trued using ModalRoute.of(context).settings.arguments as ProductDetailsArguments but then I got the next error: "type 'Product' is not a subtype of type 'ProductDetailsArguments' in type cast " what could it be? Thanks in advance.
Could not find a generator for route routesettings("/details", Instance of 'ProductDetailsArguments') in the _widgetsappstate. While running this app😞please help me
Sorry to ask, I tried to run the coding but there was an error, it said: NoSuchMethoderror: the getter 'product' was called on null tried to calling: product
who can write setState of select color ,i confuse i use StateFulWidget in ColorDots and ColorDot so I set press gesture then setState value of selectColor = index, but in view not change i can't not adapt same ProductImage.dart who try this success please guide me haha.
Hi , just wonder where did u get the phone emulator, is there any free emulator out there can connect to android studio(i dun like the emulator provide in android studio, it is slow and heavy) Thanks and your video is awesome as always!
@@TheFlutterWay I don't know why but I can't pup get the package or make a hot reload when changing something in the code, I can only do rerun the code(i mean to stop the app and run it again), I am using intellij IDEA...the same when using VS code.
Dont ever ask your doubts here.. cause this developer is very busy(fake) to answer them, just you tell them good things they will lick your back 🤦♂️ PS:- I`ve personally felt this😒
Every weekend, I sit and wait for your video. I learned Flutter UI from you.
Hopefully, this video series will be a complete application.
Thank you very much.
Glad to hear it!
My favorite, speed code series! Elegant and lovely!
Thanks, it means a lot.
each of your videos I always love to see your UI. Thanks for your tutorial. 👍
My pleasure!
I don't know Flutter. I have plans to study. Your videos are an inspiration for me. Eventhogh I'm not using the tutorial, but I always expect your channel's notification. Because you should continue your works! Thanks for doing amazing works! More love to you!
Happy to hear that!❤️❤️
"ProductDetailsArguments routeArguments =
ModalRoute.of(context).settings.arguments as ProductDetailsArguments"
That's really cool mate. I would never imagine routing to be this simple. Thanks and keep up the awesome work
Glade that was helpful.
Your app is working or not
This channel deserves more views! Awesome tutorial!
Hey, thanks!
Amazing man, thank you for the series so far. I will refactor the code to manage state with a provider instead of passing the product between widgets multiple times since I'm trying to get good at state management with the provider package
Fantastic!
You really make good videos on flutter
Glad to hear that 🤗
Best flutter content on youtube
It means a lot.
Muchas felicidades
Haces un buen trabajo, y agradezco que compartas tus conocimientos con nosotros.
Estoy comenzando en el mundo de Flutter, y con tus videos me sigo enamorando de esa tecnología.
Muchas gracias!
❤️❤️❤️
I really enjoy this series! I cannot wait for your next one, thank you so much, bro!
Glad to hear it!
¡Mi serie favorita! Gracias por dedicarle tiempo a compartir sus conocimientos.
Always welcome and keep support us like that.
Another amazing video btw I really liked this series just the best . suggestion: what about making videos more like a tutorial
I'm trying, soon I will release a video with voice over
Awsome tutorial!! Could you please have videos where you talk and explain these speed codes too? Would be great
Working on it!
@@TheFlutterWay Yes Yes
The best flutter code structuring & UI development tutorial I have watched so far! Excellent experience slowing down this video & coding alongside.
A small request, can you please share the design template used for this video series inside the git-repo or somewhere, I would want to practice other small sections which is not covering in this tutorial.
Sorry, I don't have the permission
i was waiting youu ❤️ thank you soo mutch 🙏🙏🙏🙏☺️
Hope you enjoyed it!
Thank you!! The design looks awesome and the code really well done
Glad you like it!
i'll subscribe before you ask me. awesome 👍
Thank you so much❤️
thank you very much man! you're the best
You're welcome!
Thanks I was waiting for this
Hope you like it!
Keep it up mates!
Thanks! Will do!
Hi. Awesome work! I just started programming apps with flutter and your videos helped me great way in understanding and building the designs i want.
Just a question: How do you make the mockups for your designs? So what tools and ressources and skills do you use? It's where I have to improve next and I hope you could share your flow.
Thank you so much for your work!
Apparently he's using *Figma* to build the awesoem designs
Great video!
Question: which code formatter extension are you using?
Thanks
What's your vscode configuration (plugins list) ?
First of all, I want to say thank you for this series, I've been following then very well.
Suddenly in this homescreen, I'm getting an error that says " the method "todouble" was called on null" and I guess the problem is from the getProportionatetoScreenHeight and width
How should I solve it please?
use SizeConfig().init(context); in your first screen
@@aliumer8682 I had a mediaquery error return: /
@@aliumer8682 MediaQuery.of() called with a context that does not contain a MediaQuery.
@@Tony-ue9dl i need to check your code
@@Tony-ue9dl you have to call SizeConfig().init(context); from within a build method and since each screen is pushed into the tree you will have to call it inside each screen widget
can you make a video about which vs code extensions you are using and docker with flutter
Noted!
I love this speed code serie, i would like if you teach how you make this amazings ui mockup, or leave some resources.
check the description
@@TheFlutterWay thanks
You are welcome. Now, prepare a similar tutorial for the Telegram bot.
Hi, first of all, awesome videos, but I've got a problem, hope you can help me, I keep getting the next error "type 'Product' is not a subtype of type 'ProductDetailsArguments' ", I trued using ModalRoute.of(context).settings.arguments as ProductDetailsArguments but then I got the next error: "type 'Product' is not a subtype of type 'ProductDetailsArguments' in type cast
" what could it be?
Thanks in advance.
Good and thank you.
Always welcome
Could not find a generator for route routesettings("/details", Instance of 'ProductDetailsArguments') in the _widgetsappstate. While running this app😞please help me
what is the theme you use in code block here?
hi, thank for this content
You're welcome 😊
Can you make on kivyMd and comparison between kivyMd and flutter
Sorry to ask, I tried to run the coding but there was an error, it said:
NoSuchMethoderror: the getter 'product' was called on null tried to calling: product
who can write setState of select color ,i confuse i use StateFulWidget in ColorDots and ColorDot so I set press gesture then setState value of selectColor = index, but in view not change
i can't not adapt same ProductImage.dart who try this success please guide me haha.
Perfect
Glad to hear that 😀
Is this just a ui design or complete functional app?
Just UI
Thanks for this. :) Are you the one who makes the UI design? Where do you get assets?
No, I have team for that
多谢你的视频,对我帮助很大
Most Welcome 🙏
Hi , just wonder where did u get the phone emulator, is there any free emulator out there can connect to android studio(i dun like the emulator provide in android studio, it is slow and heavy) Thanks and your video is awesome as always!
Actually I'm using Xcode Simulator, if you have Mac then I height recommend you to use Simulator.
where you get or how you create the svg??
My designers provide me those.
Hey bro, great video, can you give me permission to use your interface code and give it programming? I want to upload some tutorials to youtube
instead of passing data between screen isn't it better just using provider.
Yeah
Do you have event app, which I can learn from haha
Not yet!
Keep up the good work! 💪
Perfect
Thanks
waou!!!!!!
Enjoy😇
very good, but demo colordots..
the packages don't work!
Which one?
@@TheFlutterWay I don't know why but I can't pup get the package or make a hot reload when changing something in the code, I can only do rerun the code(i mean to stop the app and run it again), I am using intellij IDEA...the same when using VS code.
Dont ever ask your doubts here.. cause this developer is very busy(fake) to answer them, just you tell them good things they will lick your back 🤦♂️
PS:- I`ve personally felt this😒
欧力给,宝贝