Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
3871651
[expo-ui][ios] Rename textinput, create securefield component (#37642)
aleqsio Jul 22, 2025
9709ea3
[launcher][Android] Imporve loading running packagers (#38205)
lukmccall Jul 22, 2025
409372c
[file-system][next] Add limited support for SAF uris. (#38075)
aleqsio Jul 22, 2025
37e5463
[ios][expo-ui] Add ContentUnavailableView component (#38128)
Pflaumenbaum Jul 22, 2025
6f2c7fb
[expo] Update `yarn.lock`
lukmccall Jul 22, 2025
3e773e2
[fetch] refactor reference equality (#38231)
vonovak Jul 22, 2025
47f0108
[bare-expo][Android] Remove `releaseWithDevMenu` variant (#38233)
lukmccall Jul 22, 2025
e0d2e5a
[client][Android] Remove unused files (#38232)
lukmccall Jul 22, 2025
acc2abd
[asset] fix file scheme handling in `downloadAsync` (#38227)
vonovak Jul 22, 2025
56c336f
[font] throw when loading empty font file (#38229)
vonovak Jul 22, 2025
e92004d
[constants][iOS] forward PROJECT_ROOT env var to app config script (#…
gabrieldonadel Jul 22, 2025
ea4bdce
[modules-autolinking] Add --source-dir option (#38218)
gabrieldonadel Jul 22, 2025
8cef7b8
[font] remove deprecated style 'type' attribute (#38114)
vonovak Jul 22, 2025
4f2c321
[modules-autolinking][iOS] Add support for user script sandboxing (#3…
gabrieldonadel Jul 22, 2025
8fb2573
Update protected.mdx (#38238)
hslls Jul 22, 2025
f8b8c12
[autolinking][iOS] Add :projectRoot option to use_expo_modules (#38210)
gabrieldonadel Jul 22, 2025
599a28f
Remove react-native 0.74 support files (#38216)
gabrieldonadel Jul 22, 2025
8e6a59e
add title prop to Button to ensure it renders correctly (#38244)
gurneerbedi Jul 22, 2025
f4aea2e
[docs] Add bi-directional links to Router reference and Router introd…
amandeepmittal Jul 22, 2025
7e7657f
[docs] Improve page titles and rank in EAS Hosting and Workflows sect…
amandeepmittal Jul 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions apps/bare-expo/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,6 @@ android {
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
releaseWithDevMenu {
initWith release
matchingFallbacks = ['release', 'debug']
}
}
packagingOptions {
jniLibs {
Expand Down
9 changes: 9 additions & 0 deletions apps/bare-expo/ios/BareExpo.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions apps/expo-go/ios/Exponent.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
VStack,
HStack,
DisclosureGroup,
ContentUnavailableView,
} from '@expo/ui/swift-ui-primitives';
import { useState } from 'react';
import { ScrollView, StyleSheet, Text as RNText, View } from 'react-native';
Expand Down Expand Up @@ -78,6 +79,11 @@ export default function SwiftUIPrimitivesScreen() {
<Text>Email: john.doe@example.com</Text>
<Text>Role: Administrator</Text>
</DisclosureGroup>
<ContentUnavailableView
title="Card expired"
systemImage="creditcard.trianglebadge.exclamationmark"
description="Please update your payment information to continue using our services."
/>
</Section>
</Form>
</Host>
Expand Down
27 changes: 22 additions & 5 deletions apps/native-component-list/src/screens/UI/TextInputScreen.ios.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { TextInput } from '@expo/ui/swift-ui';
import { TextField, SecureField } from '@expo/ui/swift-ui';
import * as React from 'react';
import { Text } from 'react-native';
import { Text, TextInput as RNTextInput } from 'react-native';

import { Page, Section } from '../../components/Page';

Expand All @@ -12,19 +12,20 @@ export default function TextInputScreen() {
<Text>{JSON.stringify(value)}</Text>
</Section>
<Section title="Text Input">
<TextInput autocorrection={false} defaultValue="hey there" onChangeText={setValue} />
<TextField autocorrection={false} defaultValue="hey there" onChangeText={setValue} />
</Section>
<Section title="Multiline Text Input">
<TextInput
<TextField
multiline
numberOfLines={5}
autocorrection={false}
allowNewlines={false}
defaultValue="hey there"
onChangeText={setValue}
/>
</Section>
<Section title="Phone Text Input">
<TextInput
<TextField
multiline
numberOfLines={5}
keyboardType="phone-pad"
Expand All @@ -33,6 +34,22 @@ export default function TextInputScreen() {
onChangeText={setValue}
/>
</Section>
<Section title="Multiline, allowNewlines Text Input">
<TextField
multiline
numberOfLines={5}
allowNewlines
autocorrection={false}
defaultValue="hey there"
onChangeText={setValue}
/>
</Section>
<Section title="Secure Text Input">
<SecureField defaultValue="hey there" onChangeText={setValue} keyboardType="numeric" />
</Section>
<Section title="RN Text Input">
<RNTextInput multiline numberOfLines={5} value={value} onChangeText={setValue} />
</Section>
</Page>
);
}
Expand Down
28 changes: 14 additions & 14 deletions apps/paper-tester/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2819,30 +2819,30 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
EASClient: 81d62c389f7385bee733cd028f3aeb0b700bc900
EXConstants: be238322d57d084dc055dbd5d6fe6479510504ce
EASClient: cca4fa0bf58b32a99476e9d9f80cbeebcb57df90
EXConstants: 72e8e04dc4d7d97c74a618d44753ea4a7437a2b6
EXJSONUtils: 1d3e4590438c3ee593684186007028a14b3686cd
EXManifests: 18dc175e0df41ce726d456dc13489e60e6a742a3
EXManifests: bf76658edfbfa3e3fb67f940ade98d7803490789
Expo: 8eb25cb61c253606de5346a8a896109720c001fc
expo-dev-client: b32e7e9c0a420a5256e38b12e8eebbf14a7031ed
expo-dev-launcher: a3f73e45a6154b451ef36067cbf93754c0c9a98a
expo-dev-menu: 56dbc4f30634486538030dbb1cec11a630e59c2e
expo-dev-menu-interface: 609c35ae8b97479cdd4c9e23c8cf6adc44beea0e
ExpoAppleAuthentication: 7e358fcbcbacb7685cddb0bbeede0acd677e58f6
ExpoAsset: 3ea3275cca6a7793b3d36fbf1075c590f803fbcb
ExpoAppleAuthentication: 69a48d4633024124a33fda650dba706c216d6c76
ExpoAsset: b5bfc6425d1e9a09e8e1368646b98fe5ae7ed074
ExpoBlur: 5d95f7ca771a0f3b9618466525dd68e46dc95f3a
ExpoCamera: e88fc30631e63e5504ce19d52c563a6ec49e17d2
ExpoFileSystem: 3a98ca2a6f13674ecfd97327d1b44a8ace444cbd
ExpoFont: 312c73403bbd4f98e1d6a5330641a56292583cd2
ExpoImage: 23fd11d3f2c4b04dc0b5e97fb41e9ead278bd0c8
ExpoKeepAwake: e8dedc115d9f6f24b153ccd2d1d8efcdfd68a527
ExpoLinearGradient: 42e58f6db5ebc20b6fbbf7d31013264644ab12a4
ExpoModulesCore: e39be8db1df3e0b6194d41de40ac9b3bfe9a6eb9
ExpoFileSystem: 3ee0f53b719c928eb179fc67467f89ffce4472ed
ExpoFont: 370a9897880ac279fbd4e478dede18ec4f723d1a
ExpoImage: 736d4bf4e14437d0e0c7dafdd3aa169c17d447a7
ExpoKeepAwake: 95037f8576ba678db79cbf558b933400c81997a7
ExpoLinearGradient: 110244a240361e3351756225e5fcc4c6c07f5431
ExpoModulesCore: 637f40677c4611ddc66c92ec5bc1b36e1576f205
ExpoSplashScreen: 418ece7a50a404f36b690f0af8ec5c5298dfd659
ExpoVideo: 54ce43735b4ceb6b3828e3eec3b750b0fe10314c
ExpoVideo: 0e9cd59d0bd301e0f33a8fa7b0e3f1a497f60f81
EXStructuredHeaders: 1c799cb91e8057e0671610635e5b2109fa295114
EXUpdates: 0701c1112685d32ae8bcdedde02f5e6905a34c38
EXUpdatesInterface: b941371be742ef272f2fa7d6f46ee9fdf8c73c60
EXUpdates: 760ae83ebf1f9fd8c04aa3b0790c4489410cd6b8
EXUpdatesInterface: d6c802a2d1d11867523d03a95397957f9ba3d1c7
fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6
FBLazyVector: 09f03e4b6f42f955734b64a118f86509cc719427
fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
Expand Down
5 changes: 5 additions & 0 deletions apps/paper-tester/ios/papertester.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

70 changes: 0 additions & 70 deletions apps/test-suite/tests/Asset.js

This file was deleted.

Loading
Loading