Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to Start Flutter Backend Development? [closed]

I am new to flutter and programming as well. I am following flutters official docs and have sailed smoothly till State Management. After that it has section for networking https and json serializing. here

I have no idea about backend and networking and json please help me or guide me how to connect and access servers for my app.

like image 746
rushikesh chaskar Avatar asked Dec 01 '25 03:12

rushikesh chaskar


2 Answers

Don't worry! First, you need to learn a bit of JSON and Rest API

Here is a random tutorial

https://www.smashingmagazine.com/2018/01/understanding-using-rest-api/

Hope it's good) or google it yourself "what is JSON rest API"

What you need to know that there is no "Flutter specific backend" there is an app and the server and most popular way to communicate is Rest API.

Second, you will need to learn How to send a request and receive a response from the server. Hope its in your tutorial and after understanding what is Rest API and JSON it will make sens to you.

But there are great flutter official docs about that

https://flutter.dev/docs/cookbook/networking/fetch-data

Finally Firebase It's wonderful, thanks to google for it, it provides you a server for your app for free (at least when there are no too much of real users), It will save you a lot of time and money because it provides easy to use free servers that require minimum knowledge of backend

like image 193
Philip Dolenko Avatar answered Dec 02 '25 19:12

Philip Dolenko


you can start with with packages for basic http request : https://pub.dev/packages/http

like image 38
Windsor_Elliot Avatar answered Dec 02 '25 18:12

Windsor_Elliot