Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 days ago.
Improve this question
Currently, I have gone through Bloc, GetX, Provider, and Clean architecture in flutter application development. I want to know what is the best architecture pattern for a Banking App in a flutter with the following,
Security
Reliable
Maintainable
Easy to use
For the long run
Bloc, Redux, Mobx, Riverpod, Provider.
You can read a documentation about it and choose one of them
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 hours ago.
Improve this question
I want to become an Mobile Application developer and i had just finished a beginner course on Android dev using Kotlin.Can any one suggest me what should be my next step towards my goal.What topic should i learn next?
Should it be Flutter,Jetpack,Firebase,Retrofit,React Nativ etc.
I need mentorship!
Roadmap to Mobile Application Developer
You should learn these:
DataBinding
Coroutine
LiveData and Flow
or these:
Navigation
Room
I think it's important to you .
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
As there are many techs to achieve SM in Flutter....
Which will be best as a intermediate while developing a real world app??
As for starter try to learn Provider, it's simple. No need in learning another packages. Currently, I have 2 projects based only on Provider.
It's depend upon you and your requirements. You have to maintain the state based in your scenario. All the package you mentioned, used different different approached for state management.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
What is the best architecture?
I have to use Firebase, Mobile (android / ios) and Web(angular). I would like to build an API so that services are consumed from mobile and web, but we have not Firebase backend. Any ideas?
For your case, if you want to avoid tightly coupled code, then I suggest you to see "Clean Architecture" by Robert Cecil Martin.
Fernando Cejas has written a nice article about it and used in conjunction with MVP to separate Presentation from Business Logic. You can refer to his article,link given:
Architecting Android…The clean way?
If it seems more complicated and your code base is small, you can still use MVC to meet your requirement.
Hope that helps.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I am android developer, now I want to start iOS app development, so I need to know which is better swift or react native to start for iOS development and which has better future.
Guess react native is better. See the opinion from an ios developer
https://medium.com/ios-os-x-development/an-ios-developer-on-react-native-1f24786c29f0#.yyib1dviq
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I want to do an app for the three platforms : Android, Apple, Windows and I want to know what is the best choice to store local data on devices, to have a common data base, easily reusable for each platform ?
Thanks for your help
sqlite is likely to be supported on all 3 platforms, and is fairly powerful and widely supported.
As to the "best", that's an opinion, and even if there was an objective "best fit", the best fit would be different depending on the needs of your project.