3

I have created my website using Java Enterprise Edition (JSP/Servlets) and MySql 8 for my database. It is a typical CRUD application with a feature that let the user track the car's location. I thought of using Flutter since it will save me time with its cross-platform capabilities but I have'nt found any documentations that will make the user login from the app to my website and fetch some data. I'm pretty sure it is possible somehow. Otherwise is there a way to simulate my website as fast as possible without using Chrome obviously.

Programmer_3
  • 522
  • 5
  • 18
Zied Orabi
  • 73
  • 1
  • 6
  • Use : https://flutter.dev/docs/cookbook/networking/send-data to send and https://flutter.dev/docs/cookbook/networking/fetch-data to fetch data from your CRUD application. – Mike Aug 29 '20 at 19:03

1 Answers1

1

Read the concept of Rest APis.Simply use the api to fetch data and you can also save data through api.You need to Connect your app to your web APi.

Programmer_3
  • 522
  • 5
  • 18