I'm 3 years experienced ionic Angular Mobile App developer. I've started flutter development two days ago😀 because I've to deal with a flutter E-Commerce project. So the point is being an experienced developer I can say that watching your video is worth going. Thanks for such good Stuff May Allah bless you.
Brother plz help ! I have 2 months left for the completion of my graduation , i know the basics of flutter , api , few sorting algorithms . How can i be job ready as flutter developer in 2 months .?
Thanks a lot for this tutorial! 🔥 As for a beginer API calls was a real nightmare for me. But with your tutorial everything gets nice and clear for me. I'm sure with practice it will become like a second nature! Appreciate your effort a lot! 🙏🏻
Thanks for the video, really helpful, anyone just getting into flutter and learn http request needs to watch this. Alot has actually changed in a couple of months. Especially with null safety.
Kindly Post Complete Rest Api Model Which Means Multiple API Data Fetch , API Parameters , Headers Concept Returning Data By Validating Headers , Multiple Endpoints This Could be Help Us lot
thanks for the helpful video. whenever i navigate into a page that requests data, i get a "null check operator used on a null value" error screen for like 0.1 seconds. then page loads with no problem. any idea why?
Thanks. At 6:15 you mention that it is recommended to create an http client instance. By that, do you mean a global variable in the class? If so, would this class be static or a singleton to avoid re-instantiating the client instance? This is what I want to build for my project, that will also handle authentication, so with each call, do a check of the current token expiry datetime subtract the current datetime to see if my token is still valid, and if not, re-authenticate, update the auth headers and continue with the request. What I can't find is whether I should do this static class, or extend http client (or both). What are Flutter industry standards?
Thank you so much for being connected with CodeX. I will try to cover Bloc in of my video.. but you can get fair idea looking at StreamController video on my channel.
I want to learn how to handle apiKey and accessToken on real projects. Please do same using RapidApi endpoint to fetch list of soccer teams and few meta data.
RapidApi itself requires some knowledge to setup and get the access token, Currently this tutorial only teaches the basic of API. Hopefully in future I will do tutorial with custom APIs
Sir I have done it and am using it to get news in the app from a free api but the problem I am facing is that there are a limited number of requests I can make which turns into an error, can you tell how we can create our own apis with default data in it to show I. Our UI.
what you meant by restful api integration ,because the api integration must follow some rule to implement rest ful api integration? otherwise it's just only api integration
I'm getting these two errors. 1. The body might complete normally, causing 'null' to be returned, but the return type, 'FutureOr', is a potentially non-nullable type. Try adding either a return or a throw statement at the end. 2. A value of type 'Post' can't be returned from the method 'getPosts' because it has a return type of 'Future'.
@@CodeXdev Quicktype.io does not return the same code showed in the video, I fixed the error by copying your file post.dart (The lines in question are, in the video, the 7th and the 8th)
Great tutorial i installed your code on android phone and the data never loads. the screen stays on loading page. any reason why. it works on my computer but when i build the apk and install on android phone it hangs
Hello there,thanks for the great work I really learned a lot but I wanna ask a question. How can I turn this a news app? How should replace the news api into this? Yeah I know there is a lot of examples of that but they're too old
Git Source: github.com/afzalali15/REST-API-with-Flutter
can you explaine Post, delete and put also???
Sir I am working on flutter connect moodle API is there any way I can get real-time data please help me thank you
I'm 3 years experienced ionic Angular Mobile App developer. I've started flutter development two days ago😀 because I've to deal with a flutter E-Commerce project. So the point is being an experienced developer I can say that watching your video is worth going. Thanks for such good Stuff May Allah bless you.
Thanks for sharing 😍
Brother plz help !
I have 2 months left for the completion of my graduation , i know the basics of flutter , api , few sorting algorithms . How can i be job ready as flutter developer in 2 months .?
in 12 minute i learn 3 things
Flutter, Flutter applying API, and API it self
kudos
Wow, i feel so stupid right now, i've been struggling with APIs for over a week now and i am just 2 mins in and i am 10x smarter, thanks
Thanks a lot for this tutorial! 🔥 As for a beginer API calls was a real nightmare for me. But with your tutorial everything gets nice and clear for me. I'm sure with practice it will become like a second nature! Appreciate your effort a lot! 🙏🏻
100%
Thanks for the video, really helpful, anyone just getting into flutter and learn http request needs to watch this. Alot has actually changed in a couple of months. Especially with null safety.
Thank you so much 😍
you are one of the good flutter guy. impressive tutorial. I hope people will recognize you more.
Can we get 1K likes in a week 🥰😉
Yes
Sir Please make a video on socket api please please please
You explain very well and logically. Thank you for your good videos bro. In the hope of Allah, you will be more successful than you are.
Many many thanks
Production quality is so much better. Same info covered in shorter time. Great work.
Much appreciated!
Obrigado mestre!continue com o ótimo conteúdo!saudações do Brasil
Finally I found what I've been looking for. Thanks! :)
thank you.. clear and straight forward to jump forward to implement api in flutter ❤
Thank you so much @Bijak :)
i subscribed because i loved the way you present it
Amazing, working hard to produce more awesome content. 😍
Truly great tutorial, exceptional content and style!
Great work ever sir.... Uh didn't waste a single second👍
Thank you so much 😀
Really and extremely helpful nice job 👌🏾👍🏾
Thank you for this tutorial. You just earned a new sub
Kindly Post Complete Rest Api Model Which Means Multiple API Data Fetch , API Parameters , Headers Concept Returning Data By Validating Headers , Multiple Endpoints This Could be Help Us lot
Yes, good suggestion for advance level tutorial
Thankyou so much, I don't have words.
You already wrote 7 words😜, thank you for the feedback 😍
Excellent Tutorial Thanks for that 👏👏👏
Glad it was helpful!
It would be nice if there was a video explaining the implementation of search bar
please make it
Waiting for it! Searchbar using GetX
thanks for the helpful video. whenever i navigate into a page that requests data, i get a "null check operator used on a null value" error screen for like 0.1 seconds. then page loads with no problem. any idea why?
Kindly Make a detailed tutorial of BLOC...
incredibly well explained. Thank you!
Glad you liked it!
cThis very nice video than other api video of your channel . Can u give the video of all crud operation for same api. that will be very helpful.
Hello, this is a very well-explained video! My request: could you please combine it with the GET and POST method for this API topic using HTTP?
Thanks for feedback 😍 Will do a video covering GET, POST, PUT n DELETE 👍🏼
Thanks. At 6:15 you mention that it is recommended to create an http client instance. By that, do you mean a global variable in the class? If so, would this class be static or a singleton to avoid re-instantiating the client instance? This is what I want to build for my project, that will also handle authentication, so with each call, do a check of the current token expiry datetime subtract the current datetime to see if my token is still valid, and if not, re-authenticate, update the auth headers and continue with the request.
What I can't find is whether I should do this static class, or extend http client (or both). What are Flutter industry standards?
Last few yrs i following your chennal . I saw all video and also live stream.can you give dedicated video for bloc .
Thank you so much for being connected with CodeX. I will try to cover Bloc in of my video.. but you can get fair idea looking at StreamController video on my channel.
hindos i love you 🔥🔥🔥🔥🔥🔥 ireally apreciate it bro
U r just awesome , waiting for more such quality content🥰🥰🥰🥰🥰
Subscribing is the only option 😆 see you in the next video 👍🏼
This is wowwwwwwwwww broo... Keep it up
Thank you so much 😀
Thanks, this content is meaty!
Glad you enjoy it!
Thanks, this vídeo helps me a lot
Glad it helped
I want to learn how to handle apiKey and accessToken on real projects.
Please do same using RapidApi endpoint to fetch list of soccer teams and few meta data.
RapidApi itself requires some knowledge to setup and get the access token, Currently this tutorial only teaches the basic of API. Hopefully in future I will do tutorial with custom APIs
@@CodeXdev i agree with you that it's not an easy challenge.
However, i'll be very pleased if you attend to my request.
Thanks again for the tutorial! i got an issue my vscode complains when i try to return postFromJson(json); it looks like the method is not working
Sir plz make a video on isolates. And how to use isolates with api
After long time n yaa thank you for the tshirt 🤝🏽🤝🏽
Yeah, I was on vacation and didn't managed to upload, but now I am back!
Love it 💕 thanks for the great knowledge
So glad!
You are the best ❤
yeap its run totally thanks dude
Hey! Can you make a tutorial on how to make geofence in Flutter ?
Great content! Thank you
Thank you Brother🤩
Wonderful bro outstanding ❤️❤️❤️❤️ one request please continue this for delete and update kindly 🙏🙏🙏
I will try my best
@@CodeXdev yes bro please my flutter exams r in 2 weeks
Thank you very much!
Awesome! Thanks!
Amazing! THANK YOU!!!!!
easy ! this is greay sir
Great tutorial! Can you please provide a github repo for your code
In the pinned comment!
That notification is very disturbing bro 😅😅
I owe you my life *bows*
sir , make video like this but using DIO. what is difference DIO and HTTP ? which one is better ?
Super Bro lot of thanks
Awesome. Can you make a video showing how to create our own rest api and connect to SQL server that will a great help. Thanks in advance
Thanks for the video.
you are the best
thanks you so much , great !!!!!
jestes szefem ziomek, ale i tak nie oddalo pozniej
i was finding the exact tutorial...thankyou so much.
can you also do firebase tutorial and sql database plsss
Great to hear that it helped, Surely planning Firebase tutorials soon!
life saver
So this is GET operation, what about POST?
hlw sir your way of teaching is too good, can you make a video on API integration with get and post method together on a bigger project
Sure, working on it ☺️
@@CodeXdev when will it release?
Sir I have done it and am using it to get news in the app from a free api but the problem I am facing is that there are a limited number of requests I can make which turns into an error, can you tell how we can create our own apis with default data in it to show I. Our UI.
Great tutorial
Amazing!!!!
what you meant by restful api integration ,because the api integration must follow some rule to implement rest ful api integration? otherwise it's just only api integration
Can you make a video on Mvvm with api calling using getX and with pagination as well?
I have a video for API calling using GetX... you need to learn pagination separately and apply in this 😉👍🏼
Hi bro,
can you please do a tutorial on flutter php mysql REST API...that would be so much helpful to me.
Good job
thank you amazing tuto
Perfect. Bravo.
Great stuff
Please make a complete free course for flutter
I'm getting these two errors.
1. The body might complete normally, causing 'null' to be returned, but the return type, 'FutureOr', is a potentially non-nullable type.
Try adding either a return or a throw statement at the end.
2. A value of type 'Post' can't be returned from the method 'getPosts' because it has a return type of 'Future'.
did u get a fix for the second one?
Did you solve the second error?
Can you report this on GitHub, I will have a look at the code and suggest potential fix
@@CodeXdev Quicktype.io does not return the same code showed in the video, I fixed the error by copying your file post.dart (The lines in question are, in the video, the 7th and the 8th)
life saver!
thanks for the video. how to do when api key is needed?
Great video indeed. How are you bringing up those context menus to create the widgets? Is there an extension you have to install?
Thats in built, command+. on mac system
thanks you man
Amazing tutorial❤
Thank you! Cheers!
can you show us to load local json data?
Great tutorial
i installed your code on android phone and the data never loads. the screen stays on loading page. any reason why. it works on my computer but when i build the apk and install on android phone it hangs
Internet connection, either you don’t have permission in manifest or you don’t have data 😬
Plz make some videos for firebase.
Cool ❤🔥
Well lockdown started with Blender but since my laptop can't handle it, I've relocated
Shifted to Flutter? FYI, Blender is fun and I love to spend some time there cause it gives my imagination wings.
Hey, thanks for your tutorials, I'm a big fan. I wanted to ask which software you use to record and edit your videos.
I record using OBS and edit inside Premier Pro
@@CodeXdev thanks
Thanks for that claps🎉
Awesome...thank you...
Welcome 😊 appreciate your comment!
We can also use Json to dart plugin, if you use android studio
Yes.. this is just one of the options!
Bro please complete curd ✌️✌️
one video on connecting blogger api v3 with flutter please
if possible tomorrow...
waiting for your positive response
thank you
😜 development doesnt work like that. you need to book paid consultation for this. BMC is one of the option
Can I use the same code to access users?
How to do it if I have application password of my WordPress website?
Can anyone help me in this I am getting error in this line of code.
posts = await RemoteService().getPosts();
What is that error? You can share on discord group
Can you help me
I am stuck on google map
How can I visible all markers info window???
Please
Hello, Please Give Me a Link of Your Github Account to Some Project for How can we SetUp For Project Routes,Utils,Modules,CommonConstant in Getx
Amazing
Thanks for listening
subscribers done🇧🇩🇧🇩
If i don't have a json file and want to get data displayed in specific file , how to do this?
are you have a videos auth login using rest api in flutter, bro?
Hello there,thanks for the great work I really learned a lot but I wanna ask a question. How can I turn this a news app? How should replace the news api into this? Yeah I know there is a lot of examples of that but they're too old
Change URL, replace model with News model and you'r done!