Hello. Thank you for continually posting content like this. I'm still learning flutter and I believe this is the best way to learn after a certain point. Is to keep on building. I need to get a really good feel and familiarize myself by using all these widgets in different ways til I can come up something unique myself
Mitch, the tutorials are great! Could you please create an example of dynamically generated and drawn graph? A simple sine function would be enough for the demo purposes. The main idea - is to learn how to draw the data from the async real-time source. Thanks again!
Thanks for this great tutorial. I wanted to learn how to consume API in Flutter and I did it. As a challenge for me, I wanted to hide the api key, I put the API key in a json. And I configured --dart-define-from-file in launch.json
Fantastic tutorial! 🚀 Clear explanations and smooth pacing. Your Flutter expertise shines through. Grateful for your effort in simplifying complex concepts. Looking forward to more insightful content. Thanks for sharing your knowledge!
Even i used lottie animation to give beautiful looks to app.. will try to share on Twitter, other day when you posted on minimalist app design, i didn't think it would be animated as it was a photo shared.. love learning from you.
Hey There! i am stuck at one issue which is PermissionDefinitionsNotFoundException (No location permissions are defined in the manifest. Make sure at least ACCESS_FINE_LOCATION or ACCESS_COARSE_LOCATION are defined in the manifest.) Even after adding them into under manifest. Can you please help me out?
9:11 The city Name and temperature doesn't show and i debug console it show "Failed to load weather data" Can anyone please help with this issue Thanks 🙏
I've also had this problem but my problem was that I had the wrong url with /data/2.5/forecast and not /data/2.5/weather. Because I've copied the url from the OpenWeather page. Maybe you have the same problem.
Nice little tutorial thanks! By the way, unless I'm mistaken, if Dart works like most other languages, you can remove the if(...) for the sunny default, because you already have it in the default part of the switch. Also you could join the sunny and default cases together.
I actually think dart requires it to be a bool. it's not truthy and falsy like in javascript and some others, so you need to actually use a value that's a bool
@@createdbykoko Are you sure? I'm pretty sure you did it right and conditionals require a bool in dart edit: my bad, @velGoesBrrr already put me in my place
@@liammcgarrigle I think you misunderstood the point here: The if(...) statement is redundant with the default case. And the function is returning a string, representing the relative path of the image asset. To sum up, he could have removed the 'if(...)' line and group the case 'clear' and 'default' (as he did with 'rain' 'drizzle' and 'shower rain' for example).
Hey Mitch, Love your videos! Can you please make some tutorials on integrating some kinda ML into our apps too? Would be a major help if you could just provide a simple tute 🩶
Depends on various factors but the one you are most comfortable with until you reach a roadblock. Also depends on the scale/size/complexity of your app
hi how are you, I like the tutorial, I followed your steps when making the code, but at the time of executing it, the message of incorrect parameters format appears in the debugging console, besides the message that the way to call the API by means of the url, is wrong, I don't know if you could help me.
Do you print each part individually to see where the errors is? Like print out the result of locale api. Then print the other variable after declare to find out. And all so the url
Hi Mitch, thanks for the amazing tutorial. I'm trying to also add weather forecasts in the app, when you wanted to get the weather you called Future twice do I also have to do that when trying to get the forecast or I can just do it inside the already called Futures I'm a newbie by the way the help would be really appreciated.
it is saying my location is mountain view which it isnt i found out that with openweather map that is like the deafult or smt like that can you tell me how to fix this error
hello mitch sorry to disturb you , would u like to give me the github of the book u creat i'm really interesting on how u add the text inside the app with that smooth 💜💜💜
Bro plz finish your firebase firestore playlist you were making separate videos for CRUD like you made Create and Read but after that you did not make of Update and Delete please make on them. You made a masterclass one but please continue that
Hi Mitch, flutter newbie here, everything works fine but for some reason it only loads the weather when (Out of the nations I have tested) the location is set to the USA or Mexico. According to the debug console I am successfully getting the position and placemarks, and yet I still get the "Failed to load weather error". Any help would be greatly appreciated!
@syedasadshah-go8ki please can you tell about the link you put on BASE_URL and the lines in builder ? because i don't know why but my app is not asking for location.
Hello, I would like to ask a question. I want to make an application for studying. I want to take videos from RUclips and put them in it. My question is, I want advice from you. Should I say, “Tunril” the videos and put them, or do I put a link to them directly from RUclips, but without transferring the user to RUclips. He watches the video from the application, but if the video is deleted from RUclips, it will be deleted. From the application or putting the first idea, which is better? Is it possible to do this in filters? Thank you
Hey Mitch, hope u good? I’m a web developer and also interested in learning a flutter cause I wanna add mobile app career to my web development career and I came across ur channel hoping to start by watching ur videos. A friend of mine recommended ur channel to me n I wish to learn more about flutter🙌. This is my first video that I just watched from u but can u please take ur time while coding so I can try to understand everything u doing? Thanks.
thank you very much for this amazing video. I have a problem, the city name and the temperature didn't show up I did everything ok but I think there is something wrong with implementing the service on my side to be honest I couldn't find the solution
can someone expalin to me like i am a 5 years old.. can i follow the exact same steps using flutters? because i see that he is using microsoft visual studio.
Hi sir, can u please give me the name of the lottie animation that u showed in one of the shorts and the create fun animations video. It was a man typing on laptop with a screen infront of him. Thankyou
Thank you first of all. I downloaded the application as apk to my phone. However, when I open the application, it cannot find my location even though I have given location permission, and it remains on the initial loading screen. How do I solve it? When I open it from my computer, this is not a problem.
Hello everyone, I guess there are lots of people that still has the null problem. I will provide the things I've checked and applied below. 1) Please make sure that the fields in like .json["name"] are correctly in the Weather class. Remember, API JSON's are structured and we have to use that structure. 2) If you want a special error to see, please use the response.body. 3) If you see the temperature but not seeing the city name, try to override the toString method in the Weather class and make it return the city name.
can you please elaborate in detail as I'm still getting the null problem.Is there something specific we have to change in the code in the weather model class that is different from what Mitch does in the video?
🥷🏽 FOLLOW ME
Patreon: www.patreon.com/mitchkoko/
Instagram: instagram.com/createdbykoko/
Twitter: twitter.com/createdbykoko/
TikTok: www.tiktok.com/@createdbykoko/
🌧️
@@_farooq_zahid🔥
@@createdbykoko pls can you do a tutorial on bloc cubit , it will be super helpful
Thank you so much @Mitch koko I’ve always wanted a tutorial video on APIs from you. God bless you ✨
Hello. Thank you for continually posting content like this. I'm still learning flutter and I believe this is the best way to learn after a certain point. Is to keep on building. I need to get a really good feel and familiarize myself by using all these widgets in different ways til I can come up something unique myself
Bro is FAST!!! No time to get distracted!!
(in a good way)
Because of it I`m watching 0,5x
same would much prefer if he didnt speed it up
Do you know where the BASE_URL in the video is taken from?
@@muhammadsodiqbohodirov4746 did u get that i am having issue?
@@meharsaadullah9606 is your app working fine ?
Mitch, the tutorials are great! Could you please create an example of dynamically generated and drawn graph? A simple sine function would be enough for the demo purposes. The main idea - is to learn how to draw the data from the async real-time source. Thanks again!
Thanks for this great tutorial. I wanted to learn how to consume API in Flutter and I did it.
As a challenge for me, I wanted to hide the api key, I put the API key in a json. And I configured --dart-define-from-file in launch.json
Absolutely Fav Flutter channel, your designs are spectacular, A request to kindly cover riverpod.
Even after enabling location it does not fetch the city. Please help me out.
same issue
Did you find solution ?
Same
Did anyone find soln?
U are asking for Android??
I really love your work man, please keep sharing knowledge with us
Fantastic tutorial! 🚀 Clear explanations and smooth pacing. Your Flutter expertise shines through.
Grateful for your effort in simplifying complex concepts.
Looking forward to more insightful content.
Thanks for sharing your knowledge!
Even i used lottie animation to give beautiful looks to app.. will try to share on Twitter, other day when you posted on minimalist app design, i didn't think it would be animated as it was a photo shared.. love learning from you.
Hey There! i am stuck at one issue which is
PermissionDefinitionsNotFoundException (No location permissions are defined in the manifest. Make sure at least ACCESS_FINE_LOCATION or ACCESS_COARSE_LOCATION are defined in the manifest.)
Even after adding them into under manifest.
Can you please help me out?
Did you find the solution yet?@@siddhikamundada2453
Even though I allow location, the app is not fetching the location and temperature. Can you help here.
Same
Same
Clean and crisp
😊
9:11 The city Name and temperature doesn't show and i debug console it show "Failed to load weather data" Can anyone please help with this issue
Thanks 🙏
I've also had this problem but my problem was that I had the wrong url with /data/2.5/forecast and not /data/2.5/weather. Because I've copied the url from the OpenWeather page. Maybe you have the same problem.
@@llegioner In the open weather page where did you copy the url cause I can't find it
Nice little tutorial thanks!
By the way, unless I'm mistaken, if Dart works like most other languages, you can remove the if(...) for the sunny default, because you already have it in the default part of the switch. Also you could join the sunny and default cases together.
You are correct haha i have a bit of redundant code there. Thanks for that!❤
@@createdbykoko you're welcome! it happens to all of us 😄
I actually think dart requires it to be a bool.
it's not truthy and falsy like in javascript and some others, so you need to actually use a value that's a bool
@@createdbykoko Are you sure? I'm pretty sure you did it right and conditionals require a bool in dart
edit: my bad, @velGoesBrrr already put me in my place
@@liammcgarrigle I think you misunderstood the point here: The if(...) statement is redundant with the default case. And the function is returning a string, representing the relative path of the image asset.
To sum up, he could have removed the 'if(...)' line
and group the case 'clear' and 'default' (as he did with 'rain' 'drizzle' and 'shower rain' for example).
thanks founder of flutter
😂 HAHA u r funny
Great videos man. I still learn from you and it is easy. Thanks for your presentations.
thank you mitch, i learn a lot of greetings from peru
Hey Mitch,
Love your videos! Can you please make some tutorials on integrating some kinda ML into our apps too?
Would be a major help if you could just provide a simple tute 🩶
Hii yes I will note that ❤
bro im stuck in android permission there is error regarding the manifest if you can help plz
what a good presentation what a good teach. I think this tutorial will be in my mind for my entire life :) thanks bro
is that work for u?
thank you so much this was so helpful.
but i have a question
the City Name Always Shows "Loading"
and temperature Shows null
how can i fix it?
thank you so much this was so helpful, can you please make a tutorial on location tracking, or anything that is related to maps!
thank you!!!! Have a nice day!! 🥰🥰
8:35 Where did you get the 'uses-permission'?
ขอบคุณที่ให้ความรู้นะคะ ตามทันบ้างไม่ทันบ้าง แต่ก็ทำได้ ถ้ามีซับไทยก็อาจจะดีมากเลยค่ะ
Great tutorial. Thanks, man!
Please what's your recommended State Management Approach/Tool
Depends on various factors but the one you are most comfortable with until you reach a roadblock. Also depends on the scale/size/complexity of your app
@@createdbykoko alright
The transition diagrams in the video narration have a wonderful design. Could you please introduce the name of the tool and how to create them?
Just amazing much better than others which are cluttered and have too many data which are not required for common user's, but though loved it 💯
bro im stuck in android permission there is error regarding the manifest if you can help plz
bro doing everything like someone running behind him I watched it in 0.5x and its still unreadable and fast
I was watching at 1.5x 😂
i am not able to fetch details from api , does any one now what could be the problem ?
Same here. Code 401 according to the documentation the api key is not activated bur through Postman works fine.
Thanks Mitch, great tutorial
hi how are you, I like the tutorial, I followed your steps when making the code, but at the time of executing it, the message of incorrect parameters format appears in the debugging console, besides the message that the way to call the API by means of the url, is wrong, I don't know if you could help me.
I always get errors
Great tutorial!
❤️
Thank you very much, very well explained.
Nossa, que tutorial incrível!!!!!
is there any one have same problem ? I cannot get the response it cause by 400 api ? what can i do ?
String? city = placemarks[0].administrativeArea;
already fixed. u guys might check out that and wanna change placemarks[0]. ... depend on the result
I got the same error ...and whats the solution
@@mohammedriyaz8582 u better use print to see the result of placemark. In my case. The locale is null so i use administrativeArea instead
the output is keep returning this line 'failed to load weather data' , anyone have the same error ? and how im gonna fix it plz ?
Do you print each part individually to see where the errors is? Like print out the result of locale api. Then print the other variable after declare to find out. And all so the url
Thanks mitch very good tutorial..
please can you tell about the link you put on BASE_URL and the lines in builder ? because i don't know why but my app is not asking for location.
Hi Mitch, thanks for the amazing tutorial.
I'm trying to also add weather forecasts in the app, when you wanted to get the weather you called Future twice do I also have to do that when trying to get the forecast or I can just do it inside the already called Futures
I'm a newbie by the way the help would be really appreciated.
it is saying my location is mountain view which it isnt i found out that with openweather map that is like the deafult or smt like that can you tell me how to fix this error
Actually i just ran it on my phone and on my phone it says the correct information.
use a real device, it'll work
I am not able to find the direct git link of this weather app. is it there somewhere?
same, is there a repo?
can you make a tutorial on how to flutter app with admin page with backend
Always on point
Thanks brother ❤ how is flutter going for you these days?
Can you please make a full tutorial for creating a fully functional music player app ?
I got the error while running like this: "Dart library 'dart:html' is not available on this platform".
Is there any app which uses state management? Which state management library do you prefer?
hello mitch sorry to disturb you , would u like to give me the github of the book u creat i'm really interesting on how u add the text inside the app with that smooth 💜💜💜
how i get the links you copy it 🥲🥲 if anyone know how, please tell me.
Bro plz finish your firebase firestore playlist you were making separate videos for CRUD like you made Create and Read but after that you did not make of Update and Delete please make on them. You made a masterclass one but please continue that
He did create for update and delete
hi, can you please do a fitness tracker tutorial
3:47 How did you get the link?
Hi Mitch, flutter newbie here, everything works fine but for some reason it only loads the weather when (Out of the nations I have tested) the location is set to the USA or Mexico. According to the debug console I am successfully getting the position and placemarks, and yet I still get the "Failed to load weather error". Any help would be greatly appreciated!
Me too
Sir I am facing the error in can't load the weather data line in weather services file
Very helpfull! Thanks alot for that tutorial :)
@syedasadshah-go8ki
please can you tell about the link you put on BASE_URL and the lines in builder ? because i don't know why but my app is not asking for location.
Hello, I would like to ask a question. I want to make an application for studying. I want to take videos from RUclips and put them in it. My question is, I want advice from you. Should I say, “Tunril” the videos and put them, or do I put a link to them directly from RUclips, but without transferring the user to RUclips. He watches the video from the application, but if the video is deleted from RUclips, it will be deleted. From the application or putting the first idea, which is better? Is it possible to do this in filters? Thank you
When i call the Api url i keep getting, HTML response , not jsons response ,
Nice video :)
I followed the guide and errors just keep coming out I'm feeling exhausted :(
it only runs once then i becomes white screen how to fix it?
can you make a tuto on how to interact w spotify api cause its tricky asf
this is sick, man
Thanks ❤
Hey Mitch, hope u good? I’m a web developer and also interested in learning a flutter cause I wanna add mobile app career to my web development career and I came across ur channel hoping to start by watching ur videos. A friend of mine recommended ur channel to me n I wish to learn more about flutter🙌. This is my first video that I just watched from u but can u please take ur time while coding so I can try to understand everything u doing? Thanks.
from where he get base url i am having a issuw with that
why didn't we use dart convert and json.decode?
thank you very much for this amazing video. I have a problem, the city name and the temperature didn't show up I did everything ok but I think there is something wrong with implementing the service on my side to be honest I couldn't find the solution
Hi, I am also not getting city name and temp, did you find any soln?
i am still getting loading city and null temperature how do i solve that
yes me to
can you make a tutorial on how to change the app theme from inside the app with a button
I cover that in this one ruclips.net/video/-jdtfJe_sII/видео.htmlsi=Hb6YkTAMJwZEMYxj
Great tutorial
Gerçekten Harika. Güzel Anlatım. Teşekkürler.
Thanx for your video. Can you make a video about BLOC provider? Thanx
where can i get the files from i mean i cant find it on your git hub
sir what is BASE_URL and link how to write please discribe??
I'm just subscribing, thank you.
Welcome❤️❤️
can someone expalin to me like i am a 5 years old.. can i follow the exact same steps using flutters? because i see that he is using microsoft visual studio.
Can you create Apps with Clean Architecture pls?
Which font are you using in your final design? It looks awesome
oswald maybe
Hi, thanks for the great tutorial, awesome
Please, is a tutorial for using APIs for maybe a ecommerce app?
how did you ceate this intro ? i need help on such 3D videos please
please kings can someone send me the right source code of this tutorial?
where can i find the base url?
Hi sir, can u please give me the name of the lottie animation that u showed in one of the shorts and the create fun animations video. It was a man typing on laptop with a screen infront of him. Thankyou
Thank you first of all.
I downloaded the application as apk to my phone. However, when I open the application, it cannot find my location even though I have given location permission, and it remains on the initial loading screen. How do I solve it?
When I open it from my computer, this is not a problem.
i have the same error
@@Hadiths_Shorts i gave up learning flutter 😃
is that figna to create visual UI flow ?
where to get the base url ?
Which Link was taken as a Base_URL? at 4.25
Now that API asks for lat and lon instead of city
How get base url
Read it on 3:46
Can you upload,how to make user panel and admin panel with firebase in flutter,Please!!
some library not work on flutter 3.22.2 :((
@@tungphan1228 which oneeee
3:45 how to get link like that ah?
same
Why it does not show my location Correctly??? can anyone tell me??
legend
Hello everyone,
I guess there are lots of people that still has the null problem. I will provide the things I've checked and applied below.
1) Please make sure that the fields in like .json["name"] are correctly in the Weather class. Remember, API JSON's are structured and we have to use that structure.
2) If you want a special error to see, please use the response.body.
3) If you see the temperature but not seeing the city name, try to override the toString method in the Weather class and make it return the city name.
@@phoebusapollon great comment! ❤️ I love people like you
@createdbykoko thank you! your video was very helpful to me😊🖤
can you please elaborate in detail as I'm still getting the null problem.Is there something specific we have to change in the code in the weather model class that is different from what Mitch does in the video?
Thanks ❤
No problem! How is Flutter going for u?
@@createdbykoko pretty smooth, thanks to the ecosystem. But you've got to have a killer eye for nice designs and innovations.
thank you
No problem! How is flutter going for you these days?
@@createdbykoko i am a novice sir .plz help me with the permssions in android and ios
the BASE URL is working??
Thanks Teacher!
Make video Complete Ecommerce App
I have no coding experience. Is there a coding language I should learn before using flutter?
Python or Java are good for beginners. There are also many great tutorials about them on RUclips.
dart, dart is fundamental language for flutter
can you make a quiz app