We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
有收到 onArrival 回调,但是页面却没有打开,并非必现,出现频率较小。 无法下手排查原因。用法整个项目都一样,使用的kotlin封装的扩展函数来统一调用navigate方法。
CptActivityRouterTable.CPT_LOGIN_ACTIVITY_PHONE_LOGIN_PATH.navigation(mContext)
/**
The text was updated successfully, but these errors were encountered:
为什么close了?
Sorry, something went wrong.
No branches or pull requests
Look at here
提 issue 前请看
有收到 onArrival 回调,但是页面却没有打开,并非必现,出现频率较小。
无法下手排查原因。用法整个项目都一样,使用的kotlin封装的扩展函数来统一调用navigate方法。
CptActivityRouterTable.CPT_LOGIN_ACTIVITY_PHONE_LOGIN_PATH.navigation(mContext)
/**
*/
inline fun String.navigation(context: Context, callbackCustom: CustomNavigateCallback? = null, options: (Postcard) -> Unit) {
val postcard = ARouter.getInstance().build(this)
options.invoke(postcard)
postcard.navigation(context, callbackCustom ?: CustomNavigateCallback())
}
/**
*/
inline fun String.navigation(context: Context, callbackCustom: CustomNavigateCallback? = null) {
val postcard = ARouter.getInstance().build(this)
postcard.navigation(context, callbackCustom ?: CustomNavigateCallback())
}
The text was updated successfully, but these errors were encountered: