expo-dev-launcher 6.0.9 → 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 CHANGED
@@ -10,6 +10,17 @@
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
+
20
+ ## 6.0.10 — 2025-09-08
21
+
22
+ _This version does not introduce any user-facing changes._
23
+
13
24
  ## 6.0.9 — 2025-09-03
14
25
 
15
26
  _This version does not introduce any user-facing changes._
@@ -20,13 +20,13 @@ expoModule {
20
20
  }
21
21
 
22
22
  group = "host.exp.exponent"
23
- version = "6.0.9"
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.9"
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
- Text(currentError ?: "No error message available.")
94
+ NewText(currentError ?: "No error message available.")
96
95
  }
97
96
  }
98
97
  }
@@ -14,7 +14,7 @@ struct AccountSheet: View {
14
14
  Spacer()
15
15
  Image("expo-go-logo", bundle: getDevLauncherBundle())
16
16
  .resizable()
17
- .aspectRatio(contentMode: .fit)
17
+ .scaledToFit()
18
18
  .frame(width: 180)
19
19
  Spacer()
20
20
  }
@@ -208,7 +208,7 @@ struct AccountSheet: View {
208
208
  Avatar(url: url) { image in
209
209
  image
210
210
  .resizable()
211
- .aspectRatio(contentMode: .fill)
211
+ .scaledToFill()
212
212
  } placeholder: {
213
213
  Circle()
214
214
  #if !os(tvOS)
@@ -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)
@@ -32,7 +32,7 @@ struct DevLauncherNavigationHeader: View {
32
32
  let appIcon = loadAppIcon(from: path) {
33
33
  Image(uiImage: appIcon)
34
34
  .resizable()
35
- .aspectRatio(contentMode: .fit)
35
+ .scaledToFit()
36
36
  .frame(width: 32, height: 32)
37
37
  .clipShape(RoundedRectangle(cornerRadius: 8))
38
38
  }
@@ -96,7 +96,7 @@ struct DevLauncherNavigationHeader: View {
96
96
  Avatar(url: url) { image in
97
97
  image
98
98
  .resizable()
99
- .aspectRatio(contentMode: .fill)
99
+ .scaledToFill()
100
100
  } placeholder: {
101
101
  Circle()
102
102
  .fill(Color.expoSystemGray5)
@@ -149,7 +149,7 @@ struct SettingsTabView: View {
149
149
  Spacer()
150
150
  Image(systemName: "clipboard")
151
151
  .resizable()
152
- .aspectRatio(contentMode: .fit)
152
+ .scaledToFit()
153
153
  .frame(width: 16, height: 16)
154
154
  .foregroundColor(.blue)
155
155
  #endif
@@ -7,7 +7,7 @@ struct NotSignedInView: View {
7
7
  VStack(spacing: 16) {
8
8
  Image(systemName: "square.and.arrow.down")
9
9
  .resizable()
10
- .aspectRatio(contentMode: .fit)
10
+ .scaledToFit()
11
11
  .frame(width: 44, height: 44)
12
12
  .rotationEffect(.degrees(-90))
13
13
  .foregroundColor(.blue)
@@ -7,7 +7,7 @@ struct NotUsingUpdatesView: View {
7
7
  VStack(spacing: 16) {
8
8
  Image(systemName: "exclamationmark.triangle")
9
9
  .resizable()
10
- .aspectRatio(contentMode: .fit)
10
+ .scaledToFit()
11
11
  .frame(width: 44, height: 44)
12
12
  .foregroundColor(.orange)
13
13
 
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.9",
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.8",
19
- "expo-manifests": "~1.0.7"
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": "f97e6d1cae0cb14d5eed1b08fad6d12a7144af3a"
24
+ "gitHead": "088e79428be97cf3ee11fc93e0e5a1fc1c8bea1e"
25
25
  }