41 lines
1.5 KiB
C
41 lines
1.5 KiB
C
//
|
||
// XCFlutterKeyConst.h
|
||
// PlanetStar
|
||
//
|
||
// Created by fengshuo on 2021/4/7.
|
||
//
|
||
///flutter 和原生交互所需要的类
|
||
#ifndef XCFlutterKeyConst_h
|
||
#define XCFlutterKeyConst_h
|
||
|
||
#pragma mark - Flutter 获取native 的内容
|
||
//获取钱包里面的钻石 double类型
|
||
static NSString *const YYFlutterGetNativeGetDiamond = @"getDiamond";
|
||
//获取deviceninfo dic 类型
|
||
static NSString *const YYFlutterGetNativeGetDeviceInfo = @"getDeviceInfo";
|
||
//获取uid 和ticket dic 类型
|
||
static NSString *const YYFlutterGetNativeGetAuth = @"getAuth";
|
||
//加密输入的密码 dic 类型
|
||
static NSString *const YYFlutterGetNativeGetEncodePwd = @"getEncodePwd";
|
||
//flutter通知客户端,显示邀请好友的标示 bool
|
||
static NSString *const YYFlutterGetNativeNotifyShowInvite = @"notifyShowInvite";
|
||
|
||
#pragma mark - Flutter跳转native界面的
|
||
///跳转充值也
|
||
static NSString *const YYFlutterPushNavitePageCharge = @"charge";
|
||
///账号绑定
|
||
static NSString *const YYFlutterPushNavitePageBindGameAccount = @"bindGameAccount";
|
||
///邀请好友
|
||
static NSString *const YYFlutterPushNavitePageInvite = @"invite";
|
||
///设置支付密码
|
||
static NSString *const YYFlutterPushNavitePagePaymentPwd = @"paymentPwd";
|
||
///跳转设置支付密码
|
||
static NSString *const YYFlutterPushNavitePageBindPaymentPwd = @"bindPaymentPwd";
|
||
///跳转Webview
|
||
static NSString *const YYFlutterPushNavitePageWebview = @"openWebview";
|
||
///跳转房间
|
||
static NSString *const YYFlutterPushNavitePageChatRoom = @"chatRoom";
|
||
|
||
#pragma mark - navite跳转flutter页面
|
||
#endif /* XCFlutterKeyConst_h */
|