9a8ac9dd11
Summary:Adds a test so that people can create RCTBridgeModules that aren't auto-exported. This is useful for when you have more than one RCTBridge and want a module to be exposed in one but not the other. RCTBridge/RCTBatchedBridge already supports this functionality; this diff adds a test so that it doesn't break. Closes https://github.com/facebook/react-native/pull/6424 Differential Revision: D3044959 Pulled By: nicklockwood fb-gh-sync-id: f8977249b1bf4023e704be6422ad77372d8f1714 shipit-source-id: f8977249b1bf4023e704be6422ad77372d8f1714 |
||
---|---|---|
.. | ||
AnimatedGratuitousApp | ||
NavigationExperimental | ||
Navigator | ||
Thumbnails | ||
UIExplorer | ||
UIExplorer.xcodeproj | ||
UIExplorerIntegrationTests | ||
UIExplorerUnitTests | ||
android/app | ||
AccessibilityAndroidExample.android.js | ||
AccessibilityIOSExample.js | ||
ActionSheetIOSExample.js | ||
ActivityIndicatorIOSExample.js | ||
AdSupportIOSExample.js | ||
AlertExample.js | ||
AlertIOSExample.js | ||
AnimatedExample.js | ||
AppStateExample.js | ||
AppStateIOSExample.js | ||
AssetScaledImageExample.js | ||
AsyncStorageExample.js | ||
BorderExample.js | ||
BoxShadowExample.js | ||
CameraRollExample.js | ||
CameraRollView.js | ||
ClipboardExample.js | ||
DatePickerAndroidExample.js | ||
DatePickerIOSExample.js | ||
ExampleTypes.js | ||
GeolocationExample.js | ||
ImageCapInsetsExample.js | ||
ImageEditingExample.js | ||
ImageExample.js | ||
LayoutEventsExample.js | ||
LayoutExample.js | ||
LinkingExample.js | ||
ListViewExample.js | ||
ListViewGridLayoutExample.js | ||
ListViewPagingExample.js | ||
MapViewExample.js | ||
ModalExample.js | ||
NavigatorIOSColorsExample.js | ||
NavigatorIOSExample.js | ||
NetInfoExample.js | ||
PanResponderExample.js | ||
PickerAndroidExample.js | ||
PickerIOSExample.js | ||
PointerEventsExample.js | ||
ProgressBarAndroidExample.android.js | ||
ProgressViewIOSExample.js | ||
PushNotificationIOSExample.js | ||
RCTRootViewIOSExample.js | ||
README.md | ||
RefreshControlExample.js | ||
RootViewSizeFlexibilityExampleApp.js | ||
ScrollViewExample.js | ||
ScrollViewSimpleExample.js | ||
SegmentedControlIOSExample.js | ||
SetPropertiesExampleApp.js | ||
SliderIOSExample.js | ||
SnapshotExample.js | ||
StatusBarExample.js | ||
StatusBarIOSExample.js | ||
SwitchExample.js | ||
TabBarIOSExample.js | ||
TextExample.android.js | ||
TextExample.ios.js | ||
TextInputExample.android.js | ||
TextInputExample.ios.js | ||
TimePickerAndroidExample.js | ||
TimerExample.js | ||
ToastAndroidExample.android.js | ||
ToolbarAndroidExample.android.js | ||
TouchableExample.js | ||
TransformExample.js | ||
TransparentHitTestExample.js | ||
UIExplorerActions.js | ||
UIExplorerApp.android.js | ||
UIExplorerApp.ios.js | ||
UIExplorerBlock.js | ||
UIExplorerButton.js | ||
UIExplorerExampleList.js | ||
UIExplorerList.android.js | ||
UIExplorerList.ios.js | ||
UIExplorerNavigationReducer.js | ||
UIExplorerPage.js | ||
UIExplorerStateTitleMap.js | ||
UIExplorerTitle.js | ||
VibrationExample.js | ||
VibrationIOSExample.js | ||
ViewExample.js | ||
ViewPagerAndroidExample.android.js | ||
WebViewExample.js | ||
XHRExample.android.js | ||
XHRExample.ios.js | ||
XHRExampleCookies.js | ||
XHRExampleFetch.js | ||
XHRExampleHeaders.js | ||
bunny.png | ||
createExamplePage.js | ||
flux@3x.png | ||
hawk.png | ||
helloworld.html | ||
slider-left.png | ||
slider-left@2x.png | ||
slider-right.png | ||
slider-right@2x.png | ||
slider.png | ||
slider@2x.png | ||
uie_comment_highlighted@2x.png | ||
uie_comment_normal@2x.png | ||
uie_thumb_big.png | ||
uie_thumb_normal@2x.png | ||
uie_thumb_selected@2x.png |
README.md
UIExplorer
The UIExplorer is a sample app that showcases React Native views and modules.
Running this app
Before running the app, make sure you ran:
git clone https://github.com/facebook/react-native.git
cd react-native
npm install
Running on iOS
Mac OS and Xcode are required.
- Open
Examples/UIExplorer/UIExplorer.xcodeproj
in Xcode - Hit the Run button
See Running on device if you want to use a physical device.
Running on Android
You'll need to have all the prerequisites (SDK, NDK) for Building React Native installed.
Start an Android emulator (Genymotion is recommended).
cd react-native
./gradlew :Examples:UIExplorer:android:app:installDebug
./packager/packager.sh
Note: Building for the first time can take a while.
Open the UIExplorer app in your emulator.
See Running on Device in case you want to use a physical device.
Built from source
Building the app on both iOS and Android means building the React Native framework from source. This way you're running the latest native and JS code the way you see it in your clone of the github repo.
This is different from apps created using react-native init
which have a dependency on a specific version of React Native JS and native code, declared in a package.json
file (and build.gradle
for Android apps).