muh :(
This commit is contained in:
14
lib/api/fetchdata.dart
Normal file
14
lib/api/fetchdata.dart
Normal file
@ -0,0 +1,14 @@
|
||||
import 'package:f0ckapp/model/item.dart';
|
||||
import 'dart:convert';
|
||||
import 'package:http/http.dart' as http;
|
||||
|
||||
Future<List<Item>> fetchDataFromApi() async {
|
||||
final response = await http.get(Uri.parse('https://f0ck.dev/api/v2/items/get?mode=3'));
|
||||
|
||||
if(response.statusCode == 200) {
|
||||
List jsonresponse = json.decode(response.body)['items'];
|
||||
return jsonresponse.map((tmp) => Item.fromJson(tmp)).toList();
|
||||
} else {
|
||||
throw Exception('failed to load feed');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user