-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathfetch_products.dart
76 lines (67 loc) · 2.11 KB
/
fetch_products.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import 'package:flutter/material.dart';
import 'package:woocommerce_api/woocommerce_api.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'WooCommerce API Demo'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
Future _getProducts() async {
// Initialize the API
WooCommerceAPI wooCommerceAPI = WooCommerceAPI(
url: "https://www.yourwebsite.com",
consumerKey: "ck_your_consumer_key",
consumerSecret: "cs_your_consumer_secret");
// Get data using the "products" endpoint
var products = await wooCommerceAPI.getAsync("products");
return products;
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: FutureBuilder(
future: _getProducts(),
builder: (BuildContext context, AsyncSnapshot snapshot) {
if (snapshot.hasData) {
// Create a list of products
return ListView.builder(
itemCount: snapshot.data.length,
itemBuilder: (BuildContext context, int index) {
return ListTile(
leading: CircleAvatar(
child:
Image.network(snapshot.data[index]["images"][0]["src"]),
),
title: Text(snapshot.data[index]["name"]),
subtitle:
Text("Buy now for \$ " + snapshot.data[index]["price"]),
);
},
);
}
// Show a circular progress indicator while loading products
return Center(
child: CircularProgressIndicator(),
);
},
),
);
}
}