21 lines
430 B
C
21 lines
430 B
C
|
|
//
|
|||
|
|
// CommonDefine.h
|
|||
|
|
// Runner
|
|||
|
|
//
|
|||
|
|
// Created by DaisyWu on 2023/10/14.
|
|||
|
|
//
|
|||
|
|
|
|||
|
|
#ifndef CommonDefine_h
|
|||
|
|
#define CommonDefine_h
|
|||
|
|
|
|||
|
|
|
|||
|
|
/** 信号通道,须与flutter里一致*/
|
|||
|
|
#define flutterMethodChannel @"flutter_native_ios"
|
|||
|
|
/** 交互方法字段名,须与flutter里一致*/
|
|||
|
|
#define flutterMethodSharePassword @"flutter_sharePassword_to_ios"
|
|||
|
|
#define flutterMethodPresent @"flutter_present_to_ios"
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endif /* CommonDefine_h */
|
|||
|
|
|