Do you have any future plans of using getx package on your tutorials
@islandcoder8763 жыл бұрын
I could do a tutorial series on getx
@islandcoder8763 жыл бұрын
Thanks for the support!
@smsmms59583 жыл бұрын
Hi, I hope you are fine. Thank you for all these tips and tricks that helps a lot of us. I have a question, I hope I will be clear, Is there any way to make a flutter app that allows upgrades, on Android and ios, of some features depending on user's subscription type? Example, 10 users download and install the same app, let's say 3 of them subscribe to a premium plan, they must receive an upgrade with new features. The idea is to manage the app size and keep it as light as possible (other users will keep the same working app) Note : it's for a social network, all users interact together) Thank you in advance
@islandcoder8763 жыл бұрын
Yes it’s possible, that’s precisely what in app purchases do. Apple and Google already have the infrastructure that allows you to implement this fairly easy. If u want to create your own solution then you will have to have some mechanisms that handles feature flags, then you turn on certain features based on whether or not the user paid for that feature. Hope this make sense.
@smsmms59583 жыл бұрын
@@islandcoder876 thank you for your quick response, I suppose that what you are talking about is enabling features that are already in the app (hidden features), what I want is to download and add new modules to the app. I hope you understand what I'm meaning Thank you once again
@islandcoder8763 жыл бұрын
It can be done but would be more difficult, you would have to create different templates, that represents how the UI will look and then you’ll have to parse those templates to create the new feature and display it in app.. you most likely would have to create your own template engine.
@smsmms59583 жыл бұрын
@@islandcoder876 thank you again. I know that there is a solution of dynamic features delivery, I have to find a good tutorial that explains that. I hope it will be the same for both Android and ios. Once again, thank you for your attention.