flutter京东SDK插件
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FlutterKeplerHandler.h 485 B

123456789101112131415161718
  1. #import <Foundation/Foundation.h>
  2. #import <Flutter/Flutter.h>
  3. NS_ASSUME_NONNULL_BEGIN
  4. @interface FlutterKeplerHandler : NSObject
  5. //初始化
  6. - (void)initKepler:(FlutterMethodCall *)call result:(FlutterResult)result;
  7. // * 通过URL打开任意商品页面
  8. - (void)keplerPageWithURL:(FlutterMethodCall *)call result:(FlutterResult)result;
  9. //设置进度条颜色
  10. - (void)setKeplerProgressBarColor:(FlutterMethodCall *)call result:(FlutterResult)result;
  11. @end
  12. NS_ASSUME_NONNULL_END