Brother you are literally doing an amazing job here and it makes me so happy a Pakistani Developer to make such high quality flutter tutorials just like the international UA-camrs I am myself a mobile app developer and was in the shift of moving from native to the flutter world and the way you structure your videos is so awesome. Alots of love and goodluck for future always there to support and we need people like you ❤️
This video is very hepful and intersting. I have a question why the number print twice when click on back button in details screen? One thing just want to know when we will do back and forth on home and details will binding call everytime and inject dependency again and again?
Does anyone knows why the framework shows the information twice instead of once, you can see it in 27:34 at onPressed envent, and also in 29:38 printing the message twice.
@@EasyApproach oh , u r online :D thanks bro , i came to tell you that i resumed the video and i understand that's equivalent to setState , but u answered , thanks again :D
@@EasyApproach another question if i may , for app wide State mgmt , like we do in provider we do MultiProvider widget in the main.dart and we specify the ChangeNotifierProviders or ChangeNotifierProxyProviders , so it can be applied on app wide (all screens). if i wanted to do the same with GetX , should i just do the Get.put() inside the first route or initialRoute that i'm specifying in main.dart ? if yes , then how for authentication app when i decide whether to go for initial route (auth screen or home screen) can it be implemented ?
Great work indeed!! I have one question I want to listen custom object when they change their value, e.g. I am updating the value through silent push and I don't won't update the UI but just to listen the changed value and perform some actions not updating the UI. Thanks.
fantastic video... is very simple and everything is clear....... i need to ask if... for any reason you have experience about Riverpod state management................ for me now, is very difficult compare to GetX!!!! You are incredible, not an alpinist but is a very little problem :)
Thanks a lot for your work dude, this is one of the best and easiest explanations for the GetX i ever seen. Keep it up 🤝💪💪💪 definitely like and subscribe
Hii, Do we need to create different controllers for different screens? Like if i am using a bottomnavigationbar and on load of both the tabs i need to fetch the data from the api, Is there any widget like futurebuilder in getx which we can use to fetch the data from api and render the screen? Currently i have created two controllers for two tabs.
I want to send data to different screen on pressing a button. I am using Get.to(Screen( ), arguments; data) I only want to send data It send the data but also navigate to it Please give me. Some. Hint
Great video 👏🏼 Is GetX State Management is good choice for big applications used by big number of users? If not what state management solution would you recommend for me ☺️
Just started watching, and my first impressions are good. The accent is there but is minimal. The audio also seems decent. The only annoyance, and only a minor one, is that the video doesn't use up the whole screen, leaving a black border around the video. And that's just my FIRST impression. Looking forward to it.
@@EasyApproach You know what. I'm confused now. small bars on the sides are fine, but i was seeing bars at the bottom and top too, but they're gone now? maybe my laptop is just being stupid.
So you can still access the same Home controller from details screen even though it's been bound to home screen? What's the point of this binding thing there? Or have I missed something? Can you make the controller to be assigned to just one of the views and not accessed anywhere else ?
Without bindings you have to instantiate ("put") a controller before "finding" it, but with binding it automatically instantiates the controller when a screen is loaded. In this case he's able to access the HomeController from the details screen because it has already been instantiated (via binding) when he loaded the Home screen, so it's passed to the details screen. It's not really useful in this simple app, but in larger applications it is a way to link every required controller to a page, so you can be sure that they're available without worrying about instantiating them first in parent screens (ie if you remove a controller from the parent screen, it won't be available in other screens ,and it's going to be hard to trace the bug in a large codebase). It's just a way of organizing controllers, like syntactic sugar, but not required.
Hi sir, I want to inject external api with get getConnect(separate file works fine) but doesn't work it shows me dart ui not found error please help me to solve this...🙏
@@EasyApproach API working properly in postman but in emulator shows me "Connection refused,errno = 111,address = host" error i have use localhost as well 10.0.2.2:3000 still doesn't work. I don't know how to fix it
This video is too long, maybe one is searching for a specific feature of GetX and doesn't want to watch it all.
3 роки тому
So you could put timestamps like from 00:00 to 06:00 is introduction; from 06:00 to 08:00 is installation of the package; from 08:00 to 12:54 is basic navigation and so forth.
One of the best things in Flutter I've seen this year so far.
Thank you. Please subscribe the channel.
++;
Your audio is great, and your voice is easy to listen to! :D
Thank you. Please subscribe the channel.
watched a lot of tutorials for statemanagement , page routing but I didn't really fully understand, not until I saw your tutorial. Thank you
Brother , I noticed one thing in you you replied to most questions in comments great . That's all we proud to be a part of IT field.
:)
Audio is great.
Explanation is even better.
You rock
So much Value. Thank you soo much. One of the best flutter channel right here!!!!
Thank you. Please subscribe the channel.
Well it's long video but the knowledge you provide in it is worth watching. Great content and easiest possible description.
Thanks 😊
GetX is insane. And this tutorial was really good. Thumbs up for that.
Amazing tutorial.
Big Thanks From Algeria.
Brother you are literally doing an amazing job here and it makes me so happy a Pakistani Developer to make such high quality flutter tutorials just like the international UA-camrs I am myself a mobile app developer and was in the shift of moving from native to the flutter world and the way you structure your videos is so awesome.
Alots of love and goodluck for future always there to support and we need people like you ❤️
Jazakallah for your kind words
me too. loved your tutorial.
simple and easy way to learn much more from this video thank you 😍
You just made me use this library. Thanks!
Great intro to GetX. :)
Well explained. You make things look clear and easy. Thanks.
Thanks. Please subscribe the channel :)
wow you really are amazing!!!!!!
you explain everything very nice and I didn't even get tired!
thanks
Jazakallah :) please subscribe the chnnal
@@EasyApproach A long time subscriber ^_^
I am glad Zahra ❤️
Big fan brother. You are doing amazing work
Great tutorial! Would definitely use getX in some of my future applications. Thanks for this!
Great explanation thank you no one did it better than you ❤❤
Would be nice a serie about this package.. Nice video by the way. Thank you
Thank you. Please subscribe the channel.
@@EasyApproach im already subscribed :D nice channel :D
This video is very hepful and intersting. I have a question why the number print twice when click on back button in details screen? One thing just want to know when we will do back and forth on home and details will binding call everytime and inject dependency again and again?
legendary flutter channel
Thank you. Please subscribe the channel.
Easiest explaination ...great work 👍🏻👍🏻👍🏻🥰🥰🥰🥰
Thanks a lot 😊
Does anyone knows why the framework shows the information twice instead of once, you can see it in 27:34 at onPressed envent, and also in 29:38 printing the message twice.
24:45 what do you mean by making a variable observable ? can't you just access it anywhere ? i'm learning this while using Provider state mgmt
You can access it but making observable means whenever there will be update in observable it will update the UI reactively
@@EasyApproach oh , u r online :D
thanks bro , i came to tell you that i resumed the video and i understand that's equivalent to setState , but u answered , thanks again :D
@@moazahmed5388 😍
@@EasyApproach another question if i may , for app wide State mgmt , like we do in provider we do MultiProvider widget in the main.dart and we specify the ChangeNotifierProviders or ChangeNotifierProxyProviders , so it can be applied on app wide (all screens). if i wanted to do the same with GetX , should i just do the Get.put() inside the first route or initialRoute that i'm specifying in main.dart ? if yes , then how for authentication app when i decide whether to go for initial route (auth screen or home screen) can it be implemented ?
Great explanation, didn't feel like 40 mins. Thanks!
you has released the video of GetX while k2 was being climbed in winter! it's a fantastic coincidence!
It does not make much sense but I will take it anyways :D
@@EasyApproach :( you are not an alpinist!!! only good with Flutter :)
Haha
Can you pt2 using GetConnect and State mixin from API
Hi Maaz, this was an amazing tutorial. Very clear and articulate. Thank you.
Thanks please subscribe the channel
Please can you explain to us how to do a Splash screen with getx state management
Thank you for this presentation! you gave me powerful arguments to use the GetX framework.
Very well explained! Can you do a GetX Internationalization video as well?
can we use GetX in complex and big applications??
please answer brother,
Yes as long as you follow good practices of it
Superb video. Great explanation.
Thanks
Best GetX tutorial ♥️ Thank you!
Thanks for sharing. It's clearly explained, really like it!
Glad it was helpful!
Loved it brother it was soo amazing
Great video. Please do more videos about GetX with Firebase/Firestore as well.
Thanks for suggestions
Hello, would it be possible to have an English version of this video?
Hi, can u'll create a shopping app with getX step by step? or getx + firebase how u want.
Great introduction video for getx. Subscribed.
Really good explanation man... Keep going and Thanks
Subscribe the channel :)
Why is i bad to work with steams? Or to put it in other words: Is there a disadvantage not having the ability to work with stream when using GetX?
It is not bad but it is complex to handle, however, using getx you can avoid that complexity.
@@EasyApproach alright thank you for the clarification :)
Whats difference between get.find and get.put ?
Thanks Man. I understood everything clearly😎😎
Amazing we need part 2
Sure. Thank you. Please subscribe the channel.
@@EasyApproach subsribed a loonng time ago
Home page need to "/" instead of "/home" as will get error because app dont know what screen need to display when start.am I right?
Absolutely amazing
Hi
Can you please provide that slide show project that plays as you explain?
I m waiting for this tutorials
I m waiting for clean architecture in getx please make on tutorials
Will make soon!
Thanks for suggestion!
@@EasyApproach thanks a lot 😊
what is the disadvantage injecting the controller in main.dart like most provider does? They put Multiprovider or ChangeNotifierProvider to main.dart
Great work indeed!!
I have one question I want to listen custom object when they change their value, e.g. I am updating the value through silent push and I don't won't update the UI but just to listen the changed value and perform some actions not updating the UI.
Thanks.
Perfect explanation, Loved it. Thank you ❣🔥
a game changing way
fantastic video... is very simple and everything is clear....... i need to ask if... for any reason you have experience about Riverpod state management................ for me now, is very difficult compare to GetX!!!!
You are incredible, not an alpinist but is a very little problem :)
I didn't try riverpod. Could you please tell me how can I improve myself? Any feedbackm
@@EasyApproach if i could have an answer... i think may not see your videos
great v.tutorial! Would be nice to see getx and hive involved in a sample project! Thanks...
Sure. Thank you. Please subscribe the channel.
@@EasyApproach subscribed.. already! Thanks for sharing your knowledge..!
Thanks a lot for your work dude, this is one of the best and easiest explanations for the GetX i ever seen. Keep it up 🤝💪💪💪 definitely like and subscribe
Hii, Do we need to create different controllers for different screens?
Like if i am using a bottomnavigationbar and on load of both the tabs i need to fetch the data from the api, Is there any widget like futurebuilder in getx which we can use to fetch the data from api and render the screen?
Currently i have created two controllers for two tabs.
Very good explanation. Good job!
Thank you. Please subscribe the channel.
I want to send data to different screen on pressing a button.
I am using Get.to(Screen( ), arguments; data)
I only want to send data
It send the data but also navigate to it
Please give me. Some. Hint
thx alot! easy to understand.
what's the difference between CODEX and this GETX and others?
Can I request you to please make more videos on other state management systems?
please make complete series on GetX...
Sure will do it.
Thanks for suggestion. Please subscribe the channel to get udpates.
Great video 👏🏼
Is GetX State Management is good choice for big applications used by big number of users?
If not what state management solution would you recommend for me ☺️
Amazing 🔥 i need more videos on getx
Thanks 😊 please subscribe the channel.
I second that
We need more videos on GetX brother
Is it possible to update/change appBar item like icon or text with getx? I was tried but not succeed to update/change appBar item😔
Nicely explained,
Can you compare Getx Vs Mobx ?
Thank you. Please subscribe the channel.
Fo state management, i would prefer getx
Just started watching, and my first impressions are good. The accent is there but is minimal. The audio also seems decent. The only annoyance, and only a minor one, is that the video doesn't use up the whole screen, leaving a black border around the video.
And that's just my FIRST impression. Looking forward to it.
Thank you for your feedback. I will improve it
@@EasyApproach You know what. I'm confused now. small bars on the sides are fine, but i was seeing bars at the bottom and top too, but they're gone now? maybe my laptop is just being stupid.
@@TekExplorer not sure what is it, will check
Great tutorial. Well presented, easy to follow. Thanks!
Glad it was helpful!
Amazing explanation!
Thank you. Please subscribe the channel.
Great explanation
Subscribe the channel for more videos
So you can still access the same Home controller from details screen even though it's been bound to home screen? What's the point of this binding thing there? Or have I missed something? Can you make the controller to be assigned to just one of the views and not accessed anywhere else ?
Without bindings you have to instantiate ("put") a controller before "finding" it, but with binding it automatically instantiates the controller when a screen is loaded. In this case he's able to access the HomeController from the details screen because it has already been instantiated (via binding) when he loaded the Home screen, so it's passed to the details screen. It's not really useful in this simple app, but in larger applications it is a way to link every required controller to a page, so you can be sure that they're available without worrying about instantiating them first in parent screens (ie if you remove a controller from the parent screen, it won't be available in other screens ,and it's going to be hard to trace the bug in a large codebase). It's just a way of organizing controllers, like syntactic sugar, but not required.
Best for ever your voice so kinda ☺️ kindly make a video with firebase real-time database, authcation with getx thanks you ❤️
Nicely explained as always 👍🏻
Thanks a lot 😊
Thanks for this video. ❤️
Very good video Bro.. Need more.
More to come!
is it enough for building big apps using getx??
Yeah it is fine. But i prefer bloc
Very Good Tool !!! Thank you so much bro !
You're welcome!
Hi sir, I want to inject external api with get getConnect(separate file works fine) but doesn't work it shows me dart ui not found error please help me to solve this...🙏
Can you share the console with me
@@EasyApproach API working properly in postman but in emulator shows me "Connection refused,errno = 111,address = host" error i have use localhost as well 10.0.2.2:3000 still doesn't work. I don't know how to fix it
really helpful simple explanation, thanks
Glad it was helpful! Please Subscribe
Great job bro
Thank you so much.
You're welcome!
nice tutorial, really helpful.
Thank you. Please subscribe the channel.
very very good tutorial
Fantastic package, thanks for the introduction. Thumbs up!
Thank you. Please subscribe the channel.
amazing u are the best
I already subs your's, this video is great.
Amazing video
Always Appreciated but Please make more vadios on GetX Package
Thank you. Please subscribe the channel.
@@EasyApproach subscribe already
Very clear thaNk you so much
Nice. Can we have video timestamps? It would be very helpful. Thank you.
Sorry?
This video is too long, maybe one is searching for a specific feature of GetX and doesn't want to watch it all.
So you could put timestamps like from 00:00 to 06:00 is introduction; from 06:00 to 08:00 is installation of the package; from 08:00 to 12:54 is basic navigation and so forth.
ohh thanks for suggesting!
show us how to use it with google maps please
Awesome
How to dismiss a controller in Getx
aint no way boy!!! .. what?
Thanks for the explantion
very informative
Using streambuilder inside custom scrollview is so confusing
Amazing
Thank you. Please subscribe the channel.
Thank you!
You're welcome!