expo-dev-launcher 55.0.33 → 55.0.35

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,16 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 55.0.35 — 2026-05-15
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [iOS] Fix safe area insets not being applied on settings screen. ([#45074](https://github.com/expo/expo/pull/45074) by [@alanjhughes](https://github.com/alanjhughes))
18
+
19
+ ## 55.0.34 — 2026-05-13
20
+
21
+ _This version does not introduce any user-facing changes._
22
+
13
23
  ## 55.0.33 — 2026-05-04
14
24
 
15
25
  _This version does not introduce any user-facing changes._
@@ -26,13 +26,13 @@ expoModule {
26
26
  }
27
27
 
28
28
  group = "host.exp.exponent"
29
- version = "55.0.33"
29
+ version = "55.0.35"
30
30
 
31
31
  android {
32
32
  namespace "expo.modules.devlauncher"
33
33
  defaultConfig {
34
34
  versionCode 9
35
- versionName "55.0.33"
35
+ versionName "55.0.35"
36
36
  }
37
37
 
38
38
  buildTypes {
@@ -2,7 +2,7 @@
2
2
  import SwiftUI
3
3
  import ExpoModulesCore
4
4
 
5
- private struct SafeAreaTopPadding: View {
5
+ struct SafeAreaTopPadding: View {
6
6
  let manualInset: CGFloat
7
7
 
8
8
  var body: some View {
@@ -31,6 +31,7 @@ struct SettingsTabView: View {
31
31
  var body: some View {
32
32
  ScrollView {
33
33
  VStack(alignment: .leading, spacing: 24) {
34
+ SafeAreaTopPadding(manualInset: viewModel.topSafeAreaInset)
34
35
  titleSection
35
36
  showMenuAtLaunch
36
37
  gestures
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-dev-launcher",
3
3
  "title": "Expo Development Launcher",
4
- "version": "55.0.33",
4
+ "version": "55.0.35",
5
5
  "description": "Pre-release version of the Expo development launcher package for testing.",
6
6
  "repository": {
7
7
  "type": "git",
@@ -15,12 +15,12 @@
15
15
  "license": "MIT",
16
16
  "homepage": "https://docs.expo.dev",
17
17
  "dependencies": {
18
- "@expo/schema-utils": "^55.0.3",
19
- "expo-dev-menu": "55.0.27",
20
- "expo-manifests": "~55.0.16"
18
+ "@expo/schema-utils": "^55.0.4",
19
+ "expo-dev-menu": "55.0.29",
20
+ "expo-manifests": "~55.0.17"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "expo": "*"
24
24
  },
25
- "gitHead": "ffc5bbd08431f5a7ca6666d79de98b585e37b330"
25
+ "gitHead": "f654536b3d1b6fe32dd01a4067d6353fb302f7df"
26
26
  }