Last updated:
0 purchases
savvy shopify
Savvient Shopify #
A flutter package that works as a bridge between Our Api (which is used by Shopify) and Flutter Application. Here we are added some method which is get shopify location, shopify category, shopify product list and detail. You need to just use this method and get result and you will be set data in your desire UI
Usage #
To use this library in your code:
add a dependency in your pubspec.yaml :
dependencies:
savvy_shopify: <latest version>
copied to clipboard
import package on top header part:
import 'package:savvy_shopify/savvy_shopify.dart';
copied to clipboard
All method list which can be used by user:
Future<Map<String, dynamic>?> locationListAPI()
Future<Map<String, dynamic>?> shopCategoryListAPI({required String countryCode, required String pageIndex})
Future<Map<String, dynamic>?> shopProductListAPI({required String countryCode, required String categoryId, required String pageIndex, String searchText = ""})
Future<Map<String, dynamic>?> shopProductDetailAPI({required String countryCode, required String productId})
copied to clipboard
Examples #
Examples found at https://pub.dev/packages/savvy_shopify/example are available in a dart version at https://pub.dev/packages/savvy_shopify/ in the example directory.
License #
GPL
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.