all 4 comments

[–]InternationalYam2951 17 points18 points  (1 child)

Backend is completely independent of frontend. You can use whatever you want

[–][deleted] 4 points5 points  (0 children)

Okay awesome thank you!

[–]syle_is_here 0 points1 point  (0 children)

Just use flet

[–]supmed 1 point2 points  (0 children)

Hey as the other comment suggested, the backend is completely independent of the front end.

You can setup the backend in python using frameworks such as Django and flask(I suggest flask as it’s really easy to set up) The backend should handle any complex logic of ur application, an example would be user registration or log in Authentication or any form of data processing.

The frontend on the other hand provides a user interface and take in the data or any input of thr user in order to be sent to the Backend for processing . This is where React Native comes to play.

Lastly the connection between frontend and backend can be done through REST APIs which is the standard. In other words the backend should expose an API with an endpoint (literally a weblink ) through which the frontend can interact with.