No data from sever API’s is not showing on Listview using flutter

Try To below Code Your problem has been solved: Create API Call Function : Future<List<dynamic>> getJobsData() async { String url=”https://hospitality92.com/api/jobsbycategory/All”; var response = await http.get(Uri.parse(url), headers: { ‘Content-Type’: ‘application/json’, ‘Accept’: ‘application/json’, }); return json.decode(response.body)[‘jobs’]; } Write/Create your Widget : Center( child: FutureBuilder<List<dynamic>>( future: getJobsData(), builder: (context, snapshot) { if (snapshot.hasData) { return Padding( padding: const … Read more