25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
-
- #import <Foundation/Foundation.h>
- #import <Flutter/Flutter.h>
- NS_ASSUME_NONNULL_BEGIN
-
- @interface FlutterKeplerHandler : NSObject
- //初始化
- - (void)initKepler:(FlutterMethodCall *)call result:(FlutterResult)result;
- // * 通过URL打开任意商品页面
- - (void)keplerPageWithURL:(FlutterMethodCall *)call result:(FlutterResult)result;
-
- //设置进度条颜色
- - (void)setKeplerProgressBarColor:(FlutterMethodCall *)call result:(FlutterResult)result;
-
- @end
-
- NS_ASSUME_NONNULL_END
|