Awesome man. I am working in an IT firm in Bangladesh and I'm an android developer. Now my company is thinking to convert all the apps into flutter. I am learning flutter and the tutorial was a big help. I will recommend others, with some same basic knowledge in flutter like await, Future, http .get, json.decode (which are very easy if you have app develop experience) this video explains everything of MVP in Flutter
Do you have a flutter video, explaining dependency injection? because i saw many videos talking about InheritedWidget which I don't think is a dependency injections (not that much DI), thank you.
this was a good video tho i dont have any knowledge about dependency injection....i understood what the op was tryna do and thats enough...will come back to this video after learning dependency injection
You are awesome, please upload more and more tutorial, what we need to create an app like ui, multiline text, api call with Singleton, search in list, please make these all stuff and any other according to you . Your tutorial help me alot learning by this.🙏🙏
hello sir can you create example of mvvm architecture......basic structure i got...changenotifier ,proxyprovider.......but i could not understand real life example..... 1)can you create example app like i call api login and then how to change proxy provider and call other api in homeviewscreen ....because i am not getting how to handle more than one api response with different model in different screen ...if you can help me
Thanks for the video,I will like to know if i can have both bottom navigation tab bar( that shows in the Appbar ) as well as well as the bottom navigation tab bar that shows at the bottom of the screen.Thanks
i followed both tutorials on MVP architecture and MVP LOGIN REST, I tweaked the POST method in the network_util file but I am able to get a server reply but I can't navigate to another page on server response also I am getting a Failed assertion: boolean must not be null error....Please how do i resolve this
i have a (Item-screen-page). it was called by another (Screen) always. so (Item-screen-page) always Navigator.push( context,aterialPageRoute(builder: (context) => Item-screen-page()), i don't want to call the time. i want to hide or store page in memory. how can i do?
Hi congrats for your good work, learning a lot from it. I tried to run the code from the repo and loading from Prod works fine, except that the icons give a 404 error. And switching to MOCK throws a bunch of errors and shows nothing. On inspection I saw that the Mock repo did not include the symbol, so I added it just to see new Crypto(name: "Bitcoin", price_usd: "800.60", percent_change_1h: "-0.7", symbol: "BTC"), and then it worked, but... only the 2 first items show. Debugging I found out that the index jumps from 0 to 2, skipping 1, so we see Bitcoin (index 0) and then strangely Ethereum which index should be 1 shows up under index 2.
If I add more data in the mock repository, the result is only updated if the application is restarted. How can I update the mock repository without restarting the app?
Thanks for the amazing explanation and practical implementation. I found this (medium.com/@develodroid/flutter-iv-mvp-architecture-e4a979d9f47e) medium story that is very similar to what you just showed. It might help someone who wants to follow a written format instead of video.
Awesome man. I am working in an IT firm in Bangladesh and I'm an android developer. Now my company is thinking to convert all the apps into flutter. I am learning flutter and the tutorial was a big help. I will recommend others, with some same basic knowledge in flutter like await, Future, http .get, json.decode (which are very easy if you have app develop experience) this video explains everything of MVP in Flutter
Excellent explanation of MVP architecture. You saying 'Oh ****' every so often when you make a mistake is classic.
You explained it very well. I followed so many articles but the way you explained in video made it very easy to follow.
Do you have a flutter video, explaining dependency injection? because i saw many videos talking about InheritedWidget which I don't think is a dependency injections (not that much DI), thank you.
this was a good video tho i dont have any knowledge about dependency injection....i understood what the op was tryna do and thats enough...will come back to this video after learning dependency injection
this was one of the best examples you explained ... keep it up
I agree!
Thank you for your video
You are awesome, please upload more and more tutorial, what we need to create an app like ui, multiline text, api call with Singleton, search in list, please make these all stuff and any other according to you . Your tutorial help me alot learning by this.🙏🙏
Was helpful.
Best Flutter - MVP explanation ever!
Thank you very much.
Thanks for your kind words
Thank you man your tutorials are awesome thanks
I come from android native development, and MVP pattern looks the same, But what about testing on flutter apps?
Great video bro!
Awesome detail. Can you make video on MVP using Provider pattern. Provider pattern will be used more going forward.
Amazing topic mvp
Please I need more of such amazing advanced videos
Thank you for the video, I finally found DI usefull (changing MOCK and PROD) is super cool!
Very good work .Learned a lot.Looking forward
Awesome, thanks!
Hi, firstly thanks for great tutorial. What is the difference between bloc and mvp . Which one I can use and how to identify
Thanks Sir,
do you have a video on your crypto app which you are using in this video?
Yes
@@HelloCodepur please send me
your voice made my legs shiver
for sure I understood about DI from bad Example (Only one developer for Android Project) hahahah :D
Excellent !!
This is an off topic, what extension did you use for code formatting on your vscode and your theme also?
It looks good.
Prettier
What to do if we have 100 apis ... Do we need to create repository for each api ? And if yes where should it be defined ?
hello sir can you create example of mvvm architecture......basic structure i got...changenotifier ,proxyprovider.......but i could not understand real life example..... 1)can you create example app like i call api login and then how to change proxy provider and call other api in homeviewscreen ....because i am not getting how to handle more than one api response with different model in different screen ...if you can help me
Awesome video! Thanks. Could you explain how "Injector._internal" works?
Amazing video! Thank you so much!
I learned a lot with you! Thanks again.
Thanks for the video,I will like to know if i can have both bottom navigation tab bar( that shows in the Appbar ) as well as well as the bottom navigation tab bar that shows at the bottom of the screen.Thanks
yes
I feel honored,thanks for the quick response
Do you have the one with non-mvp implemented in github ? If so then please share the link ...... I didn't even find that on any branch
i followed both tutorials on MVP architecture and MVP LOGIN REST, I tweaked the POST method in the network_util file but I am able to get a server reply but I can't navigate to another page on server response also I am getting a Failed assertion: boolean must not be null error....Please how do i resolve this
Thanks a lot for the tutorial bro, but I wanted to ask that which method should I call to refresh my list in a Refresh Indicator.
thz, bro.. more and more flutter tutorial , I am learning flutter your tutorials
have you made videos on dependency injection? I couldn't find one in your channel. Can you please make one in details?
i have a (Item-screen-page). it was called by another (Screen) always.
so (Item-screen-page) always Navigator.push(
context,aterialPageRoute(builder: (context) => Item-screen-page()),
i don't want to call the time. i want to hide or store page in memory. how can i do?
thanks very much, such as great TUT 👍🏻
great video mate! thank you
Pls explain about factory
Sad that CoinMarketCap API is deprecated now, can't test what I learned and built with you .. :(
What is your vscode theme, bro?
Any resources from I should learn dart language?
how can I make API according to my custom data
I want to use API
but don't understand how can I put my own fields and own data!!
Hi congrats for your good work, learning a lot from it. I tried to run the code from the repo and loading from Prod works fine, except that the icons give a 404 error. And switching to MOCK throws a bunch of errors and shows nothing.
On inspection I saw that the Mock repo did not include the symbol, so I added it just to see
new Crypto(name: "Bitcoin", price_usd: "800.60", percent_change_1h: "-0.7", symbol: "BTC"),
and then it worked, but... only the 2 first items show. Debugging I found out that the index jumps from 0 to 2, skipping 1, so we see Bitcoin (index 0) and then strangely Ethereum which index should be 1 shows up under index 2.
I'll look into it and thanks
thank you.
inspite of specifying Flavor.MOCK in main.dart it is still showing Flavor.PROD
Amazing!
thanks for your effort
If I add more data in the mock repository, the result is only updated if the application is restarted.
How can I update the mock repository without restarting the app?
@MTechViral - The Real Tech Channel
Tell me please, how we can add another entity?
Looks like too much code per one entity, is it ok?
Amazing thanks! :)
welcome :)
i'm waiting for a new video based on MVVM and rxDart :)
Please create a simple CRUD application with MVP architecture
please make another video explaining, how to implement MVP pattern.
made a video with sqlite
I like the content of the videos, however they seem very lengthy. Keep up the good work.
thanks and yeah because the concepts are actually lengthy to demonstrate
thats great (Y)
Thanks for the amazing explanation and practical implementation. I found this (medium.com/@develodroid/flutter-iv-mvp-architecture-e4a979d9f47e) medium story that is very similar to what you just showed. It might help someone who wants to follow a written format instead of video.
your link is dead ... remove ")" from link part
Please make a course on dart language
i will make a course soon..
Your CryptoUrl is probably not working anymore.
OK thankyou
How can i have the iPhone simulator please ?
if you have a mac 💻 you can download xcode
There's no solution for windows ?
AFAIK only solution is Mac Agent
Ok thanks, congratulation for your videos
Plz create blood bank....Plzzzz in flutter
30:00
"The argument type '_HomePageState' can't be assigned to the parameter type 'CryptoRepository'."
What is the error?
@MTECHVIRAL ?
Please get a better microphone.
What about Hindi..?
Hey! You talk too much men, go to the point! This is why sometimes I hate youtube!