zJianFlys: 哎,我使用annotationProcessor 注解把我坑惨了,找了好几个小时,硬是没有找到任何错误。 直到换成kapt才成功了。 AS版本:Android Studio Ladybug | 2024.2.1 Patch 3 ARoute版本:1.5.2
Flutter分模块开发、模块可单独启动、包含Provider韩老九: 有的 [code=plain] const TextStyle({ this.inherit = true, this.color, this.backgroundColor, this.fontSize, this.fontWeight, this.fontStyle, this.letterSpacing, this.wordSpacing, this.textBaseline, this.height, this.leadingDistribution, this.locale, this.foreground, this.background, this.shadows, this.fontFeatures, this.fontVariations, this.decoration, this.decorationColor, this.decorationStyle, this.decorationThickness, this.debugLabel, String? fontFamily, List? fontFamilyFallback, String? package, this.overflow, }) : fontFamily = package == null ? fontFamily : 'packages/$package/$fontFamily', _fontFamilyFallback = fontFamilyFallback, _package = package, assert(inherit != null), assert(color == null || foreground == null, _kColorForegroundWarning), assert(backgroundColor == null || background == null, _kColorBackgroundWarning); [/code]
Flutter分模块开发、模块可单独启动、包含Provider大招至胜: TextStyle没有package参数吧
Flutter 和 Android原生(Activity、Fragment)相互跳转、传参韩老九: 哪种混合,跳页面?,比如 原生页面 跳 Flutter页面,Flutter页面 跳 原生页面,这种你直接使用 FlutterBoost框架,它帮你管理Flutter引擎,以及管理混合路由栈,如果只是两个端通信,不需要创建Flutter引擎
Flutter 和 Android原生(Activity、Fragment)相互跳转、传参卷起来了啊: 混合開發 用單引擎可行嗎