savvy_shopify 0.0.6 copy "savvy_shopify: ^0.0.6" to clipboard
savvy_shopify: ^0.0.6 copied to clipboard

Shopify library flutter package

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>
    
  • import package on top header part:

    import 'package:savvy_shopify/savvy_shopify.dart';
      
    
  • 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})
        
    

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

1
likes
140
pub points
0%
popularity

Publisher

unverified uploader

Shopify library flutter package

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (LICENSE)

Dependencies

cupertino_icons, flutter, http

More

Packages that depend on savvy_shopify