Home
last modified time | relevance | path

Searched refs:on (Results 1 – 25 of 2361) sorted by relevance

12345678910>>...95

/expo/.github/workflows/
H A Dshell-app-android.yml1 # Github workflows need to exist on the 'main' branch
2 # in order to be run on other branches using workflow_dispatch.
4 # (the one we dispatch the workflow to run on)
5 # so we need a minimal failing job on main just to be able
6 # to trigger the workflow on other (usually sdk-xx) branches
9 on:
18 runs-on: ubuntu-22.04
22 echo "Shell apps were dropped on 'main'. " \
H A Dshell-app-ios.yml1 # Github workflows need to exist on the 'main' branch
2 # in order to be run on other branches using workflow_dispatch.
4 # (the one we dispatch the workflow to run on)
5 # so we need a minimal failing job on main just to be able
6 # to trigger the workflow on other (usually sdk-xx) branches
9 on:
22 runs-on: ubuntu-22.04
26 echo "Shell apps were dropped on 'main'. " \
H A Dcommentator.yml1 name: Comments on GitHub issues
3 on:
12 runs-on: ubuntu-22.04
23 - name: �� Comment on GitHub issues as github-actions bot
/expo/packages/@expo/cli/src/utils/__tests__/
H A Dexit-test.ts9 expect(process.on).not.toBeCalled();
14 expect(process.on).toHaveBeenCalledTimes(4);
15 expect(process.on).toHaveBeenNthCalledWith(1, 'SIGHUP', expect.any(Function));
16 expect(process.on).toHaveBeenNthCalledWith(2, 'SIGINT', expect.any(Function));
17 expect(process.on).toHaveBeenNthCalledWith(3, 'SIGTERM', expect.any(Function));
18 expect(process.on).toHaveBeenNthCalledWith(4, 'SIGBREAK', expect.any(Function));
/expo/packages/@expo/cli/src/utils/
H A Dglob.ts14 g.on('error', callback);
15 g.on('end', (matches) => callback(null, matches));
30 g.on('error', callback);
31 g.on('match', (matched) => {
38 g.on('end', (matches) => callback(null, matches));
55 process.on('SIGINT', () => clearTimeout(timeout));
/expo/android/expoview/src/main/java/host/exp/exponent/notifications/helpers/
H A DExpoCronParser.kt14 cronBuilder.withYear(FieldExpressionFactory.on(year.toInt())) in createCronInstance()
21 cronBuilder.withHour(FieldExpressionFactory.on(hour.toInt())) in createCronInstance()
28 cronBuilder.withMinute(FieldExpressionFactory.on(minute.toInt())) in createCronInstance()
35 cronBuilder.withSecond(FieldExpressionFactory.on(second.toInt())) in createCronInstance()
42 cronBuilder.withMonth(FieldExpressionFactory.on(month.toInt())) in createCronInstance()
49 cronBuilder.withDoM(FieldExpressionFactory.on(day.toInt())) in createCronInstance()
58 cronBuilder.withDoW(FieldExpressionFactory.on(weekDay.toInt())) in createCronInstance()
/expo/guides/releasing/
H A DRelease Branches.md6 …- [The bug has been fixed on main but not on the release branch.](#the-bug-has-been-fixed-on-main-…
8 …’s easier to write and test the fix on the release branch instead of main.](#it-s-easier-to-write-…
14on the main branch are ready for the next release. This happens after we have created versioned co…
32 This way, the bug-fix commit is on both main and the release branch, and the version-incrementing c…
38 ### The bug has been fixed on main but not on the release branch.
40on main and fix a bug that is still present on the release branch. We probably don’t want to perfo…
44on main will be significantly different than code on a release branch. This is especially true if …
46 ### It’s easier to write and test the fix on the release branch instead of main.
66on main and other times on the next, future release branch. Commit major-version changes to main s…
70on the branch whose code you are publishing. Compared to non-prerelease versions, we will likely p…
[all …]
/expo/tools/src/
H A DExpoCLI.ts17 process.on('SIGINT', () => {});
18 process.on('SIGTERM', () => {});
36 process.on('SIGINT', () => {});
37 process.on('SIGTERM', () => {});
/expo/docs/pages/versions/v46.0.0/sdk/
H A Dsharing.mdx19 #### Sharing limitations on web
21 - `expo-sharing` for web is built on top of the Web Share API, which still has [very limited browse…
22 - **HTTPS required on web**: The Web Share API is only available on web when the page is served ove…
23 …o local file sharing on web**: Sharing local files by URI works on Android and iOS, but not on web…
27on native platforms. You can read more [in the related feature request](https://expo.canny.io/feat…
/expo/docs/pages/versions/unversioned/sdk/
H A Dsharing.mdx19 #### Sharing limitations on web
21 - `expo-sharing` for web is built on top of the Web Share API, which still has [very limited browse…
22 - **HTTPS required on web**: The Web Share API is only available on web when the page is served ove…
23 …o local file sharing on web**: Sharing local files by URI works on Android and iOS, but not on web…
27 …r to your app to have content shared to it through the native share dialog on native platforms. Yo…
/expo/docs/pages/versions/v48.0.0/sdk/
H A Dsharing.mdx19 #### Sharing limitations on web
21 - `expo-sharing` for web is built on top of the Web Share API, which still has [very limited browse…
22 - **HTTPS required on web**: The Web Share API is only available on web when the page is served ove…
23 …o local file sharing on web**: Sharing local files by URI works on Android and iOS, but not on web…
27 …r to your app to have content shared to it through the native share dialog on native platforms. Yo…
/expo/docs/pages/versions/v49.0.0/sdk/
H A Dsharing.mdx19 #### Sharing limitations on web
21 - `expo-sharing` for web is built on top of the Web Share API, which still has [very limited browse…
22 - **HTTPS required on web**: The Web Share API is only available on web when the page is served ove…
23 …o local file sharing on web**: Sharing local files by URI works on Android and iOS, but not on web…
27 …r to your app to have content shared to it through the native share dialog on native platforms. Yo…
/expo/docs/pages/versions/v47.0.0/sdk/
H A Dsharing.mdx19 #### Sharing limitations on web
21 - `expo-sharing` for web is built on top of the Web Share API, which still has [very limited browse…
22 - **HTTPS required on web**: The Web Share API is only available on web when the page is served ove…
23 …o local file sharing on web**: Sharing local files by URI works on Android and iOS, but not on web…
27 …r to your app to have content shared to it through the native share dialog on native platforms. Yo…
/expo/packages/expo/.github/
H A DISSUE_TEMPLATE.md1 We're looking to keep questions on our forums and bug reports on our main Expo repo -- please choos…
4 * File a bug on the Expo repo: https://github.com/expo/expo/issues/new
5 * Request a feature on Canny: https://expo.canny.io/feature-requests
/expo/docs/common/
H A Duse-nprogress.ts16 router?.events.on('routeChangeStart', nprogress.start);
17 router?.events.on('routeChangeComplete', nprogress.done);
18 router?.events.on('routeChangeError', nprogress.done);
/expo/docs/pages/develop/development-builds/
H A Dcreate-a-build.mdx19 In this guide, you'll find information on how to create a development build and then install it on
57 Follow the steps below to create and install the development build on an Android Emulator or an iOS…
59 > This is only required if you want to develop a project on an emulator/simulator. Otherwise, skip …
67 To create and install the development build on an Android Emulator, you will need an **.apk**. To c…
71 …matically download and install it on the Android Emulator. When prompted, press <kbd>Y</kbd> to di…
97 Then, run the following command to create the development build on an iOS Simulator:
101 …tomatically download and install it on the iOS Simulator. When prompted, press <kbd>Y</kbd> to dir…
103 See [Installing build on the simulator](/build-reference/simulators/#installing-build-on-the-simula…
123 To create and install the development build on an Android device, you will need a **.apk**. To crea…
133 > **warning** Apple Developer membership is required to create and install a development build on a…
[all …]
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/Views/
H A DABI49_0_0RCTSwitch.m14 - (void)setOn:(BOOL)on animated:(BOOL)animated
16 _wasOn = on;
17 [super setOn:on animated:animated];
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Views/
H A DABI48_0_0RCTSwitch.m14 - (void)setOn:(BOOL)on animated:(BOOL)animated
16 _wasOn = on;
17 [super setOn:on animated:animated];
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Views/
H A DABI47_0_0RCTSwitch.m14 - (void)setOn:(BOOL)on animated:(BOOL)animated
16 _wasOn = on;
17 [super setOn:on animated:animated];
/expo/docs/pages/build-reference/
H A Dsimulators.mdx9 …ing a build of your app on an iOS Simulator is useful. You can configure the build profile and ins…
13 To install a build of your app on an iOS Simulator, modify the build profile in [**eas.json**](/bui…
34 ## Installing build on the simulator
38 …tomatically download and install it on the iOS Simulator. When prompted, press <kbd>Y</kbd> to dir…
40 …command at any time to download a specific build and automatically install it on the iOS Simulator:
44 …t of available builds of your project. You can select the build to install on the simulator from t…
50 src="/static/images/eas-build/eas-build-run-on-ios.png"
53 When the build's installation is complete, it will appear on the home screen. If it's a development…
57 Pass the `--latest` flag to the `eas build:run` command to download and install the latest build on
/expo/packages/@expo/cli/src/start/server/metro/inspector-proxy/__tests__/
H A Dproxy.test.ts71 await new Promise((resolve) => device.on('open', resolve));
89 await new Promise((resolve) => device.on('open', resolve));
108 await new Promise((resolve) => device.on('open', resolve));
113 await new Promise((resolve) => device.on('close', resolve));
134 await new Promise((resolve) => deviceWs?.on('open', resolve));
142 await new Promise((resolve) => debuggerWs?.on('open', resolve));
163 await new Promise((resolve) => deviceWs?.on('open', resolve));
171 await new Promise((resolve) => debuggerWs?.on('open', resolve));
217 new Promise((resolve) => oldDeviceWs?.on('close', resolve)),
218 new Promise((resolve) => newDeviceWs?.on('open', resolve)),
[all …]
/expo/docs/public/static/code/
H A DsendNotificationToAPNS.js49 request.on('response', (headers, flags) => {
56 request.on('data', chunk => {
60 request.on('end', () => {
/expo/packages/expo-modules-core/
H A DCHANGELOG.md47 - Fixed Fabric setup error on iOS. ([#24004](https://github.com/expo/expo/pull/24004) by [@kudo](ht…
90 - Fixed `SoLoader` does not work on Android. ([#23415](https://github.com/expo/expo/pull/23415) by …
91 - Fixed slower boot time on Android. ([#23345](https://github.com/expo/expo/pull/23345) by [@lukmcc…
260 - Fixed boost build error on Android. ([#20719](https://github.com/expo/expo/pull/20719) by [@kudo]…
380 - Using JSI instead of the bridge to call native methods also on legacy modules on iOS. ([#18438](h…
384 - Experimental support for Fabric on Android. ([#18541](https://github.com/expo/expo/pull/18541) by…
389 … building the module's JavaScript object from the definition on iOS (already implemented on Androi…
396 - Using JSI instead of the bridge to call native methods also on legacy modules on iOS. ([#19209](h…
439 - Fixed `FabricUIManager` errors when turning on new architecture mode on Android. ([#18472](https:…
645 - Removed accidentally published prebuilt binaries on iOS.
[all …]
/expo/apps/native-component-list/src/screens/SVG/examples/
H A DTouchEvents.tsx10 'Press on the red circle or long press on the blue rectangle to trigger the events';
15 <Circle cx="50%" cy="50%" r="38%" fill="red" onPress={() => alert('Press on Circle')} />
22 onLongPress={() => alert('Long press on Rect')}
72 static title = 'Bind touch events callback on Group element with viewBox';
77 <G onPress={() => alert('Pressed on G')}>
87 onPress={() => alert('Pressed on Text')}>
/expo/fastlane/android/metadata/en-US/changelogs/
H A D102.txt1 - fix issues when using `ImageManipulator` and `ImagePicker` on SDKs lower than 32
2 - fix `Location.watchPositionAsync` never resolving on SDK32

12345678910>>...95