expo-dev-launcher 6.0.10 → 6.0.11
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/CHANGELOG.md +7 -0
- package/android/build.gradle +2 -2
- package/android/src/debug/java/expo/modules/devlauncher/compose/screens/HomeScreen.kt +1 -1
- package/android/src/debug/java/expo/modules/devlauncher/compose/screens/SettingsScreen.kt +4 -0
- package/android/src/debug/java/expo/modules/devlauncher/compose/ui/AppLoadingErrorDialog.kt +1 -2
- package/ios/SwiftUI/DevLauncherViews.swift +1 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,13 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 6.0.11 — 2025-09-11
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- [Android] Fix incorrect text color in the error dialog. ([#39550](https://github.com/expo/expo/pull/39550) by [@lukmccall](https://github.com/lukmccall))
|
|
18
|
+
- [iOS] Fix UI on iPad. ([#39549](https://github.com/expo/expo/pull/39549) by [@alanjhughes](https://github.com/alanjhughes))
|
|
19
|
+
|
|
13
20
|
## 6.0.10 — 2025-09-08
|
|
14
21
|
|
|
15
22
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -20,13 +20,13 @@ expoModule {
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
group = "host.exp.exponent"
|
|
23
|
-
version = "6.0.
|
|
23
|
+
version = "6.0.11"
|
|
24
24
|
|
|
25
25
|
android {
|
|
26
26
|
namespace "expo.modules.devlauncher"
|
|
27
27
|
defaultConfig {
|
|
28
28
|
versionCode 9
|
|
29
|
-
versionName "6.0.
|
|
29
|
+
versionName "6.0.11"
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
buildTypes {
|
|
@@ -170,7 +170,7 @@ private fun RecentlyOpenedApps(
|
|
|
170
170
|
) {
|
|
171
171
|
Section.Header("RECENTLY OPENED")
|
|
172
172
|
|
|
173
|
-
Section.Button("RESET", { onAction(HomeAction.ResetRecentlyOpenedApps) })
|
|
173
|
+
Section.Button("RESET", onClick = { onAction(HomeAction.ResetRecentlyOpenedApps) })
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
Column(
|
|
@@ -5,6 +5,8 @@ import androidx.compose.foundation.layout.Column
|
|
|
5
5
|
import androidx.compose.foundation.layout.fillMaxWidth
|
|
6
6
|
import androidx.compose.foundation.layout.padding
|
|
7
7
|
import androidx.compose.foundation.layout.statusBarsPadding
|
|
8
|
+
import androidx.compose.foundation.rememberScrollState
|
|
9
|
+
import androidx.compose.foundation.verticalScroll
|
|
8
10
|
import androidx.compose.runtime.Composable
|
|
9
11
|
import androidx.compose.ui.Alignment
|
|
10
12
|
import androidx.compose.ui.Modifier
|
|
@@ -33,8 +35,10 @@ fun SettingsScreen(
|
|
|
33
35
|
state: SettingsState = SettingsState(),
|
|
34
36
|
onAction: (SettingsAction) -> Unit = {}
|
|
35
37
|
) {
|
|
38
|
+
val scrollState = rememberScrollState()
|
|
36
39
|
Column(
|
|
37
40
|
modifier = Modifier
|
|
41
|
+
.verticalScroll(scrollState)
|
|
38
42
|
.statusBarsPadding()
|
|
39
43
|
.padding(horizontal = NewAppTheme.spacing.`4`)
|
|
40
44
|
) {
|
|
@@ -23,7 +23,6 @@ import com.composables.core.DialogState
|
|
|
23
23
|
import com.composables.core.Scrim
|
|
24
24
|
import com.composables.core.rememberDialogState
|
|
25
25
|
import com.composeunstyled.Button
|
|
26
|
-
import com.composeunstyled.Text
|
|
27
26
|
import expo.modules.devlauncher.compose.models.HomeAction
|
|
28
27
|
import expo.modules.devlauncher.compose.models.HomeState
|
|
29
28
|
import expo.modules.devmenu.compose.newtheme.NewAppTheme
|
|
@@ -92,7 +91,7 @@ fun AppLoadingErrorDialog(
|
|
|
92
91
|
Divider()
|
|
93
92
|
|
|
94
93
|
Row(modifier = Modifier.padding(NewAppTheme.spacing.`3`)) {
|
|
95
|
-
|
|
94
|
+
NewText(currentError ?: "No error message available.")
|
|
96
95
|
}
|
|
97
96
|
}
|
|
98
97
|
}
|
|
@@ -42,6 +42,7 @@ public struct DevLauncherRootView: View {
|
|
|
42
42
|
.environmentObject(viewModel)
|
|
43
43
|
.environmentObject(DevLauncherNavigation(showingUserProfile: $showingUserProfile))
|
|
44
44
|
}
|
|
45
|
+
.navigationViewStyle(.stack)
|
|
45
46
|
.sheet(isPresented: $showingUserProfile) {
|
|
46
47
|
AccountSheet()
|
|
47
48
|
.environmentObject(viewModel)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-launcher",
|
|
3
3
|
"title": "Expo Development Launcher",
|
|
4
|
-
"version": "6.0.
|
|
4
|
+
"version": "6.0.11",
|
|
5
5
|
"description": "Pre-release version of the Expo development launcher package for testing.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"homepage": "https://docs.expo.dev",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"expo-dev-menu": "7.0.
|
|
19
|
-
"expo-manifests": "~1.0.
|
|
18
|
+
"expo-dev-menu": "7.0.11",
|
|
19
|
+
"expo-manifests": "~1.0.8"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"expo": "*"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "088e79428be97cf3ee11fc93e0e5a1fc1c8bea1e"
|
|
25
25
|
}
|