@momo-kits/native-kits 0.161.2-beta.27-debug → 0.161.2-beta.29-debug
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/compose/build.gradle.kts
CHANGED
|
@@ -63,22 +63,22 @@ fun NavigationContainer(
|
|
|
63
63
|
val startDestination = remember(screenId) { DynamicScreenRoute(screenId) }
|
|
64
64
|
|
|
65
65
|
ProvideNavigationEventDispatcherOwner {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
66
|
+
ProvideAppLocale(appLanguage.value) {
|
|
67
|
+
CompositionLocalProvider(
|
|
68
|
+
LocalNavigator provides navigator,
|
|
69
|
+
LocalMaxApi provides maxApi,
|
|
70
|
+
AppTheme provides theme.value,
|
|
71
|
+
AppStatusBar provides statusBarHeight,
|
|
72
|
+
AppNavigationBar provides navigationBarHeight,
|
|
73
|
+
ApplicationContext provides mergedContext,
|
|
74
|
+
AppConfig provides config,
|
|
75
|
+
AppLanguage provides appLanguage.value,
|
|
76
|
+
ScaleSizeMaxRate provides mergedContext?.scaleSizeMaxRate,
|
|
77
|
+
) {
|
|
78
|
+
LaunchedEffect(Unit) {
|
|
79
|
+
setNavigator?.invoke(navigator)
|
|
80
|
+
}
|
|
80
81
|
|
|
81
|
-
ProvideAppLocale(appLanguage.value) {
|
|
82
82
|
NavHost(navController, startDestination = startDestination) {
|
|
83
83
|
composable<DynamicScreenRoute>(
|
|
84
84
|
enterTransition = {
|
package/gradle.properties
CHANGED