0

when i get data from API Arabix words doesn't show and it show like this enter image description here

is this from flutter or Django Restframework?

flutter request ''' final url = Uri.parse('http://127.0.0.1:8000');

  final data =  await http.get(url);
  final flats = json.decode(data.body) as List<dynamic>;
  if(flats==null) {
    return;
  }

print(flats)

'''

1 Answers1

0

The solution was to use dio instead of http.

Wai Ha Lee
  • 8,598
  • 83
  • 57
  • 92