Would want to convert a Laravel Application into to a mobile App Both Android and IOS. Whats the best foundation to start on and the basic principles to adhere to.
In the process of learning flutter. Not sure if that’s the best place to start. Any recommendation and advise will be appreciated
2
Answers
There are some options you can choose from when ‘migrating’ a webapplication to a native mobile application.
Since you’re already learning Flutter, this might be a good path to stick with. You can create a Flutter app that interacts with your Laravel application through an API
Another popular option for developing cross-platform mobile apps is React Native. Similar to Flutter, you write your code once and it compiles for both Android and iOS.
For very simple applications, you could create a mobile app that essentially acts as a wrapper around a web view. This approach is less powerful than Flutter or React Native. (link)
If you want to use Laravel as backend, you will need to interact through an API.
Some basic Principles to Adhere to:
The right approach depends on your specific requirements and resources.
first of all you must know how they communication and transfer the data.
Many apps communicate with API (Web Service).
In my humble opinion , maybe you can choose this option :
But it have a pros and cons , you can browse and google that. (Recommended Option if you have no time)
Please correct me , if iam get wrong. Just help with my little experience 🙂