woocommerce 0.9.7 woocommerce: ^0.9.7 copied to clipboard
Woocommerce SDK for Flutter. The Complete Woo Commerce SDK for building Flutter Ecommerce Applications with amazing features.
import 'package:flutter/material.dart';
import 'package:woocommerce/woocommerce.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'WooCommerce Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: "Woo Commerce Demo"),
);
}
}
String baseUrl = "";
String consumerKey = "";
String consumerSecret = "";
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
List<WooProduct> products = [];
List<WooProduct> featuredProducts = [];
WooCommerce wooCommerce = WooCommerce(
baseUrl: baseUrl,
consumerKey: consumerKey,
consumerSecret: consumerSecret,
isDebug: true,
);
getProducts() async{
products = await wooCommerce.getProducts();
setState(() {
});
print(products.toString());
}
@override
void initState() {
super.initState();
//You would want to use a feature builder instead.
getProducts();
}
@override
Widget build(BuildContext context) {
var size = MediaQuery.of(context).size;
final double itemHeight = (size.height - kToolbarHeight - 24) / 2;
final double itemWidth = size.width / 2;
return
Scaffold(
body: SafeArea(
child: CustomScrollView(
slivers: <Widget>[
SliverToBoxAdapter(
child: Container(
margin: EdgeInsets.all(10),
child: Text('My Awesome Shop',
style: Theme.of(context).textTheme.headline.apply(color: Colors.blueGrey),
),),
),
SliverGrid(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 2,
childAspectRatio: (itemWidth / itemHeight),
mainAxisSpacing: 2,
crossAxisSpacing: 1,
),
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) {
final product = products[index];
return
Column(
mainAxisAlignment: MainAxisAlignment.end,
children: <Widget>[
Container(
height: 230,
width: 200,
margin: EdgeInsets.all(10),
decoration: BoxDecoration(
image: DecorationImage(image: NetworkImage(product.images[0].src,),
fit: BoxFit.cover),
color: Colors.pinkAccent,
borderRadius: BorderRadius.all(Radius.circular(10)),
),
//child: Image.network(product.images[0].src, fit: BoxFit.cover,),
),
Text(product.name?? 'Loading...', style: Theme.of(context).textTheme.title.apply(color: Colors.blueGrey),),
Text('\$'+product.price?? '', style: Theme.of(context).textTheme.subtitle,)
],
);
},
childCount: products.length,
),
)
],
),
),
);
}
}