Hello,
I have a web application developed in Symfony and now I would like to create the mobile version of this application with Flutter but I could not interact with the services developed for example authentication. How should I do knowing that "services" are not REST services.
What do I have to do?
you can create new controllers straight to your services, in the end you will server as an api
1 - make sure that you do not have dependencies coupled on your controller and everything as well implemented on their respective services layer.
2 - just make a v2 still comunicate with your services, but in your v2 you should return json whitin your new controller, don't forget to specify a new path for those services that will be use your service as api prefix: /api