├── .buckconfig ├── .flowconfig ├── .vscode └── settings.json ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ └── App-test.js ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── artseeapp │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── app ├── assets │ ├── CalibrationMode.png │ ├── CalibrationMode@2x.png │ ├── CalibrationModeWhite.png │ ├── DeleteButton.png │ ├── DeleteButton@2x.png │ ├── DrawerAbout.png │ ├── DrawerAbout@2x.png │ ├── EditCrop.png │ ├── EditCrop@2x.png │ ├── Help_Drag.png │ ├── Help_Drag@x.png │ ├── Help_Pinch.png │ ├── Help_Pinch@2x.png │ ├── RetouchWall.png │ ├── RetouchWall@2x.png │ ├── RetouchWallWhite.png │ ├── Room1.jpg │ ├── Room2.jpg │ ├── Room3.jpg │ ├── Room4.jpg │ ├── StandaloneAdd.png │ ├── StandaloneAdd@2x.png │ ├── StandaloneDisclosure.png │ ├── StandaloneDisclosure@2x.png │ ├── StandaloneDisclosureSmall.png │ ├── StandaloneDisclosureSmall@2x.png │ ├── StandaloneInfo.png │ ├── StandaloneInfo@2x.png │ ├── StarEmpty.png │ ├── StarEmpty@2x.png │ ├── StarFilled.png │ ├── StarFilled@2x.png │ ├── icon_favorite_active.png │ ├── icon_favorite_inactive.png │ ├── icon_gallery_active.png │ ├── icon_gallery_inactive.png │ ├── icon_hangup_active.png │ ├── icon_hangup_inactive.png │ ├── icon_library_active.png │ ├── icon_library_inactive.png │ ├── icon_profile_active.png │ ├── icon_profile_inactive.png │ ├── onboard1.png │ ├── onboard2.png │ ├── onboard3.png │ └── onboard4.png ├── components │ ├── AddModal │ │ ├── AddModal.js │ │ └── AddModalStyles.js │ ├── ArtDetails │ │ ├── ArtDetails.js │ │ └── ArtDetailsStyles.js │ ├── ArtItem │ │ ├── ArtItem.js │ │ └── ArtItemStyles.js │ ├── ArtList │ │ ├── ArtList.js │ │ └── ArtListStyles.js │ ├── CustomTabBar │ │ ├── Button.android.js │ │ ├── Button.ios.js │ │ └── DefaultTabBar.js │ ├── DeleteModal │ │ ├── DeleteModal.js │ │ └── DeleteModalStyles.js │ ├── DragArtItem │ │ ├── DragArtItem.js │ │ └── DragArtItemStyles.js │ ├── Drawer │ │ ├── Drawer.js │ │ ├── DrawerStyles.js │ │ └── index.js │ ├── HangupItem │ │ ├── HangupItem.js │ │ └── HanguupItemStyles.js │ ├── PinchableBox │ │ ├── PinchableBox.js │ │ └── PinchableBoxStyles.js │ ├── README.md │ ├── Swiper │ │ └── index.js │ ├── UI │ │ ├── DefaultButton │ │ │ └── DefaultButton.js │ │ └── DefaultInput │ │ │ └── DefaultInput.js │ ├── WallDetails │ │ ├── WallDetails.js │ │ └── WallDetailsStyles.js │ ├── WallItem │ │ ├── WallItem.js │ │ └── WallItemStyles.js │ ├── common │ │ ├── Draggable.js │ │ └── FullWidthImage.js │ └── index.js ├── config │ ├── AppConfig.js │ ├── DebugConfig.js │ ├── README.md │ └── index.js ├── containers │ ├── ArtCreate │ │ ├── ArtCreate.js │ │ └── ArtCreateStyles.js │ ├── Auth │ │ ├── AuthStyles.js │ │ ├── Forgot.js │ │ ├── Login.js │ │ └── Signup.js │ ├── AuthLoading │ │ ├── AuthLoading.js │ │ └── AuthLoadingStyles.js │ ├── ChangePassword │ │ ├── ChangePassword.js │ │ └── ChangePasswordStyles.js │ ├── CreateHangup │ │ ├── CreateHangup.js │ │ └── CreateHangupStyles.js │ ├── EditProfile │ │ ├── EditProfile.js │ │ └── EditProfileStyles.js │ ├── Favorite │ │ ├── Favorite.js │ │ └── FavoriteStyles.js │ ├── Gallery │ │ ├── Gallery.js │ │ └── GalleryStyles.js │ ├── HangupEdit │ │ ├── HangupEdit.js │ │ └── HangupEditStyles.js │ ├── Library │ │ ├── Art.js │ │ ├── Hangups.js │ │ ├── Library.js │ │ ├── LibraryStyles.js │ │ └── Walls.js │ ├── Profile │ │ ├── Profile.js │ │ └── ProfileStyles.js │ ├── Root │ │ ├── Root.js │ │ └── RootStyles.js │ ├── SelectArt │ │ ├── SelectArt.js │ │ └── SelectArtStyles.js │ ├── SelectFrame │ │ ├── SelectFrame.js │ │ └── SelectFrameStyles.js │ ├── SelectWall │ │ ├── SelectWall.js │ │ └── SelectWallStyles.js │ ├── WallCreate │ │ ├── WallCreate.js │ │ └── WallCreateStyles.js │ ├── WallResize │ │ ├── WallResize.js │ │ └── WallResizeStyles.js │ ├── Welcome │ │ ├── Welcome.js │ │ └── WelcomeStyles.js │ └── qrCodeScanner │ │ └── qrCodeScanner.js ├── createFetch.js ├── createHelpers.js ├── createReducer.js ├── createStore.js ├── navigation │ ├── AppNavigationStyles.js │ └── AppNavigator.js ├── reducers │ ├── ScreenTrackingMiddleware.js │ ├── art.js │ ├── auth.js │ ├── frame.js │ ├── gallery.js │ ├── global.js │ ├── hangup.js │ ├── index.js │ ├── nav.js │ ├── profile.js │ └── wall.js ├── rn-sprite-sheet │ ├── index.js │ ├── package.json │ └── src │ │ └── SpriteSheet.js ├── store │ ├── package.json │ └── realm.js ├── themes │ ├── AppStyles.js │ ├── Colors.js │ ├── Fonts.js │ ├── Images.js │ ├── Metrics.js │ ├── README.md │ └── index.js └── utils │ ├── constants.js │ ├── utils.js │ └── validation.js ├── babel.config.js ├── index.android.js ├── index.ios.js ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ ├── RNDynamicCropper │ │ │ │ └── RNDynamicCropper.h │ │ │ ├── React │ │ │ │ └── React │ │ │ │ │ ├── RCTAccessibilityManager.h │ │ │ │ │ ├── RCTActivityIndicatorView.h │ │ │ │ │ ├── RCTActivityIndicatorViewManager.h │ │ │ │ │ ├── RCTAlertManager.h │ │ │ │ │ ├── RCTAnimationType.h │ │ │ │ │ ├── RCTAppState.h │ │ │ │ │ ├── RCTAssert.h │ │ │ │ │ ├── RCTAsyncLocalStorage.h │ │ │ │ │ ├── RCTAutoInsetsProtocol.h │ │ │ │ │ ├── RCTBorderDrawing.h │ │ │ │ │ ├── RCTBorderStyle.h │ │ │ │ │ ├── RCTBridge+Private.h │ │ │ │ │ ├── RCTBridge.h │ │ │ │ │ ├── RCTBridgeDelegate.h │ │ │ │ │ ├── RCTBridgeMethod.h │ │ │ │ │ ├── RCTBridgeModule.h │ │ │ │ │ ├── RCTBundleURLProvider.h │ │ │ │ │ ├── RCTClipboard.h │ │ │ │ │ ├── RCTComponent.h │ │ │ │ │ ├── RCTComponentData.h │ │ │ │ │ ├── RCTConvert+CoreLocation.h │ │ │ │ │ ├── RCTConvert+Transform.h │ │ │ │ │ ├── RCTConvert.h │ │ │ │ │ ├── RCTCxxConvert.h │ │ │ │ │ ├── RCTDatePicker.h │ │ │ │ │ ├── RCTDatePickerManager.h │ │ │ │ │ ├── RCTDefines.h │ │ │ │ │ ├── RCTDevSettings.h │ │ │ │ │ ├── RCTDeviceInfo.h │ │ │ │ │ ├── RCTDisplayLink.h │ │ │ │ │ ├── RCTErrorCustomizer.h │ │ │ │ │ ├── RCTErrorInfo.h │ │ │ │ │ ├── RCTEventDispatcher.h │ │ │ │ │ ├── RCTEventEmitter.h │ │ │ │ │ ├── RCTExceptionsManager.h │ │ │ │ │ ├── RCTFPSGraph.h │ │ │ │ │ ├── RCTFont.h │ │ │ │ │ ├── RCTFrameUpdate.h │ │ │ │ │ ├── RCTI18nManager.h │ │ │ │ │ ├── RCTI18nUtil.h │ │ │ │ │ ├── RCTImageSource.h │ │ │ │ │ ├── RCTInvalidating.h │ │ │ │ │ ├── RCTJSStackFrame.h │ │ │ │ │ ├── RCTJavaScriptExecutor.h │ │ │ │ │ ├── RCTJavaScriptLoader.h │ │ │ │ │ ├── RCTKeyCommands.h │ │ │ │ │ ├── RCTKeyboardObserver.h │ │ │ │ │ ├── RCTLayout.h │ │ │ │ │ ├── RCTLayoutAnimation.h │ │ │ │ │ ├── RCTLayoutAnimationGroup.h │ │ │ │ │ ├── RCTLog.h │ │ │ │ │ ├── RCTMacros.h │ │ │ │ │ ├── RCTManagedPointer.h │ │ │ │ │ ├── RCTMaskedView.h │ │ │ │ │ ├── RCTMaskedViewManager.h │ │ │ │ │ ├── RCTModalHostView.h │ │ │ │ │ ├── RCTModalHostViewController.h │ │ │ │ │ ├── RCTModalHostViewManager.h │ │ │ │ │ ├── RCTModalManager.h │ │ │ │ │ ├── RCTModuleData.h │ │ │ │ │ ├── RCTModuleMethod.h │ │ │ │ │ ├── RCTMultipartDataTask.h │ │ │ │ │ ├── RCTMultipartStreamReader.h │ │ │ │ │ ├── RCTNullability.h │ │ │ │ │ ├── RCTParserUtils.h │ │ │ │ │ ├── RCTPerformanceLogger.h │ │ │ │ │ ├── RCTPicker.h │ │ │ │ │ ├── RCTPickerManager.h │ │ │ │ │ ├── RCTPlatform.h │ │ │ │ │ ├── RCTPointerEvents.h │ │ │ │ │ ├── RCTProfile.h │ │ │ │ │ ├── RCTProgressViewManager.h │ │ │ │ │ ├── RCTRedBox.h │ │ │ │ │ ├── RCTRedBoxExtraDataViewController.h │ │ │ │ │ ├── RCTRefreshControl.h │ │ │ │ │ ├── RCTRefreshControlManager.h │ │ │ │ │ ├── RCTReloadCommand.h │ │ │ │ │ ├── RCTRootContentView.h │ │ │ │ │ ├── RCTRootShadowView.h │ │ │ │ │ ├── RCTRootView.h │ │ │ │ │ ├── RCTRootViewDelegate.h │ │ │ │ │ ├── RCTRootViewInternal.h │ │ │ │ │ ├── RCTSafeAreaShadowView.h │ │ │ │ │ ├── RCTSafeAreaView.h │ │ │ │ │ ├── RCTSafeAreaViewLocalData.h │ │ │ │ │ ├── RCTSafeAreaViewManager.h │ │ │ │ │ ├── RCTScrollContentShadowView.h │ │ │ │ │ ├── RCTScrollContentView.h │ │ │ │ │ ├── RCTScrollContentViewManager.h │ │ │ │ │ ├── RCTScrollView.h │ │ │ │ │ ├── RCTScrollViewManager.h │ │ │ │ │ ├── RCTScrollableProtocol.h │ │ │ │ │ ├── RCTSegmentedControl.h │ │ │ │ │ ├── RCTSegmentedControlManager.h │ │ │ │ │ ├── RCTShadowView+Internal.h │ │ │ │ │ ├── RCTShadowView+Layout.h │ │ │ │ │ ├── RCTShadowView.h │ │ │ │ │ ├── RCTSlider.h │ │ │ │ │ ├── RCTSliderManager.h │ │ │ │ │ ├── RCTSourceCode.h │ │ │ │ │ ├── RCTStatusBarManager.h │ │ │ │ │ ├── RCTSurface.h │ │ │ │ │ ├── RCTSurfaceDelegate.h │ │ │ │ │ ├── RCTSurfaceHostingProxyRootView.h │ │ │ │ │ ├── RCTSurfaceHostingView.h │ │ │ │ │ ├── RCTSurfaceRootShadowView.h │ │ │ │ │ ├── RCTSurfaceRootShadowViewDelegate.h │ │ │ │ │ ├── RCTSurfaceRootView.h │ │ │ │ │ ├── RCTSurfaceSizeMeasureMode.h │ │ │ │ │ ├── RCTSurfaceStage.h │ │ │ │ │ ├── RCTSurfaceView+Internal.h │ │ │ │ │ ├── RCTSurfaceView.h │ │ │ │ │ ├── RCTSwitch.h │ │ │ │ │ ├── RCTSwitchManager.h │ │ │ │ │ ├── RCTTextDecorationLineType.h │ │ │ │ │ ├── RCTTiming.h │ │ │ │ │ ├── RCTTouchEvent.h │ │ │ │ │ ├── RCTTouchHandler.h │ │ │ │ │ ├── RCTUIManager.h │ │ │ │ │ ├── RCTUIManagerObserverCoordinator.h │ │ │ │ │ ├── RCTUIManagerUtils.h │ │ │ │ │ ├── RCTUIUtils.h │ │ │ │ │ ├── RCTURLRequestDelegate.h │ │ │ │ │ ├── RCTURLRequestHandler.h │ │ │ │ │ ├── RCTUtils.h │ │ │ │ │ ├── RCTVersion.h │ │ │ │ │ ├── RCTView.h │ │ │ │ │ ├── RCTViewManager.h │ │ │ │ │ ├── RCTWKWebView.h │ │ │ │ │ ├── RCTWKWebViewManager.h │ │ │ │ │ ├── RCTWebView.h │ │ │ │ │ ├── RCTWebViewManager.h │ │ │ │ │ ├── RCTWrapperViewController.h │ │ │ │ │ ├── UIView+Private.h │ │ │ │ │ └── UIView+React.h │ │ │ ├── TOCropViewController │ │ │ │ ├── TOActivityCroppedImageProvider.h │ │ │ │ ├── TOCropOverlayView.h │ │ │ │ ├── TOCropScrollView.h │ │ │ │ ├── TOCropToolbar.h │ │ │ │ ├── TOCropView.h │ │ │ │ ├── TOCropViewConstants.h │ │ │ │ ├── TOCropViewController.h │ │ │ │ ├── TOCropViewControllerTransitioning.h │ │ │ │ ├── TOCroppedImageAttributes.h │ │ │ │ └── UIImage+CropRotate.h │ │ │ └── yoga │ │ │ │ ├── CompactValue.h │ │ │ │ ├── Utils.h │ │ │ │ ├── YGConfig.h │ │ │ │ ├── YGEnums.h │ │ │ │ ├── YGFloatOptional.h │ │ │ │ ├── YGLayout.h │ │ │ │ ├── YGMacros.h │ │ │ │ ├── YGMarker.h │ │ │ │ ├── YGNode.h │ │ │ │ ├── YGNodePrint.h │ │ │ │ ├── YGStyle.h │ │ │ │ ├── YGValue.h │ │ │ │ ├── Yoga-internal.h │ │ │ │ ├── Yoga.h │ │ │ │ └── instrumentation.h │ │ └── Public │ │ │ ├── RNDynamicCropper │ │ │ └── RNDynamicCropper.h │ │ │ ├── React │ │ │ └── React │ │ │ │ ├── RCTAccessibilityManager.h │ │ │ │ ├── RCTActivityIndicatorView.h │ │ │ │ ├── RCTActivityIndicatorViewManager.h │ │ │ │ ├── RCTAlertManager.h │ │ │ │ ├── RCTAnimationType.h │ │ │ │ ├── RCTAppState.h │ │ │ │ ├── RCTAssert.h │ │ │ │ ├── RCTAsyncLocalStorage.h │ │ │ │ ├── RCTAutoInsetsProtocol.h │ │ │ │ ├── RCTBorderDrawing.h │ │ │ │ ├── RCTBorderStyle.h │ │ │ │ ├── RCTBridge+Private.h │ │ │ │ ├── RCTBridge.h │ │ │ │ ├── RCTBridgeDelegate.h │ │ │ │ ├── RCTBridgeMethod.h │ │ │ │ ├── RCTBridgeModule.h │ │ │ │ ├── RCTBundleURLProvider.h │ │ │ │ ├── RCTClipboard.h │ │ │ │ ├── RCTComponent.h │ │ │ │ ├── RCTComponentData.h │ │ │ │ ├── RCTConvert+CoreLocation.h │ │ │ │ ├── RCTConvert+Transform.h │ │ │ │ ├── RCTConvert.h │ │ │ │ ├── RCTCxxConvert.h │ │ │ │ ├── RCTDatePicker.h │ │ │ │ ├── RCTDatePickerManager.h │ │ │ │ ├── RCTDefines.h │ │ │ │ ├── RCTDevSettings.h │ │ │ │ ├── RCTDeviceInfo.h │ │ │ │ ├── RCTDisplayLink.h │ │ │ │ ├── RCTErrorCustomizer.h │ │ │ │ ├── RCTErrorInfo.h │ │ │ │ ├── RCTEventDispatcher.h │ │ │ │ ├── RCTEventEmitter.h │ │ │ │ ├── RCTExceptionsManager.h │ │ │ │ ├── RCTFPSGraph.h │ │ │ │ ├── RCTFont.h │ │ │ │ ├── RCTFrameUpdate.h │ │ │ │ ├── RCTI18nManager.h │ │ │ │ ├── RCTI18nUtil.h │ │ │ │ ├── RCTImageSource.h │ │ │ │ ├── RCTInvalidating.h │ │ │ │ ├── RCTJSStackFrame.h │ │ │ │ ├── RCTJavaScriptExecutor.h │ │ │ │ ├── RCTJavaScriptLoader.h │ │ │ │ ├── RCTKeyCommands.h │ │ │ │ ├── RCTKeyboardObserver.h │ │ │ │ ├── RCTLayout.h │ │ │ │ ├── RCTLayoutAnimation.h │ │ │ │ ├── RCTLayoutAnimationGroup.h │ │ │ │ ├── RCTLog.h │ │ │ │ ├── RCTMacros.h │ │ │ │ ├── RCTManagedPointer.h │ │ │ │ ├── RCTMaskedView.h │ │ │ │ ├── RCTMaskedViewManager.h │ │ │ │ ├── RCTModalHostView.h │ │ │ │ ├── RCTModalHostViewController.h │ │ │ │ ├── RCTModalHostViewManager.h │ │ │ │ ├── RCTModalManager.h │ │ │ │ ├── RCTModuleData.h │ │ │ │ ├── RCTModuleMethod.h │ │ │ │ ├── RCTMultipartDataTask.h │ │ │ │ ├── RCTMultipartStreamReader.h │ │ │ │ ├── RCTNullability.h │ │ │ │ ├── RCTParserUtils.h │ │ │ │ ├── RCTPerformanceLogger.h │ │ │ │ ├── RCTPicker.h │ │ │ │ ├── RCTPickerManager.h │ │ │ │ ├── RCTPlatform.h │ │ │ │ ├── RCTPointerEvents.h │ │ │ │ ├── RCTProfile.h │ │ │ │ ├── RCTProgressViewManager.h │ │ │ │ ├── RCTRedBox.h │ │ │ │ ├── RCTRedBoxExtraDataViewController.h │ │ │ │ ├── RCTRefreshControl.h │ │ │ │ ├── RCTRefreshControlManager.h │ │ │ │ ├── RCTReloadCommand.h │ │ │ │ ├── RCTRootContentView.h │ │ │ │ ├── RCTRootShadowView.h │ │ │ │ ├── RCTRootView.h │ │ │ │ ├── RCTRootViewDelegate.h │ │ │ │ ├── RCTRootViewInternal.h │ │ │ │ ├── RCTSafeAreaShadowView.h │ │ │ │ ├── RCTSafeAreaView.h │ │ │ │ ├── RCTSafeAreaViewLocalData.h │ │ │ │ ├── RCTSafeAreaViewManager.h │ │ │ │ ├── RCTScrollContentShadowView.h │ │ │ │ ├── RCTScrollContentView.h │ │ │ │ ├── RCTScrollContentViewManager.h │ │ │ │ ├── RCTScrollView.h │ │ │ │ ├── RCTScrollViewManager.h │ │ │ │ ├── RCTScrollableProtocol.h │ │ │ │ ├── RCTSegmentedControl.h │ │ │ │ ├── RCTSegmentedControlManager.h │ │ │ │ ├── RCTShadowView+Internal.h │ │ │ │ ├── RCTShadowView+Layout.h │ │ │ │ ├── RCTShadowView.h │ │ │ │ ├── RCTSlider.h │ │ │ │ ├── RCTSliderManager.h │ │ │ │ ├── RCTSourceCode.h │ │ │ │ ├── RCTStatusBarManager.h │ │ │ │ ├── RCTSurface.h │ │ │ │ ├── RCTSurfaceDelegate.h │ │ │ │ ├── RCTSurfaceHostingProxyRootView.h │ │ │ │ ├── RCTSurfaceHostingView.h │ │ │ │ ├── RCTSurfaceRootShadowView.h │ │ │ │ ├── RCTSurfaceRootShadowViewDelegate.h │ │ │ │ ├── RCTSurfaceRootView.h │ │ │ │ ├── RCTSurfaceSizeMeasureMode.h │ │ │ │ ├── RCTSurfaceStage.h │ │ │ │ ├── RCTSurfaceView+Internal.h │ │ │ │ ├── RCTSurfaceView.h │ │ │ │ ├── RCTSwitch.h │ │ │ │ ├── RCTSwitchManager.h │ │ │ │ ├── RCTTextDecorationLineType.h │ │ │ │ ├── RCTTiming.h │ │ │ │ ├── RCTTouchEvent.h │ │ │ │ ├── RCTTouchHandler.h │ │ │ │ ├── RCTUIManager.h │ │ │ │ ├── RCTUIManagerObserverCoordinator.h │ │ │ │ ├── RCTUIManagerUtils.h │ │ │ │ ├── RCTUIUtils.h │ │ │ │ ├── RCTURLRequestDelegate.h │ │ │ │ ├── RCTURLRequestHandler.h │ │ │ │ ├── RCTUtils.h │ │ │ │ ├── RCTVersion.h │ │ │ │ ├── RCTView.h │ │ │ │ ├── RCTViewManager.h │ │ │ │ ├── RCTWKWebView.h │ │ │ │ ├── RCTWKWebViewManager.h │ │ │ │ ├── RCTWebView.h │ │ │ │ ├── RCTWebViewManager.h │ │ │ │ ├── RCTWrapperViewController.h │ │ │ │ ├── UIView+Private.h │ │ │ │ └── UIView+React.h │ │ │ ├── TOCropViewController │ │ │ ├── TOActivityCroppedImageProvider.h │ │ │ ├── TOCropOverlayView.h │ │ │ ├── TOCropScrollView.h │ │ │ ├── TOCropToolbar.h │ │ │ ├── TOCropView.h │ │ │ ├── TOCropViewConstants.h │ │ │ ├── TOCropViewController.h │ │ │ ├── TOCropViewControllerTransitioning.h │ │ │ ├── TOCroppedImageAttributes.h │ │ │ └── UIImage+CropRotate.h │ │ │ └── yoga │ │ │ ├── YGEnums.h │ │ │ ├── YGMacros.h │ │ │ ├── YGValue.h │ │ │ └── Yoga.h │ ├── Local Podspecs │ │ ├── RNDynamicCropper.podspec.json │ │ ├── RNImageCropPicker.podspec.json │ │ ├── RNShare.podspec.json │ │ ├── RNViewShot.podspec.json │ │ ├── React.podspec.json │ │ ├── react-native-exif.podspec.json │ │ ├── react-native-image-resizer.podspec.json │ │ └── yoga.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── TOCropViewController │ │ ├── LICENSE │ │ ├── Objective-C │ │ │ └── TOCropViewController │ │ │ │ ├── Categories │ │ │ │ ├── UIImage+CropRotate.h │ │ │ │ └── UIImage+CropRotate.m │ │ │ │ ├── Constants │ │ │ │ └── TOCropViewConstants.h │ │ │ │ ├── Models │ │ │ │ ├── TOActivityCroppedImageProvider.h │ │ │ │ ├── TOActivityCroppedImageProvider.m │ │ │ │ ├── TOCropViewControllerTransitioning.h │ │ │ │ ├── TOCropViewControllerTransitioning.m │ │ │ │ ├── TOCroppedImageAttributes.h │ │ │ │ └── TOCroppedImageAttributes.m │ │ │ │ ├── Resources │ │ │ │ ├── Base.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── ar.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── da-DK.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── de.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── en.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── es.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── fa-IR.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── fa.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── fr.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── hu.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── id.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── it.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── ja.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── ko.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── ms.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── nl.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── pl.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── pt.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── ro.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── ru.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── tr.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── vi.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── zh-Hans.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ └── zh-Hant.lproj │ │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ │ ├── TOCropViewController.h │ │ │ │ ├── TOCropViewController.m │ │ │ │ └── Views │ │ │ │ ├── TOCropOverlayView.h │ │ │ │ ├── TOCropOverlayView.m │ │ │ │ ├── TOCropScrollView.h │ │ │ │ ├── TOCropScrollView.m │ │ │ │ ├── TOCropToolbar.h │ │ │ │ ├── TOCropToolbar.m │ │ │ │ ├── TOCropView.h │ │ │ │ └── TOCropView.m │ │ └── README.md │ └── Target Support Files │ │ ├── Pods-artseeapp │ │ ├── Pods-artseeapp-acknowledgements.markdown │ │ ├── Pods-artseeapp-acknowledgements.plist │ │ ├── Pods-artseeapp-dummy.m │ │ ├── Pods-artseeapp-frameworks.sh │ │ ├── Pods-artseeapp-resources.sh │ │ ├── Pods-artseeapp.debug.xcconfig │ │ └── Pods-artseeapp.release.xcconfig │ │ ├── RNDynamicCropper │ │ ├── RNDynamicCropper-dummy.m │ │ ├── RNDynamicCropper-prefix.pch │ │ └── RNDynamicCropper.xcconfig │ │ ├── React │ │ ├── React-dummy.m │ │ ├── React-prefix.pch │ │ └── React.xcconfig │ │ ├── TOCropViewController │ │ ├── ResourceBundle-TOCropViewControllerBundle-Info.plist │ │ ├── TOCropViewController-dummy.m │ │ ├── TOCropViewController-prefix.pch │ │ └── TOCropViewController.xcconfig │ │ └── yoga │ │ ├── yoga-dummy.m │ │ ├── yoga-prefix.pch │ │ └── yoga.xcconfig ├── artseeapp-tvOS │ └── Info.plist ├── artseeapp-tvOSTests │ └── Info.plist ├── artseeapp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── artseeapp-tvOS.xcscheme │ │ └── artseeapp.xcscheme ├── artseeapp.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── artseeapp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── ArtSee1024-1024.png │ │ │ ├── ArtSee1024-20.png │ │ │ ├── ArtSee1024-20@2x-1.png │ │ │ ├── ArtSee1024-20@2x.png │ │ │ ├── ArtSee1024-20@3x.png │ │ │ ├── ArtSee1024-29.png │ │ │ ├── ArtSee1024-29@2x-1.png │ │ │ ├── ArtSee1024-29@2x.png │ │ │ ├── ArtSee1024-29@3x.png │ │ │ ├── ArtSee1024-40.png │ │ │ ├── ArtSee1024-40@2x-1.png │ │ │ ├── ArtSee1024-40@2x.png │ │ │ ├── ArtSee1024-40@3x-1.png │ │ │ ├── ArtSee1024-40@3x.png │ │ │ ├── ArtSee1024-60@3x.png │ │ │ ├── ArtSee1024-76.png │ │ │ ├── ArtSee1024-76@2x.png │ │ │ ├── ArtSee1024-83.5@2x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── DefaultL_ipad.png │ │ │ ├── DefaultL_ipad@2x.png │ │ │ ├── DefaultP_ipad-1.png │ │ │ ├── DefaultP_ipad@2x.png │ │ │ ├── DefaultP_iphone5@2x.png │ │ │ ├── DefaultP_iphone@2x.png │ │ │ ├── ipx_landscape.png │ │ │ └── ipx_portrait.png │ ├── Info.plist │ └── main.m └── artseeappTests │ ├── Info.plist │ └── artseeappTests.m ├── metro.config.js ├── package.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "java.configuration.updateBuildConfiguration": "disabled" 3 | } -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- 1 | import './app/config' 2 | // import DebugConfig from '../config/DebugConfig' 3 | import React from 'react' 4 | import { Provider } from 'react-redux' 5 | import createStore from './app/reducers' 6 | import createFetch from './app/createFetch' 7 | 8 | import Root from './app/containers/Root/Root' 9 | 10 | const customFetch = createFetch(fetch) 11 | export const store = createStore({ fetch: customFetch }) 12 | 13 | export default class App extends React.Component { 14 | componentDidMount() { 15 | 16 | } 17 | 18 | render() { 19 | return ( 20 | 21 | 22 | 23 | ); 24 | } 25 | } 26 | 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ArtSee_ReactNative -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import 'react-native'; 6 | import React from 'react'; 7 | import App from '../App'; 8 | 9 | // Note: test renderer must be required after react-native. 10 | import renderer from 'react-test-renderer'; 11 | 12 | it('renders correctly', () => { 13 | renderer.create(); 14 | }); 15 | -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | artseeapp 4 | Project android created by Buildship. 5 | 6 | 7 | 8 | 9 | org.eclipse.buildship.core.gradleprojectbuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.buildship.core.gradleprojectnature 16 | 17 | 18 | -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | arguments= 2 | auto.sync=false 3 | build.scans.enabled=false 4 | connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER) 5 | connection.project.dir= 6 | eclipse.preferences.version=1 7 | gradle.user.home=D\:/Gradle/gradle-4.6/bin 8 | java.home= 9 | jvm.arguments= 10 | offline.mode=false 11 | override.workspace.settings=true 12 | show.console.view=true 13 | show.executions.view=true 14 | -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | app 4 | Project app created by Buildship. 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.buildship.core.gradleprojectbuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.jdt.core.javanature 21 | org.eclipse.buildship.core.gradleprojectnature 22 | 23 | 24 | -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir=.. 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") 12 | 13 | lib_deps = [] 14 | 15 | create_aar_targets(glob(["libs/*.aar"])) 16 | 17 | create_jar_targets(glob(["libs/*.jar"])) 18 | 19 | android_library( 20 | name = "all-libs", 21 | exported_deps = lib_deps, 22 | ) 23 | 24 | android_library( 25 | name = "app-code", 26 | srcs = glob([ 27 | "src/main/java/**/*.java", 28 | ]), 29 | deps = [ 30 | ":all-libs", 31 | ":build_config", 32 | ":res", 33 | ], 34 | ) 35 | 36 | android_build_config( 37 | name = "build_config", 38 | package = "com.artseeapp", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.artseeapp", 44 | res = "src/main/res", 45 | ) 46 | 47 | android_binary( 48 | name = "app", 49 | keystore = "//android/keystores:debug", 50 | manifest = "src/main/AndroidManifest.xml", 51 | package_type = "debug", 52 | deps = [ 53 | ":app-code", 54 | ], 55 | ) 56 | -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- 1 | """Helper definitions to glob .aar and .jar targets""" 2 | 3 | def create_aar_targets(aarfiles): 4 | for aarfile in aarfiles: 5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 | lib_deps.append(":" + name) 7 | android_prebuilt_aar( 8 | name = name, 9 | aar = aarfile, 10 | ) 11 | 12 | def create_jar_targets(jarfiles): 13 | for jarfile in jarfiles: 14 | name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] 15 | lib_deps.append(":" + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/artseeapp/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.artseeapp; 2 | 3 | import com.facebook.react.ReactActivity; 4 | import android.content.Intent; 5 | 6 | import com.facebook.react.ReactActivityDelegate; 7 | import com.facebook.react.ReactRootView; 8 | import com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView; 9 | 10 | public class MainActivity extends ReactActivity { 11 | 12 | /** 13 | * Returns the name of the main component registered from JavaScript. 14 | * This is used to schedule rendering of the component. 15 | */ 16 | @Override 17 | public void onActivityResult(int requestCode, int resultCode, Intent data) { 18 | super.onActivityResult(requestCode, resultCode, data); 19 | MainApplication.getCallbackManager().onActivityResult(requestCode, resultCode, data); 20 | } 21 | @Override 22 | protected String getMainComponentName() { 23 | return "artseeapp"; 24 | } 25 | @Override 26 | protected ReactActivityDelegate createReactActivityDelegate() { 27 | return new ReactActivityDelegate(this, getMainComponentName()) { 28 | @Override 29 | protected ReactRootView createRootView() { 30 | return new RNGestureHandlerEnabledRootView(MainActivity.this); 31 | } 32 | }; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ARTSEE 3 | 296351944282716 4 | fb296351944282716 5 | 6 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext { 5 | buildToolsVersion = "28.0.3" 6 | minSdkVersion = 16 7 | compileSdkVersion = 28 8 | targetSdkVersion = 28 9 | supportLibVersion = "28.0.0" 10 | } 11 | repositories { 12 | google() 13 | jcenter() 14 | } 15 | dependencies { 16 | classpath("com.android.tools.build:gradle:3.4.0") 17 | // NOTE: Do not place your application dependencies here; they belong 18 | // in the individual module build.gradle files 19 | } 20 | } 21 | 22 | allprojects { 23 | repositories { 24 | mavenLocal() 25 | google() 26 | jcenter() 27 | maven { 28 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 29 | url "$rootDir/../node_modules/react-native/android" 30 | } 31 | maven { url 'https://maven.google.com' } 32 | maven { url "https://jitpack.io" } 33 | } 34 | } 35 | subprojects { 36 | afterEvaluate {project -> 37 | if (project.hasProperty("android")) { 38 | android { 39 | compileSdkVersion 28 40 | buildToolsVersion "28.0.3" 41 | } 42 | } 43 | } 44 | } -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | android.useDeprecatedNdk=true 20 | android.enableAapt2=false 21 | android.useAndroidX = false 22 | android.enableJetifier = false 23 | 24 | APP_RELEASE_STORE_FILE=../keystores/release-key.keystore 25 | APP_RELEASE_KEY_ALIAS=key-alias 26 | APP_RELEASE_STORE_PASSWORD=111111 27 | APP_RELEASE_KEY_PASSWORD=111111 -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "artseeapp", 3 | "displayName": "ARTSEE" 4 | } -------------------------------------------------------------------------------- /app/assets/CalibrationMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/CalibrationMode.png -------------------------------------------------------------------------------- /app/assets/CalibrationMode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/CalibrationMode@2x.png -------------------------------------------------------------------------------- /app/assets/CalibrationModeWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/CalibrationModeWhite.png -------------------------------------------------------------------------------- /app/assets/DeleteButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/DeleteButton.png -------------------------------------------------------------------------------- /app/assets/DeleteButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/DeleteButton@2x.png -------------------------------------------------------------------------------- /app/assets/DrawerAbout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/DrawerAbout.png -------------------------------------------------------------------------------- /app/assets/DrawerAbout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/DrawerAbout@2x.png -------------------------------------------------------------------------------- /app/assets/EditCrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/EditCrop.png -------------------------------------------------------------------------------- /app/assets/EditCrop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/EditCrop@2x.png -------------------------------------------------------------------------------- /app/assets/Help_Drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/Help_Drag.png -------------------------------------------------------------------------------- /app/assets/Help_Drag@x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/Help_Drag@x.png -------------------------------------------------------------------------------- /app/assets/Help_Pinch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/Help_Pinch.png -------------------------------------------------------------------------------- /app/assets/Help_Pinch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/Help_Pinch@2x.png -------------------------------------------------------------------------------- /app/assets/RetouchWall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/RetouchWall.png -------------------------------------------------------------------------------- /app/assets/RetouchWall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/RetouchWall@2x.png -------------------------------------------------------------------------------- /app/assets/RetouchWallWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/RetouchWallWhite.png -------------------------------------------------------------------------------- /app/assets/Room1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/Room1.jpg -------------------------------------------------------------------------------- /app/assets/Room2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/Room2.jpg -------------------------------------------------------------------------------- /app/assets/Room3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/Room3.jpg -------------------------------------------------------------------------------- /app/assets/Room4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/Room4.jpg -------------------------------------------------------------------------------- /app/assets/StandaloneAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/StandaloneAdd.png -------------------------------------------------------------------------------- /app/assets/StandaloneAdd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/StandaloneAdd@2x.png -------------------------------------------------------------------------------- /app/assets/StandaloneDisclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/StandaloneDisclosure.png -------------------------------------------------------------------------------- /app/assets/StandaloneDisclosure@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/StandaloneDisclosure@2x.png -------------------------------------------------------------------------------- /app/assets/StandaloneDisclosureSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/StandaloneDisclosureSmall.png -------------------------------------------------------------------------------- /app/assets/StandaloneDisclosureSmall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/StandaloneDisclosureSmall@2x.png -------------------------------------------------------------------------------- /app/assets/StandaloneInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/StandaloneInfo.png -------------------------------------------------------------------------------- /app/assets/StandaloneInfo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/StandaloneInfo@2x.png -------------------------------------------------------------------------------- /app/assets/StarEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/StarEmpty.png -------------------------------------------------------------------------------- /app/assets/StarEmpty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/StarEmpty@2x.png -------------------------------------------------------------------------------- /app/assets/StarFilled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/StarFilled.png -------------------------------------------------------------------------------- /app/assets/StarFilled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/StarFilled@2x.png -------------------------------------------------------------------------------- /app/assets/icon_favorite_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/icon_favorite_active.png -------------------------------------------------------------------------------- /app/assets/icon_favorite_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/icon_favorite_inactive.png -------------------------------------------------------------------------------- /app/assets/icon_gallery_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/icon_gallery_active.png -------------------------------------------------------------------------------- /app/assets/icon_gallery_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/icon_gallery_inactive.png -------------------------------------------------------------------------------- /app/assets/icon_hangup_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/icon_hangup_active.png -------------------------------------------------------------------------------- /app/assets/icon_hangup_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/icon_hangup_inactive.png -------------------------------------------------------------------------------- /app/assets/icon_library_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/icon_library_active.png -------------------------------------------------------------------------------- /app/assets/icon_library_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/icon_library_inactive.png -------------------------------------------------------------------------------- /app/assets/icon_profile_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/icon_profile_active.png -------------------------------------------------------------------------------- /app/assets/icon_profile_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/icon_profile_inactive.png -------------------------------------------------------------------------------- /app/assets/onboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/onboard1.png -------------------------------------------------------------------------------- /app/assets/onboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/onboard2.png -------------------------------------------------------------------------------- /app/assets/onboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/onboard3.png -------------------------------------------------------------------------------- /app/assets/onboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/app/assets/onboard4.png -------------------------------------------------------------------------------- /app/components/AddModal/AddModalStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet, Dimensions } from 'react-native' 2 | import { Colors, Fonts, Metrics } from '../../themes' 3 | const { width, height } = Dimensions.get('window') 4 | 5 | export default StyleSheet.create({ 6 | pickerItem: { 7 | padding: 15, 8 | borderBottomWidth: 2, 9 | borderColor: '#F6F6F6', 10 | justifyContent: 'center', 11 | alignItems: 'center' 12 | }, 13 | pickerLabel: { 14 | fontSize: 16, 15 | color: 'black' 16 | } 17 | }) 18 | -------------------------------------------------------------------------------- /app/components/ArtItem/ArtItemStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet, Dimensions } from 'react-native' 2 | import { Colors, Fonts, Metrics } from '../../themes' 3 | const { width, height } = Dimensions.get('window') 4 | 5 | export default StyleSheet.create({ 6 | container: { 7 | flex: 1, 8 | justifyContent: "center", 9 | alignItems: 'flex-start', 10 | backgroundColor: '#fbfbfb', 11 | }, 12 | content: { 13 | flex: 1, 14 | justifyContent: 'center', 15 | padding: width / 10, 16 | }, 17 | topCont: { 18 | flexDirection: 'row', 19 | alignItems: "center", 20 | justifyContent: 'center', 21 | width: "100%", 22 | padding: 15, 23 | borderColor: '#eee', 24 | borderBottomWidth: 1, 25 | }, 26 | itemContainer: { 27 | flexDirection: 'row', 28 | borderBottomWidth: 1, 29 | borderBottomColor: "#eee", 30 | backgroundColor: 'white', 31 | borderRadius: 10, 32 | marginVertical: 5, 33 | padding: 10, 34 | alignItems: 'center' 35 | }, 36 | textStyle: { 37 | textAlign: 'left', 38 | color: '#000' 39 | }, 40 | linkIcon: { 41 | backgroundColor: '#2B2E37', 42 | padding: 5, 43 | borderRadius: 100 44 | }, 45 | swipeoutBtn:{ 46 | borderRadius: 10, 47 | margin: 10, 48 | backgroundColor: 'red', 49 | flex: 1, 50 | justifyContent: 'center', 51 | alignItems: 'center' 52 | }, 53 | iconWrap:{ 54 | backgroundColor: '#2A2E37', 55 | padding: 8, 56 | borderRadius: 50, 57 | } 58 | }) 59 | -------------------------------------------------------------------------------- /app/components/ArtList/ArtListStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet, Dimensions } from 'react-native' 2 | import { Colors, Fonts, Metrics } from '../../themes' 3 | const { width, height } = Dimensions.get('window') 4 | 5 | export default StyleSheet.create({ 6 | container: { 7 | flex: 1, 8 | justifyContent: "center", 9 | alignItems: 'flex-start', 10 | backgroundColor: '#fbfbfb', 11 | }, 12 | }) 13 | -------------------------------------------------------------------------------- /app/components/CustomTabBar/Button.android.js: -------------------------------------------------------------------------------- 1 | const React = require('react'); 2 | const ReactNative = require('react-native'); 3 | const { 4 | TouchableNativeFeedback, 5 | View, 6 | } = ReactNative; 7 | 8 | const Button = (props) => { 9 | return 14 | {props.children} 15 | ; 16 | }; 17 | 18 | module.exports = Button; 19 | -------------------------------------------------------------------------------- /app/components/CustomTabBar/Button.ios.js: -------------------------------------------------------------------------------- 1 | const React = require('react'); 2 | const ReactNative = require('react-native'); 3 | const { 4 | TouchableOpacity, 5 | View, 6 | } = ReactNative; 7 | 8 | const Button = (props) => { 9 | return 10 | {props.children} 11 | ; 12 | }; 13 | 14 | module.exports = Button; 15 | -------------------------------------------------------------------------------- /app/components/DeleteModal/DeleteModalStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet, Dimensions } from 'react-native' 2 | import { Colors, Fonts, Metrics } from '../../themes' 3 | const { width, height } = Dimensions.get('window') 4 | 5 | export default StyleSheet.create({ 6 | content: { 7 | width: '100%', 8 | marginHorizontal: 20, 9 | backgroundColor: '#282F37', 10 | justifyContent: 'center', 11 | alignItems: 'center', 12 | padding: 20, 13 | borderRadius: 10 14 | }, 15 | text: { 16 | color: 'white', 17 | fontSize: 16, 18 | textAlign: 'center' 19 | }, 20 | backbtn: { 21 | borderWidth: 1, 22 | borderColor: 'white', 23 | backgroundColor: 'transparent', 24 | borderRadius: 50, 25 | paddingVertical: 5, 26 | paddingHorizontal: 30 27 | }, 28 | deletebtn:{ 29 | backgroundColor: 'red', 30 | borderRadius: 50, 31 | paddingVertical: 5, 32 | paddingHorizontal: 30 33 | }, 34 | btnGroup: { 35 | width: '100%', 36 | flexDirection: 'row', 37 | justifyContent: 'space-around', 38 | marginTop: 20 39 | }, 40 | iconWrap: { 41 | backgroundColor: 'white', 42 | padding: 5, 43 | borderRadius: 200, 44 | marginBottom: 10 45 | } 46 | }) 47 | -------------------------------------------------------------------------------- /app/components/DragArtItem/DragArtItemStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet, Dimensions } from 'react-native' 2 | import { Colors, Fonts, Metrics } from '../../themes' 3 | const { width, height } = Dimensions.get('window') 4 | 5 | export default StyleSheet.create({ 6 | container: { 7 | flex: 1, 8 | }, 9 | artContainer: { 10 | alignSelf: 'flex-start', 11 | borderWidth: 5, 12 | borderColor: 'transparent', 13 | borderRadius: 8, 14 | padding: 16, 15 | margin: 5 16 | }, 17 | wrapper: { 18 | backgroundColor: 'rgba(0,0,0,0.3)', 19 | borderColor: '#eee', 20 | elevation: 2, 21 | }, 22 | rotate: { 23 | display: 'flex', 24 | flexDirection: 'row', 25 | justifyContent: 'center', 26 | marginTop: 16 27 | } 28 | }) 29 | -------------------------------------------------------------------------------- /app/components/Drawer/DrawerStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet, Dimensions } from 'react-native' 2 | import { Colors, Fonts, Metrics } from '../../themes' 3 | const { width, height } = Dimensions.get('window') 4 | 5 | export default StyleSheet.create({ 6 | container: { 7 | flex: 1, 8 | justifyContent: "center", 9 | alignItems: 'flex-start', 10 | backgroundColor: '#fbfbfb', 11 | }, 12 | content: { 13 | flex: 1, 14 | justifyContent: 'center', 15 | padding: width / 10, 16 | }, 17 | topCont: { 18 | flexDirection: 'row', 19 | alignItems: "center", 20 | justifyContent: 'center', 21 | width: "100%", 22 | padding: 15, 23 | borderColor: '#eee', 24 | borderBottomWidth: 1, 25 | }, 26 | playerImage: { 27 | width: 50, 28 | height: 50, 29 | marginBottom: 10, 30 | borderRadius: 35, 31 | backgroundColor: '#A4FFEB', 32 | marginTop: 10, 33 | overflow: 'hidden' 34 | }, 35 | avatarText: { 36 | alignSelf: 'center', 37 | fontSize: 30, 38 | color: "#000000", 39 | fontFamily: "GothamPro-Bold", 40 | marginTop: 18 41 | }, 42 | topName: { 43 | marginLeft: 10, 44 | fontSize: 15, 45 | textAlign: "center", 46 | color: "#000", 47 | flex: 1 48 | }, 49 | item: { 50 | padding: 10, 51 | }, 52 | itemLabel: { 53 | fontSize: 20, 54 | color: '#212149' 55 | }, 56 | logout: { 57 | padding: 10, 58 | }, 59 | logoutLabel: { 60 | fontSize: 20, 61 | color: 'red' 62 | }, 63 | }) 64 | -------------------------------------------------------------------------------- /app/components/Drawer/index.js: -------------------------------------------------------------------------------- 1 | import Drawer from './Drawer' 2 | 3 | export default Drawer 4 | -------------------------------------------------------------------------------- /app/components/PinchableBox/PinchableBoxStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet } from 'react-native' 2 | import { Colors, Metrics, Fonts } from '../../themes' 3 | 4 | 5 | export default StyleSheet.create({ 6 | container: { 7 | ...StyleSheet.absoluteFillObject, 8 | backgroundColor: 'transparent', 9 | overflow: 'hidden', 10 | alignItems: 'center', 11 | flex: 1, 12 | justifyContent: 'center', 13 | }, 14 | pinchableView: { 15 | width: 110, 16 | height: 85, 17 | backgroundColor: 'rgba(0,0,0,0.5)', 18 | justifyContent: 'center', 19 | alignItems: 'center', 20 | opacity: 0.8, 21 | borderRadius: 10 22 | }, 23 | wrapper: { 24 | flex: 1, 25 | }, 26 | }) 27 | -------------------------------------------------------------------------------- /app/components/README.md: -------------------------------------------------------------------------------- 1 | ### Components Folder 2 | All components are stored and organized here 3 | -------------------------------------------------------------------------------- /app/components/UI/DefaultButton/DefaultButton.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { TouchableHighlight, StyleSheet, Text } from "react-native"; 3 | 4 | const DefaultButton = props => ( 5 | 11 | 18 | {props.children} 19 | 20 | 21 | ); 22 | 23 | const baseButton = { 24 | alignItems: "center", 25 | justifyContent: "center", 26 | width: "100%", 27 | height: 50, 28 | borderRadius: 7, 29 | backgroundColor: "#9864f0" 30 | }; 31 | 32 | const baseText = { 33 | color: "#fff", 34 | fontSize: 20 35 | }; 36 | 37 | const styles = StyleSheet.create({ 38 | defaultButton: baseButton, 39 | defaultButtonDisabled: { 40 | ...baseButton, 41 | backgroundColor: "#B59EDD" 42 | }, 43 | defaultButtonText: baseText, 44 | defaultButtonTextDisabled: { 45 | ...baseText, 46 | color: "#D0C2E9" 47 | } 48 | }); 49 | 50 | export default DefaultButton; 51 | -------------------------------------------------------------------------------- /app/components/UI/DefaultInput/DefaultInput.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { StyleSheet, TextInput } from "react-native"; 3 | 4 | const DefaultInput = props => ( 5 | 15 | ); 16 | 17 | const baseInput = { 18 | width: '100%', 19 | backgroundColor: '#f1f4f9', 20 | marginVertical: 5, 21 | borderRadius: 5, 22 | justifyContent: 'center', 23 | alignItems: 'center', 24 | fontSize: 18, 25 | borderWidth: 1, 26 | borderColor: '#eff0f3', 27 | padding: 10 28 | }; 29 | 30 | const styles = StyleSheet.create({ 31 | input: baseInput, 32 | errorInput: { 33 | ...baseInput, 34 | borderColor: "red" 35 | } 36 | }); 37 | 38 | export default DefaultInput; 39 | -------------------------------------------------------------------------------- /app/components/WallItem/WallItemStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet, Dimensions } from 'react-native' 2 | import { Colors, Fonts, Metrics } from '../../themes' 3 | const { width, height } = Dimensions.get('window') 4 | 5 | export default StyleSheet.create({ 6 | container: { 7 | flex: 1, 8 | justifyContent: "center", 9 | alignItems: 'flex-start', 10 | backgroundColor: '#fbfbfb', 11 | }, 12 | content: { 13 | flex: 1, 14 | justifyContent: 'center', 15 | padding: width / 10, 16 | }, 17 | topCont: { 18 | flexDirection: 'row', 19 | alignItems: "center", 20 | justifyContent: 'center', 21 | width: "100%", 22 | padding: 15, 23 | borderColor: '#eee', 24 | borderBottomWidth: 1, 25 | }, 26 | itemContainer: { 27 | flexDirection: 'row', 28 | borderBottomWidth: 1, 29 | borderBottomColor: "#eee", 30 | backgroundColor: 'white', 31 | borderRadius: 10, 32 | marginVertical: 5, 33 | padding: 10, 34 | alignItems: 'center' 35 | }, 36 | textStyle: { 37 | textAlign: 'left', 38 | color: '#000' 39 | }, 40 | linkIcon: { 41 | backgroundColor: '#2B2E37', 42 | padding: 5, 43 | borderRadius: 100 44 | }, 45 | swipeoutBtn:{ 46 | borderRadius: 10, 47 | margin: 10, 48 | backgroundColor: 'red', 49 | flex: 1, 50 | justifyContent: 'center', 51 | alignItems: 'center' 52 | }, 53 | iconWrap:{ 54 | backgroundColor: '#2A2E37', 55 | padding: 8, 56 | borderRadius: 50, 57 | } 58 | }) 59 | -------------------------------------------------------------------------------- /app/components/common/FullWidthImage.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import {Image, View} from "react-native"; 3 | 4 | export default class FullWidthImage extends Component { 5 | constructor() { 6 | super(); 7 | 8 | this.state = { 9 | width: 0, 10 | height: 0 11 | }; 12 | } 13 | 14 | _onLayout(event) { 15 | const containerWidth = event.nativeEvent.layout.width; 16 | 17 | if (this.props.ratio) { 18 | this.setState({ 19 | width: containerWidth, 20 | height: containerWidth * this.props.ratio 21 | }); 22 | } else { 23 | if (this.props.isSource) { 24 | const {width, height} = Image.resolveAssetSource(this.props.source); 25 | 26 | this.setState({ 27 | width: containerWidth, 28 | height: containerWidth * height / width 29 | }); 30 | } else { 31 | Image.getSize(this.props.source, (width, height) => { 32 | this.setState({ 33 | width: containerWidth, 34 | height: containerWidth * height / width 35 | }); 36 | }); 37 | } 38 | } 39 | } 40 | 41 | render() { 42 | return ( 43 | 44 | 50 | 51 | ); 52 | } 53 | } -------------------------------------------------------------------------------- /app/components/index.js: -------------------------------------------------------------------------------- 1 | export {default as Swiper} from './Swiper' 2 | export {default as Drawer} from './Drawer' 3 | 4 | -------------------------------------------------------------------------------- /app/config/AppConfig.js: -------------------------------------------------------------------------------- 1 | // Simple React Native specific changes 2 | 3 | export default { 4 | // font scaling override - RN default is on 5 | apiUrl: 'https://artseeapp.com/api', 6 | siteUrl: 'https://artseeapp.com', 7 | APP_TITLE: 'ARTSEE', 8 | DEFAULT_PASSWORD: '123' 9 | } 10 | -------------------------------------------------------------------------------- /app/config/DebugConfig.js: -------------------------------------------------------------------------------- 1 | export default { 2 | useFixtures: false, 3 | ezLogin: false, 4 | yellowBox: __DEV__, 5 | reduxLogging: __DEV__, 6 | includeExamples: __DEV__, 7 | useReactotron: __DEV__ 8 | } 9 | -------------------------------------------------------------------------------- /app/config/README.md: -------------------------------------------------------------------------------- 1 | ### Config Folder 2 | All application specific configuration falls in this folder. 3 | 4 | `AppConfig.js` - production values. 5 | `DebugConfig.js` - development-wide globals. 6 | `ReactotronConfig.js` - Reactotron client settings. 7 | -------------------------------------------------------------------------------- /app/config/index.js: -------------------------------------------------------------------------------- 1 | import { YellowBox } from 'react-native' 2 | import DebugConfig from './DebugConfig' 3 | 4 | if (__DEV__) { 5 | // If ReactNative's yellow box warnings are too much, it is possible to turn 6 | // it off, but the healthier approach is to fix the warnings. =) 7 | console.disableYellowBox = !DebugConfig.yellowBox 8 | YellowBox.ignoreWarnings(['Warning: isMounted(...) is deprecated', 'Module RCTImageLoader']) 9 | } 10 | -------------------------------------------------------------------------------- /app/containers/ArtCreate/ArtCreateStyles.js: -------------------------------------------------------------------------------- 1 | import { Platform, StyleSheet, Dimensions } from 'react-native' 2 | import { Colors, Fonts, Metrics } from '../../themes' 3 | const { width, height } = Dimensions.get('window') 4 | 5 | export default StyleSheet.create({ 6 | container: { 7 | flex: 1, 8 | }, 9 | containerStyle: { 10 | borderColor: 'grey', 11 | borderBottomWidth: 1, 12 | borderRadius: 5, 13 | margin: 0, 14 | marginTop: 8, 15 | }, 16 | inputStyle: { 17 | }, 18 | subTitle: { 19 | marginTop: 16, 20 | color: '#000', 21 | fontSize: 20, 22 | marginHorizontal: 16 23 | }, 24 | textStyle: { 25 | textAlign: 'center', 26 | color: '#000' 27 | }, 28 | bottomTextStyle: { 29 | fontSize: 14, 30 | color: '#000' 31 | }, 32 | contact: { 33 | color: '#e53935' 34 | }, 35 | sectionname: { 36 | fontSize: 25, 37 | color: '#212149', 38 | marginHorizontal: 16, 39 | marginTop: 5 40 | }, 41 | bottomButton: { 42 | alignSelf: 'flex-end', 43 | width: '100%', 44 | flexDirection: 'row', 45 | backgroundColor: 'transparent', 46 | justifyContent: 'center', 47 | alignItems: 'center' 48 | }, 49 | confirmBtn: { 50 | paddingVertical: 5, 51 | paddingHorizontal: 30, 52 | borderRadius: 100, 53 | backgroundColor: '#282F37', 54 | marginVertical: 20, 55 | flexDirection: 'row' 56 | }, 57 | confirmBtnLabel: { 58 | fontSize: 15, 59 | color: 'white', 60 | }, 61 | }) 62 | -------------------------------------------------------------------------------- /app/containers/AuthLoading/AuthLoading.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { View,Text, ActivityIndicator } from 'react-native' 3 | import s from './AuthLoadingStyles' 4 | import { connect } from 'react-redux' 5 | import { authAutoSignIn } from '../../reducers/auth' 6 | 7 | class AuthLoading extends React.Component { 8 | constructor(props) { 9 | super(props); 10 | props.authAutoSignIn(); 11 | } 12 | render () { 13 | return ( 14 | 15 | 16 | 17 | ) 18 | } 19 | } 20 | 21 | const mapStateToProps = state => ({}) 22 | 23 | const mapDispatchToProps = { authAutoSignIn } 24 | 25 | export default connect(mapStateToProps, mapDispatchToProps)(AuthLoading) 26 | -------------------------------------------------------------------------------- /app/containers/AuthLoading/AuthLoadingStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet } from 'react-native' 2 | 3 | export default StyleSheet.create({ 4 | container: { 5 | flex: 1, 6 | justifyContent: 'center', 7 | alignItems: 'center', 8 | backgroundColor: 'white' 9 | }, 10 | }) 11 | -------------------------------------------------------------------------------- /app/containers/ChangePassword/ChangePasswordStyles.js: -------------------------------------------------------------------------------- 1 | import { Platform, StyleSheet, Dimensions } from 'react-native' 2 | import { Colors, Fonts, Metrics } from '../../themes' 3 | const { width, height } = Dimensions.get('window') 4 | 5 | export default StyleSheet.create({ 6 | container: { 7 | flex: 1, 8 | paddingHorizontal: width / 10 9 | }, 10 | textContainer: { 11 | marginVertical: 20 12 | }, 13 | welcomeText: { 14 | fontSize: 25, 15 | color: '#212149', 16 | marginBottom: 10, 17 | textAlign: 'center' 18 | }, 19 | baseText: { 20 | fontSize: 15, 21 | color: '#212149', 22 | lineHeight: 25, 23 | textAlign: 'center' 24 | }, 25 | primaryBtn: { 26 | width: '100%', 27 | backgroundColor: 'black', 28 | marginVertical: 5, 29 | borderRadius: 5, 30 | justifyContent: 'center', 31 | alignItems: 'center', 32 | paddingVertical: 10 33 | }, 34 | primaryBtnLabel: { 35 | color: 'white', 36 | fontSize: 20 37 | }, 38 | msgContainer: { 39 | alignItems: "center", 40 | marginTop: 15, 41 | marginBottom: 15 42 | }, 43 | headerWrapper: { 44 | marginBottom: 10 45 | }, 46 | message: { 47 | fontSize: 20, 48 | color: "#9864F0" 49 | }, 50 | inputContainer: { 51 | width: "100%" 52 | }, 53 | inputLabel: { 54 | fontSize: 16, 55 | color: '#3a5ec1' 56 | } 57 | }) 58 | -------------------------------------------------------------------------------- /app/containers/EditProfile/EditProfileStyles.js: -------------------------------------------------------------------------------- 1 | import { Platform, StyleSheet, Dimensions } from 'react-native' 2 | import { Colors, Fonts, Metrics } from '../../themes' 3 | const { width, height } = Dimensions.get('window') 4 | 5 | export default StyleSheet.create({ 6 | container: { 7 | flex: 1, 8 | justifyContent: "center", 9 | alignItems: 'center', 10 | paddingHorizontal: width / 10 11 | }, 12 | textContainer: { 13 | marginVertical: 20 14 | }, 15 | welcomeText: { 16 | fontSize: 25, 17 | color: '#212149', 18 | marginBottom: 10, 19 | textAlign: 'center' 20 | }, 21 | baseText: { 22 | fontSize: 15, 23 | color: '#212149', 24 | lineHeight: 25, 25 | textAlign: 'center' 26 | }, 27 | primaryBtn: { 28 | width: '100%', 29 | backgroundColor: 'black', 30 | marginVertical: 5, 31 | borderRadius: 5, 32 | justifyContent: 'center', 33 | alignItems: 'center', 34 | paddingVertical: 10 35 | }, 36 | primaryBtnLabel: { 37 | color: 'white', 38 | fontSize: 20 39 | }, 40 | msgContainer: { 41 | alignItems: "center", 42 | marginTop: 15, 43 | marginBottom: 15 44 | }, 45 | headerWrapper: { 46 | marginBottom: 10 47 | }, 48 | message: { 49 | fontSize: 20, 50 | color: "#9864F0" 51 | }, 52 | inputContainer: { 53 | width: "100%" 54 | }, 55 | inputLabel: { 56 | fontSize: 16, 57 | color: '#3a5ec1' 58 | } 59 | }) 60 | -------------------------------------------------------------------------------- /app/containers/Favorite/FavoriteStyles.js: -------------------------------------------------------------------------------- 1 | import { Platform, StyleSheet, Dimensions } from 'react-native' 2 | import { Colors, Fonts, Metrics } from '../../themes' 3 | const { width, height } = Dimensions.get('window') 4 | 5 | export default StyleSheet.create({ 6 | wrapper: { 7 | flex: 1, 8 | justifyContent: "flex-start", 9 | alignItems: 'flex-start', 10 | backgroundColor: '#fbfbfb' 11 | }, 12 | container: { 13 | justifyContent: "flex-start", 14 | alignItems: 'flex-start', 15 | paddingHorizontal: width / 10, 16 | width: '100%', 17 | borderBottomWidth: 1, 18 | borderColor: '#ddd', 19 | paddingBottom: 15 20 | }, 21 | content: { 22 | flex: 1, 23 | justifyContent: "flex-start", 24 | alignItems: 'flex-start', 25 | paddingHorizontal: 10, 26 | width: '100%' 27 | }, 28 | header: { 29 | width: '100%', 30 | height: Platform.OS == 'ios' ? 82 : 60, 31 | justifyContent: 'flex-end', 32 | alignItems: 'flex-end', 33 | backgroundColor: 'transparent' 34 | }, 35 | iconWrapper: { 36 | height: Metrics.navBarWithOutStatusBarHeight, 37 | padding: Metrics.smallMargin, 38 | flexDirection: 'row', 39 | alignItems: 'center', 40 | }, 41 | menuicon: { 42 | color: 'black', 43 | fontSize: Metrics.icons.lg, 44 | }, 45 | sectionname: { 46 | fontSize: 25, 47 | color: '#212149', 48 | marginVertical: 10 49 | }, 50 | 51 | }) 52 | -------------------------------------------------------------------------------- /app/containers/Root/RootStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet } from 'react-native' 2 | import { Fonts } from '../../themes' 3 | 4 | export default StyleSheet.create({ 5 | applicationView: { 6 | flex: 1, 7 | backgroundColor:'#78CEE4' 8 | }, 9 | message: { 10 | fontFamily: Fonts.type.normal, 11 | fontSize: Fonts.size.medium, 12 | textAlign: 'center', 13 | }, 14 | messageTitle: { 15 | fontFamily: Fonts.type.normal, 16 | fontSize: Fonts.size.regular, 17 | textAlign: 'center', 18 | } 19 | }) 20 | -------------------------------------------------------------------------------- /app/containers/SelectArt/SelectArtStyles.js: -------------------------------------------------------------------------------- 1 | import { Platform, StyleSheet, Dimensions } from 'react-native' 2 | import { Colors, Fonts, Metrics } from '../../themes' 3 | const { width, height } = Dimensions.get('window') 4 | 5 | export default StyleSheet.create({ 6 | wrapper: { 7 | flex: 1, 8 | justifyContent: "flex-start", 9 | alignItems: 'flex-start', 10 | backgroundColor: '#fbfbfb' 11 | }, 12 | container: { 13 | justifyContent: "flex-start", 14 | alignItems: 'flex-start', 15 | paddingHorizontal: width / 10, 16 | width: '100%', 17 | borderBottomWidth: 1, 18 | borderColor: '#ddd', 19 | paddingBottom: 15 20 | }, 21 | content: { 22 | flex: 1, 23 | justifyContent: "flex-start", 24 | alignItems: 'flex-start', 25 | paddingHorizontal: 10, 26 | width: '100%' 27 | }, 28 | header: { 29 | width: '100%', 30 | height: Platform.OS == 'ios' ? 82 : 60, 31 | justifyContent: 'space-between', 32 | alignItems: 'center', 33 | backgroundColor: 'transparent', 34 | flexDirection: 'row' 35 | }, 36 | iconWrapper: { 37 | height: Metrics.navBarWithOutStatusBarHeight, 38 | padding: Metrics.smallMargin, 39 | flexDirection: 'row', 40 | alignItems: 'center', 41 | }, 42 | icon: { 43 | color: 'black', 44 | fontSize: Metrics.icons.lg, 45 | }, 46 | menuicon: { 47 | color: 'black', 48 | fontSize: Metrics.icons.lg, 49 | }, 50 | sectionname: { 51 | fontSize: 25, 52 | color: '#212149', 53 | marginVertical: 10 54 | }, 55 | 56 | }) 57 | -------------------------------------------------------------------------------- /app/containers/SelectFrame/SelectFrameStyles.js: -------------------------------------------------------------------------------- 1 | import { Platform, StyleSheet, Dimensions } from 'react-native' 2 | import { Colors, Fonts, Metrics } from '../../themes' 3 | const { width, height } = Dimensions.get('window') 4 | 5 | export default StyleSheet.create({ 6 | wrapper: { 7 | flex: 1, 8 | justifyContent: "flex-start", 9 | alignItems: 'flex-start', 10 | backgroundColor: '#F8F8F8' 11 | }, 12 | container: { 13 | justifyContent: "flex-start", 14 | alignItems: 'flex-start', 15 | paddingHorizontal: width / 10, 16 | width: '100%', 17 | borderBottomWidth: 1, 18 | borderColor: '#ddd', 19 | paddingBottom: 15 20 | }, 21 | content: { 22 | flex: 1, 23 | justifyContent: "center", 24 | alignItems: 'center', 25 | paddingHorizontal: 10, 26 | width: '100%' 27 | }, 28 | header: { 29 | width: '100%', 30 | height: Platform.OS == 'ios' ? 82 : 60, 31 | justifyContent: 'space-between', 32 | alignItems: 'center', 33 | backgroundColor: 'transparent', 34 | flexDirection: 'row' 35 | }, 36 | iconWrapper: { 37 | height: Metrics.navBarWithOutStatusBarHeight, 38 | padding: Metrics.smallMargin, 39 | flexDirection: 'row', 40 | alignItems: 'center', 41 | }, 42 | icon: { 43 | color: 'black', 44 | fontSize: Metrics.icons.lg, 45 | }, 46 | menuicon: { 47 | color: 'black', 48 | fontSize: Metrics.icons.lg, 49 | }, 50 | sectionname: { 51 | fontSize: 25, 52 | color: '#212149', 53 | marginVertical: 10 54 | }, 55 | 56 | }) 57 | -------------------------------------------------------------------------------- /app/containers/SelectWall/SelectWallStyles.js: -------------------------------------------------------------------------------- 1 | import { Platform, StyleSheet, Dimensions } from 'react-native' 2 | import { Colors, Fonts, Metrics } from '../../themes' 3 | const { width, height } = Dimensions.get('window') 4 | 5 | export default StyleSheet.create({ 6 | wrapper: { 7 | flex: 1, 8 | justifyContent: "flex-start", 9 | alignItems: 'flex-start', 10 | backgroundColor: '#fbfbfb' 11 | }, 12 | container: { 13 | justifyContent: "flex-start", 14 | alignItems: 'flex-start', 15 | paddingHorizontal: width / 10, 16 | width: '100%', 17 | borderBottomWidth: 1, 18 | borderColor: '#ddd', 19 | paddingBottom: 15 20 | }, 21 | content: { 22 | flex: 1, 23 | justifyContent: "flex-start", 24 | alignItems: 'flex-start', 25 | paddingHorizontal: 10, 26 | width: '100%' 27 | }, 28 | header: { 29 | width: '100%', 30 | height: Platform.OS == 'ios' ? 82 : 60, 31 | justifyContent: 'space-between', 32 | alignItems: 'center', 33 | backgroundColor: 'transparent', 34 | flexDirection: 'row' 35 | }, 36 | iconWrapper: { 37 | height: Metrics.navBarWithOutStatusBarHeight, 38 | padding: Metrics.smallMargin, 39 | flexDirection: 'row', 40 | alignItems: 'center', 41 | }, 42 | icon: { 43 | color: 'black', 44 | fontSize: Metrics.icons.lg, 45 | }, 46 | menuicon: { 47 | color: 'black', 48 | fontSize: Metrics.icons.lg, 49 | }, 50 | sectionname: { 51 | fontSize: 25, 52 | color: '#212149', 53 | marginVertical: 10 54 | }, 55 | 56 | }) 57 | -------------------------------------------------------------------------------- /app/containers/qrCodeScanner/qrCodeScanner.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View } from 'react-native'; 3 | import QRCodeScanner from 'react-native-qrcode-scanner'; 4 | import { connect } from 'react-redux' 5 | import {addArtByQrCode} from '../../reducers/art' 6 | 7 | class QrCodeScannerScreen extends Component { 8 | static navigationOptions = ({ navigation }) => { 9 | return { 10 | title: 'Scan QR Code', 11 | headerStyle: { 12 | elevation: 0, 13 | shadowOpacity: 0, 14 | borderBottomWidth: 0, 15 | marginBottom: -1, 16 | backgroundColor: 'white' 17 | }, 18 | } 19 | } 20 | 21 | onSuccess(e) { 22 | this.props.addArtByQrCode(e.data) 23 | this.props.navigation.goBack() 24 | } 25 | 26 | render() { 27 | return ( 28 | 31 | ); 32 | } 33 | } 34 | const mapStateToProps = state => ({ 35 | 36 | }) 37 | 38 | const mapDispatchToProps = { 39 | addArtByQrCode 40 | } 41 | 42 | export default connect(mapStateToProps, mapDispatchToProps)(QrCodeScannerScreen) 43 | -------------------------------------------------------------------------------- /app/createHelpers.js: -------------------------------------------------------------------------------- 1 | export default function createHelpers({fetch}) { 2 | return { 3 | fetch 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /app/createReducer.js: -------------------------------------------------------------------------------- 1 | export const RESET_STORE = 'RESET_STORE' 2 | 3 | export default (initialState, handlers, finalizer = x => x) => (state = initialState, action) => { 4 | if (action.type) { 5 | const handler = handlers[action.type] 6 | if (handler) { 7 | const result = handler(state, action) 8 | if (result === RESET_STORE) { 9 | return initialState 10 | } 11 | if (result === null && typeof result === 'object') { 12 | return state 13 | } 14 | return finalizer({...state, ...result}) 15 | } 16 | } 17 | return state 18 | } 19 | -------------------------------------------------------------------------------- /app/createStore.js: -------------------------------------------------------------------------------- 1 | import { createStore, applyMiddleware, compose } from 'redux' 2 | // import Config from './config/DebugConfig' 3 | import thunk from 'redux-thunk' 4 | import ScreenTracking from './reducers/ScreenTrackingMiddleware' 5 | import createHelpers from './createHelpers' 6 | //import { createReactNavigationReduxMiddleware } from 'react-navigation-redux-helpers' 7 | import {navigationMiddleware} from './navigation/AppNavigator'; 8 | // creates the store 9 | export default (rootReducer, helpersConfig) => { 10 | /* ------------- Redux Configuration ------------- */ 11 | 12 | const middleware = [] 13 | const enhancers = [] 14 | 15 | /* ------------- Navigation Middleware ------------ */ 16 | /* 17 | const navigationMiddleware = createReactNavigationReduxMiddleware( 18 | 'root', 19 | state => state.nav 20 | ) 21 | */ 22 | middleware.push(navigationMiddleware) 23 | 24 | /* ------------- Analytics Middleware ------------- */ 25 | middleware.push(ScreenTracking) 26 | /* ------------- Thunk Middleware ------------- */ 27 | const helpers = createHelpers(helpersConfig) 28 | middleware.push(thunk.withExtraArgument(helpers)) 29 | 30 | /* ------------- Assemble Middleware ------------- */ 31 | 32 | enhancers.push(applyMiddleware(...middleware)) 33 | 34 | // if Reactotron is enabled (default for __DEV__), we'll create the store through Reactotron 35 | // const createAppropriateStore = Config.useReactotron ? console.tron.createStore : createStore 36 | const store = createStore(rootReducer, compose(...enhancers)) 37 | 38 | 39 | return { 40 | store 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /app/navigation/AppNavigationStyles.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet,Platform } from 'react-native' 2 | import { Metrics, Colors, Fonts } from '../themes' 3 | 4 | export default StyleSheet.create({ 5 | iconWrapper: { 6 | height: Metrics.navBarWithOutStatusBarHeight, 7 | padding: Metrics.smallMargin, 8 | flexDirection: 'row', 9 | alignItems: 'center', 10 | }, 11 | icon: { 12 | color: 'black', 13 | fontSize: Metrics.icons.lg, 14 | }, 15 | backBtnText: { 16 | color: Colors.white, 17 | fontFamily: Fonts.type.secondary, 18 | }, 19 | skipBtn: { 20 | paddingVertical: Metrics.smallMargin, 21 | paddingHorizontal: Metrics.baseMargin, 22 | }, 23 | skipBtnText: { 24 | color: Colors.white, 25 | fontFamily: Fonts.type.secondary, 26 | }, 27 | imageheader: { 28 | position: "absolute", 29 | left: 0, 30 | right: 0, 31 | top: 0, 32 | bottom: 0, 33 | width: Metrics.screenWidth, 34 | height: Metrics.navBarHeight, 35 | } 36 | }) 37 | -------------------------------------------------------------------------------- /app/reducers/ScreenTrackingMiddleware.js: -------------------------------------------------------------------------------- 1 | import { NavigationActions } from 'react-navigation' 2 | 3 | // gets the current screen from navigation state 4 | const getCurrentRouteName = (navigationState) => { 5 | if (navigationState && navigationState.index) { 6 | const route = navigationState.routes && navigationState.routes[navigationState.index] 7 | if (route === null || route === undefined) 8 | return null 9 | // dive into nested navigators 10 | if (route.routes) { 11 | return getCurrentRouteName(route) 12 | } 13 | return route.routeName 14 | } 15 | return null 16 | } 17 | 18 | const screenTracking = ({ getState }) => next => (action) => { 19 | if ( 20 | action.type !== NavigationActions.NAVIGATE && 21 | action.type !== NavigationActions.BACK 22 | ) { 23 | return next(action) 24 | } 25 | 26 | //const currentScreen = getCurrentRouteName(getState().nav) 27 | const result = next(action) 28 | ///const nextScreen = getCurrentRouteName(getState().nav) 29 | // if (nextScreen !== currentScreen) { 30 | // try { 31 | // console.tron.log(`NAVIGATING ${currentScreen} to ${nextScreen}`) 32 | // // Example: Analytics.trackEvent('user_navigation', {currentScreen, nextScreen}) 33 | // } catch (e) { 34 | // console.tron.log(e) 35 | // } 36 | // } 37 | return result 38 | } 39 | 40 | export default screenTracking 41 | -------------------------------------------------------------------------------- /app/reducers/frame.js: -------------------------------------------------------------------------------- 1 | import createReducer, { RESET_STORE } from '../createReducer' 2 | import { 3 | authStoreUserData, 4 | authGetToken, 5 | } from "./auth"; 6 | import AppConfig from '../config/AppConfig' 7 | 8 | export const FRAME_GET_LIST = 'Frame.FRAME_GET_LIST'; 9 | 10 | export const getFrames = (callback) => (dispatch, getState, { fetch }) => { 11 | return fetch(`/frames`, { 12 | method: 'GET', 13 | success: (response) => { 14 | if (response) { 15 | const frames = Object.values(response); 16 | dispatch({ type: FRAME_GET_LIST, frames }); 17 | if (callback) callback(true); 18 | } else if (callback) callback(false); 19 | }, 20 | failure: (err) => { 21 | if (callback) callback(false); 22 | } 23 | }) 24 | }; 25 | 26 | 27 | const initialState = { 28 | frames: [] 29 | } 30 | 31 | export default createReducer(initialState, { 32 | [FRAME_GET_LIST]: (state, { frames }) => ({ 33 | frames 34 | }), 35 | }) -------------------------------------------------------------------------------- /app/reducers/gallery.js: -------------------------------------------------------------------------------- 1 | import createReducer, { RESET_STORE } from '../createReducer' 2 | import { 3 | authStoreUserData, 4 | authGetToken, 5 | } from "./auth"; 6 | import AppConfig from '../config/AppConfig' 7 | var MessageBarManager = require('react-native-message-bar').MessageBarManager; 8 | import { NavigationActions as navigation } from 'react-navigation' 9 | 10 | export const GALLERY_GET_LIST = 'Gallery.GALLERY_GET_LIST'; 11 | 12 | export const getGalleryList = (callback) => (dispatch, getState, { fetch }) => { 13 | return fetch(`/galleryList`, { 14 | method: 'GET', 15 | success: (response) => { 16 | if (response) { 17 | const galleryDirectory = Object.values( response ); 18 | dispatch({type: GALLERY_GET_LIST, galleryDirectory }); 19 | if(callback) callback(true); 20 | } else if(callback) callback(false); 21 | }, 22 | failure: (err) => { 23 | if(callback) callback(false); 24 | } 25 | }) 26 | }; 27 | 28 | 29 | const initialState = { 30 | galleryDirectory: [] 31 | } 32 | 33 | export default createReducer(initialState, { 34 | [GALLERY_GET_LIST]: (state, {galleryDirectory}) => ({ 35 | galleryDirectory 36 | }), 37 | }) -------------------------------------------------------------------------------- /app/reducers/global.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import createReducer from '../createReducer' 3 | 4 | // ------------------------------------ 5 | // Constants 6 | // ------------------------------------ 7 | export const STARTUP = 'Global.STARTUP' 8 | 9 | // ------------------------------------ 10 | // Actions 11 | // ------------------------------------ 12 | export const startup = () => ({ type: STARTUP }) 13 | 14 | 15 | // ------------------------------------ 16 | // Reducer 17 | // ------------------------------------ 18 | const initialState = { 19 | } 20 | 21 | export default createReducer(initialState, { 22 | }) 23 | 24 | -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- 1 | import { combineReducers } from 'redux' 2 | import configureStore from '../createStore' 3 | 4 | /* ------------- Assemble The Reducers ------------- */ 5 | export const reducers = combineReducers({ 6 | nav: require('./nav').default, 7 | auth: require('./auth').default, 8 | global: require('./global').default, 9 | profile: require('./profile').default, 10 | gallery: require('./gallery').default, 11 | art: require('./art').default, 12 | wall: require('./wall').default, 13 | hangup: require('./hangup').default, 14 | frame: require('./frame').default 15 | }) 16 | 17 | export default (helpersConfig) => { 18 | let finalReducers = reducers 19 | 20 | 21 | let {store} = configureStore(finalReducers, helpersConfig) 22 | 23 | if (module.hot) { 24 | module.hot.accept(() => { 25 | const nextRootReducer = require('./').reducers 26 | store.replaceReducer(nextRootReducer) 27 | }) 28 | } 29 | 30 | return store 31 | } 32 | -------------------------------------------------------------------------------- /app/reducers/nav.js: -------------------------------------------------------------------------------- 1 | import { RootNavigator } from '../navigation/AppNavigator' 2 | var _routeName = null; 3 | var _type = null; 4 | export default (state, action) => { 5 | if(_routeName === null) 6 | { 7 | _routeName = action.routeName; 8 | } 9 | if (action.type.startsWith('Navigation/')) { 10 | const { type, routeName } = action 11 | if(routeName == _routeName && type == _type) 12 | return state; 13 | _routeName = routeName; 14 | _type = type; 15 | } 16 | 17 | return RootNavigator.router.getStateForAction(action, state) 18 | } 19 | export const goBack = () => ({ type: 'Navigation/BACK' }) -------------------------------------------------------------------------------- /app/rn-sprite-sheet/index.js: -------------------------------------------------------------------------------- 1 | import SpriteSheet from './src/SpriteSheet.js'; 2 | export default SpriteSheet; 3 | -------------------------------------------------------------------------------- /app/rn-sprite-sheet/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@rn-sprite-sheet" 3 | } -------------------------------------------------------------------------------- /app/store/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@store" 3 | } 4 | -------------------------------------------------------------------------------- /app/themes/AppStyles.js: -------------------------------------------------------------------------------- 1 | // This file is for a reusable grouping of Theme items. 2 | // Similar to an XML fragment layout in Android 3 | 4 | import Metrics from './Metrics' 5 | import Colors from './Colors' 6 | 7 | const AppStyles = { 8 | transparentHeader: { 9 | backgroundColor: 'transparent', 10 | borderBottomWidth: 0, 11 | elevation: 0, 12 | shadowOpacity: 0, 13 | }, 14 | // TODO make it better 15 | inputIcon: { 16 | alignSelf: 'center', 17 | fontSize: Metrics.icons.md, 18 | color: Colors.inputIcon, 19 | }, 20 | primaryIcon: { 21 | alignSelf: 'center', 22 | fontSize: Metrics.icons.md, 23 | color: Colors.primary, 24 | }, 25 | radioOptionIcon: { 26 | fontSize: Metrics.icons.md, 27 | color: Colors.primary, 28 | paddingHorizontal: Metrics.baseMargin, 29 | }, 30 | } 31 | 32 | export default AppStyles 33 | -------------------------------------------------------------------------------- /app/themes/Colors.js: -------------------------------------------------------------------------------- 1 | const grey = '#A1B0C2' 2 | 3 | const colors = { 4 | white: '#fff', 5 | whiteMuted: 'rgba(255, 255, 255, 0.5)', 6 | primary: '#11C4FF', 7 | primaryMuted: 'rgba(17, 196, 255, 0.5)', 8 | default: '#fff', 9 | inputPlaceholder: grey, 10 | inputIcon: grey, 11 | inputBorder: '#E5E5EA', 12 | border: '#E5E5EA', 13 | inputText: '#000', 14 | muted: grey, 15 | drawerLabel: grey, 16 | grey, 17 | greyDark: '#8E8E93', 18 | background: '#FAFAFA', 19 | text: '#000', 20 | transparent: 'rgba(0, 0, 0, 0)', 21 | green: '#84CD95', 22 | success: '#52c41a', 23 | warning: '#faad14', 24 | info: '#1890ff', 25 | error: '#f5222d', 26 | blueMuted: '#74e0ff', 27 | blueDark: '#00A4DC', 28 | red: '#F35C7D', 29 | guideColor: '#f3f5f8' 30 | } 31 | 32 | export default colors 33 | -------------------------------------------------------------------------------- /app/themes/Fonts.js: -------------------------------------------------------------------------------- 1 | const type = { 2 | regular: 'SanFranciscoDisplay-Regular', 3 | secondary: 'SanFranciscoText-Regular', 4 | } 5 | 6 | const size = { 7 | h1: 28, 8 | h2: 26, 9 | h3: 24, 10 | h4: 21, 11 | h5: 20, 12 | h6: 18, 13 | input: 16, 14 | button: 16, 15 | normal: 16, 16 | medium: 14, 17 | small: 12, 18 | } 19 | 20 | export default { 21 | type, 22 | size, 23 | } 24 | -------------------------------------------------------------------------------- /app/themes/Images.js: -------------------------------------------------------------------------------- 1 | // WARNING static svgs doesn't work for release build on Android using react-native-svg-uri 2 | const images = { 3 | //defaultAvatar1: require('../static/default_avatar1.png'), 4 | } 5 | 6 | export default images 7 | -------------------------------------------------------------------------------- /app/themes/README.md: -------------------------------------------------------------------------------- 1 | ### Themes Folder 2 | Application specific themes 3 | * Base Styles 4 | * Fonts 5 | * Metrics 6 | * Colors 7 | 8 | etc. 9 | -------------------------------------------------------------------------------- /app/themes/index.js: -------------------------------------------------------------------------------- 1 | import Colors from './Colors' 2 | import Fonts from './Fonts' 3 | import Metrics from './Metrics' 4 | import Images from './Images' 5 | import AppStyles from './AppStyles' 6 | 7 | export { Colors, Fonts, Images, Metrics, AppStyles } 8 | -------------------------------------------------------------------------------- /app/utils/constants.js: -------------------------------------------------------------------------------- 1 | import { Platform } from "react-native"; 2 | 3 | export const fiveminutes = 5*60*1000; 4 | export const oneminute = 60*1000; 5 | 6 | export const AdMobInterstitialID = Platform.OS == 'android' ? 'ca-app-pub-5872692320828903/6886817060' : 'ca-app-pub-5872692320828903/3818882163'; 7 | export const AdBannerID = Platform.OS == 'android' ? 'ca-app-pub-5872692320828903/2400777146' : 'ca-app-pub-5872692320828903/2888943875'; 8 | export function getAvatarText(username) { 9 | if (username == null) 10 | return ''; 11 | if (username.length < 2) 12 | return username.toUpperCase(); 13 | return username.substr(0, 2).toUpperCase(); 14 | } -------------------------------------------------------------------------------- /app/utils/utils.js: -------------------------------------------------------------------------------- 1 | import {Dimensions, Platform} from 'react-native' 2 | 3 | 4 | export const stripHtml = (content) => content.replace(/<[^>]+>/g, '') 5 | 6 | export const noop = () => {} 7 | 8 | export const getErrorMessage = (error, errorMessage, t) => { 9 | return error && error.message ? stripHtml(error.message) : (errorMessage || t('defaultError')) 10 | } 11 | 12 | export const getExpectationLabel = (expectation, t) => { 13 | if (expectation === WEEKS_COUNT) { 14 | return t('haveGivenBirth') 15 | } 16 | return t('weeksPregnant', {count: expectation-1}) 17 | } 18 | 19 | 20 | export const capitalizeText = (text) =>{ 21 | let result = text; 22 | if(result) 23 | { 24 | result = result.split(' ') 25 | .map((s) => s.charAt(0).toUpperCase() + s.substring(1)) 26 | .join(' '); 27 | } 28 | return result; 29 | } 30 | 31 | export const isIphoneX = () =>{ 32 | const dimen = Dimensions.get('window'); 33 | return ( 34 | Platform.OS === 'ios' && 35 | !Platform.isPad && 36 | !Platform.isTVOS && 37 | ((dimen.height === 812 || dimen.width === 812) || (dimen.height === 896 || dimen.width === 896)) 38 | ); 39 | } 40 | export const getPureObject= (obj) =>{ 41 | let result = {}; 42 | Object.keys(obj).map(function(key, index) { 43 | result[key] = obj[key]; 44 | }); 45 | return result; 46 | } -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | platform :ios, '10.0' 3 | 4 | target 'artseeapp' do 5 | # Uncomment the next line if you're using Swift or would like to use dynamic frameworks 6 | # use_frameworks! 7 | 8 | # Pods for artseeapp 9 | 10 | rn_path = '../node_modules/react-native' 11 | pod 'yoga', path: "#{rn_path}/ReactCommon/yoga/yoga.podspec" 12 | pod 'React', path: rn_path, subspecs: [ 13 | 'Core' 14 | ] 15 | 16 | 17 | pod 'RNDynamicCropper', :path => '../node_modules/react-native-dynamic-cropper' 18 | end 19 | # I have problems with UUID error messages running rampant on my dev machine, so this. 20 | install! 'cocoapods', 21 | :deterministic_uuids => false 22 | # very important to have, unless you removed React dependencies for Libraries 23 | # and you rely on Cocoapods to manage it 24 | post_install do |installer| 25 | installer.pods_project.targets.each do |target| 26 | if target.name == "React" 27 | target.remove_from_project 28 | end 29 | end 30 | end 31 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - React (0.59.9): 3 | - React/Core (= 0.59.9) 4 | - React/Core (0.59.9): 5 | - yoga (= 0.59.9.React) 6 | - RNDynamicCropper (0.1.0): 7 | - React 8 | - TOCropViewController 9 | - TOCropViewController (2.5.0) 10 | - yoga (0.59.9.React) 11 | 12 | DEPENDENCIES: 13 | - React/Core (from `../node_modules/react-native`) 14 | - RNDynamicCropper (from `../node_modules/react-native-dynamic-cropper`) 15 | - yoga (from `../node_modules/react-native/ReactCommon/yoga/yoga.podspec`) 16 | 17 | SPEC REPOS: 18 | https://github.com/cocoapods/specs.git: 19 | - TOCropViewController 20 | 21 | EXTERNAL SOURCES: 22 | React: 23 | :path: "../node_modules/react-native" 24 | RNDynamicCropper: 25 | :path: "../node_modules/react-native-dynamic-cropper" 26 | yoga: 27 | :path: "../node_modules/react-native/ReactCommon/yoga/yoga.podspec" 28 | 29 | SPEC CHECKSUMS: 30 | React: 1d605e098d69bdf08960787f3446f0a9dc2e2ccf 31 | RNDynamicCropper: 537ecb682979dae35f46dbb59537e25c3d845144 32 | TOCropViewController: d86078d3a57a70c116bf3db7c89c80046a0e5fdf 33 | yoga: 128daf064cacaede0c3bb27424b6b4c71052e6cd 34 | 35 | PODFILE CHECKSUM: 20b633aed742f0c2286cb3644738a2b232ecacf1 36 | 37 | COCOAPODS: 1.5.3 38 | -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/RNDynamicCropper/RNDynamicCropper.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-dynamic-cropper/ios/src/RNDynamicCropper.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTAccessibilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAccessibilityManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTActivityIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTActivityIndicatorViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTAlertManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAlertManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTAnimationType.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTAnimationType.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTAppState.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAppState.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTAssert.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTAssert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTAsyncLocalStorage.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAsyncLocalStorage.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTAutoInsetsProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBorderDrawing.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTBorderDrawing.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBorderStyle.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTBorderStyle.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBridge+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridge+Private.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBridge.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridge.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBridgeDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridgeDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBridgeMethod.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridgeMethod.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBridgeModule.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridgeModule.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTBundleURLProvider.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBundleURLProvider.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTClipboard.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTClipboard.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTComponent.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTComponent.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTComponentData.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTComponentData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTConvert+CoreLocation.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTConvert+CoreLocation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTConvert+Transform.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTConvert+Transform.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTConvert.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTConvert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTCxxConvert.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTCxxConvert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTDatePicker.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTDatePicker.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTDatePickerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTDatePickerManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTDefines.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTDevSettings.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTDevSettings.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTDeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTDeviceInfo.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTDisplayLink.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTDisplayLink.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTErrorCustomizer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTErrorCustomizer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTErrorInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTErrorInfo.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTEventDispatcher.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTEventDispatcher.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTEventEmitter.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTEventEmitter.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTExceptionsManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTExceptionsManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTFPSGraph.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Profiler/RCTFPSGraph.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTFont.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTFont.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTFrameUpdate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTFrameUpdate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTI18nManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTI18nManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTI18nUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTI18nUtil.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTImageSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTImageSource.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTInvalidating.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTInvalidating.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTJSStackFrame.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTJSStackFrame.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTJavaScriptExecutor.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTJavaScriptExecutor.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTJavaScriptLoader.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTJavaScriptLoader.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTKeyCommands.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTKeyCommands.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTKeyboardObserver.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTKeyboardObserver.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTLayout.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTLayoutAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTLayoutAnimationGroup.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimationGroup.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTLog.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTLog.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Profiler/RCTMacros.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTManagedPointer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTManagedPointer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTMaskedView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTMaskedView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTMaskedViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTMaskedViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTModalHostView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalHostView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTModalHostViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalHostViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTModalHostViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalHostViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTModalManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTModuleData.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTModuleData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTModuleMethod.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTModuleMethod.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTMultipartDataTask.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTMultipartDataTask.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTMultipartStreamReader.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTMultipartStreamReader.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTNullability.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTNullability.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTParserUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTParserUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTPerformanceLogger.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTPerformanceLogger.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTPicker.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTPicker.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTPickerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTPickerManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTPlatform.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTPlatform.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTPointerEvents.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTPointerEvents.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTProfile.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Profiler/RCTProfile.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTProgressViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTProgressViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRedBox.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTRedBox.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRedBoxExtraDataViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTRedBoxExtraDataViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRefreshControl.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTRefreshControl.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRefreshControlManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTRefreshControlManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTReloadCommand.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTReloadCommand.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRootContentView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootContentView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRootShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTRootShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRootView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRootViewDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootViewDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTRootViewInternal.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootViewInternal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSafeAreaShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSafeAreaView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSafeAreaViewLocalData.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSafeAreaViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTScrollContentShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTScrollContentView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTScrollContentViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTScrollViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTScrollableProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSegmentedControl.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSegmentedControl.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSegmentedControlManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSegmentedControlManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTShadowView+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTShadowView+Internal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTShadowView+Layout.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTShadowView+Layout.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSlider.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSliderManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSliderManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSourceCode.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTSourceCode.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTStatusBarManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTStatusBarManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurface.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurface.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceHostingProxyRootView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingProxyRootView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceHostingView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowViewDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowViewDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceRootView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceSizeMeasureMode.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceStage.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceView+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView+Internal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSurfaceView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSwitch.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTSwitchManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSwitchManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTTextDecorationLineType.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTTextDecorationLineType.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTTiming.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTTiming.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTTouchEvent.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTTouchEvent.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTTouchHandler.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTTouchHandler.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTUIManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTUIManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTUIManagerObserverCoordinator.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTUIManagerUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTUIManagerUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTUIUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/UIUtils/RCTUIUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTURLRequestDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTURLRequestDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTURLRequestHandler.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTURLRequestHandler.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTVersion.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTVersion.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTWKWebView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWKWebView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTWKWebViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWKWebViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTWebView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWebView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTWebViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWebViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/RCTWrapperViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWrapperViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/UIView+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/UIView+Private.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/React/React/UIView+React.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/UIView+React.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/TOCropViewController/TOActivityCroppedImageProvider.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/TOCropViewController/TOCropOverlayView.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Views/TOCropOverlayView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/TOCropViewController/TOCropScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Views/TOCropScrollView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/TOCropViewController/TOCropToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Views/TOCropToolbar.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/TOCropViewController/TOCropView.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Views/TOCropView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/TOCropViewController/TOCropViewConstants.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Constants/TOCropViewConstants.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/TOCropViewController/TOCropViewController.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/TOCropViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/TOCropViewController/TOCropViewControllerTransitioning.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/TOCropViewController/TOCroppedImageAttributes.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/TOCropViewController/UIImage+CropRotate.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Categories/UIImage+CropRotate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/CompactValue.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/CompactValue.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/Utils.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Utils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGConfig.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGConfig.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGEnums.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGFloatOptional.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGFloatOptional.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGMarker.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGMarker.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGNode.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGNode.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGNodePrint.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGNodePrint.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGStyle.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/YGValue.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGValue.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/Yoga-internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/Yoga.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Private/yoga/instrumentation.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/instrumentation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/RNDynamicCropper/RNDynamicCropper.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native-dynamic-cropper/ios/src/RNDynamicCropper.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTAccessibilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAccessibilityManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTActivityIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTActivityIndicatorViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTAlertManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAlertManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTAnimationType.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTAnimationType.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTAppState.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAppState.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTAssert.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTAssert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTAsyncLocalStorage.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTAsyncLocalStorage.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTAutoInsetsProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBorderDrawing.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTBorderDrawing.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBorderStyle.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTBorderStyle.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBridge+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridge+Private.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBridge.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridge.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBridgeDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridgeDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBridgeMethod.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridgeMethod.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBridgeModule.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBridgeModule.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTBundleURLProvider.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTBundleURLProvider.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTClipboard.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTClipboard.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTComponent.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTComponent.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTComponentData.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTComponentData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTConvert+CoreLocation.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTConvert+CoreLocation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTConvert+Transform.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTConvert+Transform.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTConvert.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTConvert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTCxxConvert.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTCxxConvert.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTDatePicker.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTDatePicker.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTDatePickerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTDatePickerManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTDefines.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTDevSettings.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTDevSettings.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTDeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTDeviceInfo.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTDisplayLink.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTDisplayLink.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTErrorCustomizer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTErrorCustomizer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTErrorInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTErrorInfo.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTEventDispatcher.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTEventDispatcher.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTEventEmitter.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTEventEmitter.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTExceptionsManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTExceptionsManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTFPSGraph.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Profiler/RCTFPSGraph.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTFont.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTFont.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTFrameUpdate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTFrameUpdate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTI18nManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTI18nManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTI18nUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTI18nUtil.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTImageSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTImageSource.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTInvalidating.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTInvalidating.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTJSStackFrame.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTJSStackFrame.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTJavaScriptExecutor.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTJavaScriptExecutor.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTJavaScriptLoader.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTJavaScriptLoader.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTKeyCommands.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTKeyCommands.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTKeyboardObserver.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTKeyboardObserver.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTLayout.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTLayoutAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimation.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTLayoutAnimationGroup.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimationGroup.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTLog.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTLog.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Profiler/RCTMacros.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTManagedPointer.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTManagedPointer.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTMaskedView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTMaskedView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTMaskedViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTMaskedViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTModalHostView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalHostView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTModalHostViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalHostViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTModalHostViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalHostViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTModalManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTModalManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTModuleData.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTModuleData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTModuleMethod.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTModuleMethod.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTMultipartDataTask.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTMultipartDataTask.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTMultipartStreamReader.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTMultipartStreamReader.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTNullability.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTNullability.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTParserUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTParserUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTPerformanceLogger.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTPerformanceLogger.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTPicker.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTPicker.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTPickerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTPickerManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTPlatform.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTPlatform.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTPointerEvents.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTPointerEvents.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTProfile.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Profiler/RCTProfile.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTProgressViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTProgressViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRedBox.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTRedBox.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRedBoxExtraDataViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTRedBoxExtraDataViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRefreshControl.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTRefreshControl.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRefreshControlManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTRefreshControlManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTReloadCommand.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTReloadCommand.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRootContentView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootContentView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRootShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTRootShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRootView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRootViewDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootViewDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTRootViewInternal.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTRootViewInternal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSafeAreaShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSafeAreaView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSafeAreaViewLocalData.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSafeAreaViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTScrollContentShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTScrollContentView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTScrollContentViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTScrollViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTScrollableProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSegmentedControl.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSegmentedControl.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSegmentedControlManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSegmentedControlManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTShadowView+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTShadowView+Internal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTShadowView+Layout.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTShadowView+Layout.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSlider.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSliderManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSliderManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSourceCode.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTSourceCode.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTStatusBarManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTStatusBarManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurface.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurface.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceHostingProxyRootView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingProxyRootView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceHostingView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowViewDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowViewDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceRootView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceSizeMeasureMode.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceStage.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceView+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView+Internal.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSurfaceView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSwitch.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTSwitchManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTSwitchManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTTextDecorationLineType.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTTextDecorationLineType.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTTiming.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTTiming.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTTouchEvent.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTTouchEvent.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTTouchHandler.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTTouchHandler.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTUIManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTUIManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTUIManagerObserverCoordinator.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTUIManagerUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Modules/RCTUIManagerUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTUIUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/UIUtils/RCTUIUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTURLRequestDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTURLRequestDelegate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTURLRequestHandler.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTURLRequestHandler.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTUtils.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTUtils.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTVersion.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Base/RCTVersion.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTWKWebView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWKWebView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTWKWebViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWKWebViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTWebView.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWebView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTWebViewManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWebViewManager.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/RCTWrapperViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/RCTWrapperViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/UIView+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/UIView+Private.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/React/React/UIView+React.h: -------------------------------------------------------------------------------- 1 | ../../../../../../node_modules/react-native/React/Views/UIView+React.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/TOCropViewController/TOActivityCroppedImageProvider.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/TOCropViewController/TOCropOverlayView.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Views/TOCropOverlayView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/TOCropViewController/TOCropScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Views/TOCropScrollView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/TOCropViewController/TOCropToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Views/TOCropToolbar.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/TOCropViewController/TOCropView.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Views/TOCropView.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/TOCropViewController/TOCropViewConstants.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Constants/TOCropViewConstants.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/TOCropViewController/TOCropViewController.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/TOCropViewController.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/TOCropViewController/TOCropViewControllerTransitioning.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/TOCropViewController/TOCroppedImageAttributes.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/TOCropViewController/UIImage+CropRotate.h: -------------------------------------------------------------------------------- 1 | ../../../TOCropViewController/Objective-C/TOCropViewController/Categories/UIImage+CropRotate.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/yoga/YGEnums.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/yoga/YGMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/yoga/YGValue.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGValue.h -------------------------------------------------------------------------------- /ios/Pods/Headers/Public/yoga/Yoga.h: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h -------------------------------------------------------------------------------- /ios/Pods/Local Podspecs/RNDynamicCropper.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RNDynamicCropper", 3 | "version": "0.1.0", 4 | "summary": "Take an image in a react native app and crop it dynamically", 5 | "homepage": "n/a", 6 | "license": "MIT", 7 | "platforms": { 8 | "ios": "7.0" 9 | }, 10 | "authors": { 11 | "rob117": "" 12 | }, 13 | "source": { 14 | "git": "https://github.com/rob117/react-native-dynamic-cropper.git", 15 | "tag": "v#{version}" 16 | }, 17 | "source_files": "ios/src/*.{h,m}", 18 | "requires_arc": true, 19 | "dependencies": { 20 | "React": [ 21 | 22 | ], 23 | "TOCropViewController": [ 24 | 25 | ] 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /ios/Pods/Local Podspecs/RNImageCropPicker.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RNImageCropPicker", 3 | "version": "0.24.1", 4 | "summary": "Select single or multiple images, with cropping option", 5 | "requires_arc": true, 6 | "license": "MIT", 7 | "homepage": "n/a", 8 | "authors": { 9 | "ivpusic": "" 10 | }, 11 | "source": { 12 | "git": "https://github.com/ivpusic/react-native-image-crop-picker", 13 | "tag": "v#{version}" 14 | }, 15 | "source_files": "ios/src/*.{h,m}", 16 | "platforms": { 17 | "ios": "8.0" 18 | }, 19 | "dependencies": { 20 | "RSKImageCropper": [ 21 | 22 | ], 23 | "QBImagePickerController": [ 24 | 25 | ], 26 | "React/Core": [ 27 | 28 | ] 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /ios/Pods/Local Podspecs/RNShare.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RNShare", 3 | "version": "1.2.1", 4 | "summary": "Social Share, Sending Simple Data to Other Apps", 5 | "homepage": "https://github.com/react-native-community/react-native-share", 6 | "license": "MIT", 7 | "authors": { 8 | "Esteban Fuentealba": "efuentealba@json.cl" 9 | }, 10 | "platforms": { 11 | "ios": "8.0" 12 | }, 13 | "source": { 14 | "git": "https://github.com/react-native-community/react-native-share.git", 15 | "tag": "1.2.1" 16 | }, 17 | "source_files": "ios/**/*.{h,m}", 18 | "dependencies": { 19 | "React": [ 20 | 21 | ] 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ios/Pods/Local Podspecs/RNViewShot.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RNViewShot", 3 | "version": "2.6.0", 4 | "summary": "Capture a React Native view to an image", 5 | "homepage": "https://github.com/gre/react-native-view-shot", 6 | "license": "MIT", 7 | "authors": { 8 | "Gaëtan Renaudeau": "renaudeau.gaetan@gmail.com" 9 | }, 10 | "platforms": { 11 | "ios": "7.0" 12 | }, 13 | "source": { 14 | "git": "https://github.com/gre/react-native-view-shot.git", 15 | "tag": "v2.6.0" 16 | }, 17 | "source_files": "ios/*.{h,m}", 18 | "preserve_paths": "**/*.js", 19 | "dependencies": { 20 | "React": [ 21 | 22 | ] 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /ios/Pods/Local Podspecs/react-native-exif.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-exif", 3 | "version": "0.4.0", 4 | "summary": "Exif reader for react-native support for ios and android", 5 | "description": "Exif reader for react-native support for ios and android", 6 | "license": "MIT", 7 | "authors": { 8 | "name": "Francisco Sanchez", 9 | "email": "psm1984@gmail.com" 10 | }, 11 | "homepage": "https://github.com/francisco-sanchez-molina/react-native-exif", 12 | "source": { 13 | "git": "https://github.com/francisco-sanchez-molina/react-native-exif", 14 | "tag": "0.4.0" 15 | }, 16 | "requires_arc": true, 17 | "platforms": { 18 | "ios": "8.0" 19 | }, 20 | "preserve_paths": [ 21 | "README.md", 22 | "package.json", 23 | "index.js" 24 | ], 25 | "source_files": "ios/ReactNativeExif/*.{h,m}", 26 | "dependencies": { 27 | "React": [ 28 | 29 | ] 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /ios/Pods/Local Podspecs/react-native-image-resizer.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-image-resizer", 3 | "version": "1.0.1", 4 | "summary": "Rescale local images with React Native", 5 | "homepage": "https://github.com/bamlab/react-native-image-resizer", 6 | "license": "MIT", 7 | "authors": "Florian Rival (http://bam.tech)", 8 | "source": { 9 | "git": "https://github.com/bamlab/react-native-image-resizer.git", 10 | "tag": "v1.0.1" 11 | }, 12 | "platforms": { 13 | "ios": "8.0" 14 | }, 15 | "preserve_paths": [ 16 | "README.md", 17 | "LICENSE", 18 | "package.json", 19 | "index.js" 20 | ], 21 | "source_files": "ios/RCTImageResizer/*.{h,m}", 22 | "dependencies": { 23 | "React": [ 24 | 25 | ] 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /ios/Pods/Local Podspecs/yoga.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "yoga", 3 | "version": "0.59.9.React", 4 | "license": { 5 | "type": "MIT" 6 | }, 7 | "homepage": "https://facebook.github.io/yoga/", 8 | "documentation_url": "https://facebook.github.io/yoga/docs/api/c/", 9 | "summary": "Yoga is a cross-platform layout engine which implements Flexbox.", 10 | "description": "Yoga is a cross-platform layout engine enabling maximum collaboration within your team by implementing an API many designers are familiar with, and opening it up to developers across different platforms.", 11 | "authors": "Facebook", 12 | "source": { 13 | "git": "https://github.com/facebook/react-native.git", 14 | "tag": "v0.59.9" 15 | }, 16 | "module_name": "yoga", 17 | "requires_arc": false, 18 | "compiler_flags": [ 19 | "-fno-omit-frame-pointer", 20 | "-fexceptions", 21 | "-Wall", 22 | "-Werror", 23 | "-std=c++1y", 24 | "-fPIC" 25 | ], 26 | "platforms": { 27 | "ios": "9.0", 28 | "tvos": "9.2" 29 | }, 30 | "source_files": "yoga/**/*.{cpp,h}", 31 | "public_header_files": "yoga/{Yoga,YGEnums,YGMacros,YGValue}.h" 32 | } 33 | -------------------------------------------------------------------------------- /ios/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - React (0.59.9): 3 | - React/Core (= 0.59.9) 4 | - React/Core (0.59.9): 5 | - yoga (= 0.59.9.React) 6 | - RNDynamicCropper (0.1.0): 7 | - React 8 | - TOCropViewController 9 | - TOCropViewController (2.5.0) 10 | - yoga (0.59.9.React) 11 | 12 | DEPENDENCIES: 13 | - React/Core (from `../node_modules/react-native`) 14 | - RNDynamicCropper (from `../node_modules/react-native-dynamic-cropper`) 15 | - yoga (from `../node_modules/react-native/ReactCommon/yoga/yoga.podspec`) 16 | 17 | SPEC REPOS: 18 | https://github.com/cocoapods/specs.git: 19 | - TOCropViewController 20 | 21 | EXTERNAL SOURCES: 22 | React: 23 | :path: "../node_modules/react-native" 24 | RNDynamicCropper: 25 | :path: "../node_modules/react-native-dynamic-cropper" 26 | yoga: 27 | :path: "../node_modules/react-native/ReactCommon/yoga/yoga.podspec" 28 | 29 | SPEC CHECKSUMS: 30 | React: 1d605e098d69bdf08960787f3446f0a9dc2e2ccf 31 | RNDynamicCropper: 537ecb682979dae35f46dbb59537e25c3d845144 32 | TOCropViewController: d86078d3a57a70c116bf3db7c89c80046a0e5fdf 33 | yoga: 128daf064cacaede0c3bb27424b6b4c71052e6cd 34 | 35 | PODFILE CHECKSUM: 20b633aed742f0c2286cb3644738a2b232ecacf1 36 | 37 | COCOAPODS: 1.5.3 38 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015-2019 Tim Oliver 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Categories/UIImage+CropRotate.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+CropRotate.h 3 | // 4 | // Copyright 2015-2018 Timothy Oliver. All rights reserved. 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to 8 | // deal in the Software without restriction, including without limitation the 9 | // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10 | // sell copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in 14 | // all copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 17 | // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR 21 | // IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | 23 | #import 24 | 25 | NS_ASSUME_NONNULL_BEGIN 26 | 27 | @interface UIImage (TOCropRotate) 28 | - (nonnull UIImage *)croppedImageWithFrame:(CGRect)frame angle:(NSInteger)angle circularClip:(BOOL)circular; 29 | @end 30 | 31 | NS_ASSUME_NONNULL_END 32 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/Base.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "Done"; 2 | "Cancel" = "Cancel"; 3 | "Reset" = "Reset"; 4 | "Original" = "Original"; 5 | "Square" = "Square"; 6 | "Delete Changes?" = "Delete Changes?"; 7 | "Yes" = "Yes"; 8 | "No" = "No"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/ar.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "تم"; 2 | "Cancel" = "إلغاء"; 3 | "Reset" = "إعادة تعيين"; 4 | "Original" = "أصلي"; 5 | "Square" = "مربع"; 6 | "Delete Changes?" = "حذف التغييرات؟"; 7 | "Yes" = "نعم"; 8 | "No" = "لا"; 9 | 10 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/da-DK.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "OK"; 2 | "Cancel" = "Annuller"; 3 | "Reset" = "Nulstil"; 4 | "Original" = "Original"; 5 | "Square" = "Firkantet"; 6 | "Delete Changes?" = "Slet ændringer?"; 7 | "Yes" = "Ja"; 8 | "No" = "Nej"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/de.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "Fertig"; 2 | "Cancel" = "Abbrechen"; 3 | "Reset" = "Zurücksetzen"; 4 | "Original" = "Original"; 5 | "Square" = "Quadrat"; 6 | "Delete Changes?" = "Änderungen löschen?"; 7 | "Yes" = "Ja"; 8 | "No" = "Nein"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/en.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "Done"; 2 | "Cancel" = "Cancel"; 3 | "Reset" = "Reset"; 4 | "Original" = "Original"; 5 | "Square" = "Square"; 6 | "Delete Changes?" = "Delete Changes?"; 7 | "Yes" = "Yes"; 8 | "No" = "No"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/es.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "Aceptar"; 2 | "Cancel" = "Cancelar"; 3 | "Reset" = "Cambiar"; 4 | "Original" = "Original"; 5 | "Square" = "Cuadrada"; 6 | "Delete Changes?" = "Eliminar cambios?"; 7 | "Yes" = "Sí"; 8 | "No" = "No"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/fa-IR.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "انجام شد"; 2 | "Cancel" = "انصراف"; 3 | "Reset" = "بازنشانی"; 4 | "Original" = "اصلی"; 5 | "Square" = "مربع"; 6 | "Delete Changes?" = "حذف تغییرات؟"; 7 | "Yes" = "آری"; 8 | "No" = "نه"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/fa.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "انجام شد"; 2 | "Cancel" = "انصراف"; 3 | "Reset" = "بازنشانی"; 4 | "Original" = "اصلی"; 5 | "Square" = "مربع"; 6 | "Delete Changes?" = "حذف تغییرات؟"; 7 | "Yes" = "آری"; 8 | "No" = "نه"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/fr.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "OK"; 2 | "Cancel" = "Annuler"; 3 | "Reset" = "Réinitialiser"; 4 | "Original" = "D’origine"; 5 | "Square" = "Carré"; 6 | "Delete Changes?" = "Supprimer les modifications?"; 7 | "Yes" = "Oui"; 8 | "No" = "Non"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/hu.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "Kész"; 2 | "Cancel" = "Mégse"; 3 | "Reset" = "Visszaállítás"; 4 | "Original" = "Eredeti"; 5 | "Square" = "Négyzet"; 6 | "Delete Changes?" = "Módosítások törlése?"; 7 | "Yes" = "Igen"; 8 | "No" = "Nem"; 9 | 10 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/id.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "Selesai"; 2 | "Cancel" = "Batalkan"; 3 | "Reset" = "Atur Ulang"; 4 | "Original" = "Asli"; 5 | "Square" = "Persegi"; 6 | "Delete Changes?" = "Hapus Perubahan?"; 7 | "Yes" = "Ya"; 8 | "No" = "Tidak"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/it.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "Fatto"; 2 | "Cancel" = "Annulla"; 3 | "Reset" = "Ripristina"; 4 | "Original" = "Originale"; 5 | "Square" = "Quadrato"; 6 | "Delete Changes?" = "Elimina modifiche?"; 7 | "Yes" = "Sì"; 8 | "No" = "No"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/ja.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "完了"; 2 | "Cancel" = "戻る"; 3 | "Reset" = "リセット"; 4 | "Original" = "オリジナル"; 5 | "Square" = "スクエア"; 6 | "Delete Changes?" = "変更を削除?"; 7 | "Yes" = "はい"; 8 | "No" = "いいえ"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/ko.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "완료"; 2 | "Cancel" = "취소"; 3 | "Reset" = "재설정"; 4 | "Original" = "원본"; 5 | "Square" = "정방형"; 6 | "Delete Changes?" = "변경사항 삭제"; 7 | "Yes" = "예"; 8 | "No" = "아니요"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/ms.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "Selesai"; 2 | "Cancel" = "Batal"; 3 | "Reset" = "Reset"; 4 | "Original" = "Asal"; 5 | "Square" = "Segi empat"; 6 | "Delete Changes?" = "Padam Perubahan?"; 7 | "Yes" = "Ya"; 8 | "No" = "Tidak"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/nl.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "Gereed"; 2 | "Cancel" = "Annuleer"; 3 | "Reset" = "Herstel"; 4 | "Original" = "Origineel"; 5 | "Square" = "Vierkant"; 6 | "Delete Changes?" = "Wis wijzigingen?"; 7 | "Yes" = "Ja"; 8 | "No" = "Nee"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/pl.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "Gotowe"; 2 | "Cancel" = "Anuluj"; 3 | "Reset" = "Wyzeruj"; 4 | "Original" = "Orygin."; 5 | "Square" = "Kwadrat"; 6 | "Delete Changes?" = "Usuń zmiany"; 7 | "Yes" = "Tak"; 8 | "No" = "Nie"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/pt.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "OK"; 2 | "Cancel" = "Cancelar"; 3 | "Reset" = "Redefinir"; 4 | "Original" = "Original"; 5 | "Square" = "Quadrada"; 6 | "Delete Changes?" = "Apagar Alterações?"; 7 | "Yes" = "Sim"; 8 | "No" = "Não"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/ro.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "Gata"; 2 | "Cancel" = "Anulare"; 3 | "Reset" = "Resetare"; 4 | "Original" = "Original"; 5 | "Square" = "Patrat"; 6 | "Delete Changes?" = "Ștergeți modificările"; 7 | "Yes" = "Da"; 8 | "No" = "Nu"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/ru.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "Готово"; 2 | "Cancel" = "Отменить"; 3 | "Reset" = "Сбросить"; 4 | "Original" = "Оригинал"; 5 | "Square" = "Квадрат"; 6 | "Delete Changes?" = "Удалить изменения?"; 7 | "Yes" = "Да"; 8 | "No" = "Нет"; 9 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/tr.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "Tamam"; 2 | "Cancel" = "Vazgeç"; 3 | "Reset" = "Sıfırla"; 4 | "Original" = "Orjinal"; 5 | "Square" = "Kare"; 6 | "Delete Changes?" = "Değişiklikleri Sil"; 7 | "Yes" = "Evet"; 8 | "No" = "Hayır"; 9 | 10 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/vi.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "Xong"; 2 | "Cancel" = "Huỷ"; 3 | "Reset" = "Đặt lại"; 4 | "Original" = "Gốc"; 5 | "Square" = "Vuông"; 6 | "Delete Changes?" = "Xóa Thay đổi?"; 7 | "Yes" = "Có"; 8 | "No" = "Không"; 9 | 10 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/zh-Hans.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "完成"; 2 | "Cancel" = "取消"; 3 | "Reset" = "重设"; 4 | "Original" = "原有"; 5 | "Square" = "正方形"; 6 | "Delete Changes?" = "删除更改?"; 7 | "Yes" = "是"; 8 | "No" = "否"; 9 | 10 | -------------------------------------------------------------------------------- /ios/Pods/TOCropViewController/Objective-C/TOCropViewController/Resources/zh-Hant.lproj/TOCropViewControllerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "Done" = "完成"; 2 | "Cancel" = "取消"; 3 | "Reset" = "重置"; 4 | "Original" = "原始檔"; 5 | "Square" = "正方形"; 6 | "Delete Changes?" = "刪除更動?"; 7 | 8 | "Yes" = "是"; 9 | "No" = "否"; 10 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-artseeapp/Pods-artseeapp-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_artseeapp : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_artseeapp 5 | @end 6 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-artseeapp/Pods-artseeapp.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RNDynamicCropper" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/yoga" 3 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/RNDynamicCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" 4 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/RNDynamicCropper" -isystem "${PODS_ROOT}/Headers/Public/React" -isystem "${PODS_ROOT}/Headers/Public/TOCropViewController" -isystem "${PODS_ROOT}/Headers/Public/yoga" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -l"RNDynamicCropper" -l"React" -l"TOCropViewController" -l"stdc++" -l"yoga" -framework "JavaScriptCore" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-artseeapp/Pods-artseeapp.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RNDynamicCropper" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/yoga" 3 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/RNDynamicCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" 4 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/RNDynamicCropper" -isystem "${PODS_ROOT}/Headers/Public/React" -isystem "${PODS_ROOT}/Headers/Public/TOCropViewController" -isystem "${PODS_ROOT}/Headers/Public/yoga" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -l"RNDynamicCropper" -l"React" -l"TOCropViewController" -l"stdc++" -l"yoga" -framework "JavaScriptCore" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/RNDynamicCropper/RNDynamicCropper-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_RNDynamicCropper : NSObject 3 | @end 4 | @implementation PodsDummy_RNDynamicCropper 5 | @end 6 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/RNDynamicCropper/RNDynamicCropper-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/RNDynamicCropper/RNDynamicCropper.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNDynamicCropper 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNDynamicCropper" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RNDynamicCropper" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/yoga" 4 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/react-native-dynamic-cropper 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/React/React-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_React : NSObject 3 | @end 4 | @implementation PodsDummy_React 5 | @end 6 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/React/React-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/React/React.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_CXX_LANGUAGE_STANDARD = c++14 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/React 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/React" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/yoga" "$(PODS_TARGET_SRCROOT)/ReactCommon" 5 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/yoga" 6 | OTHER_LDFLAGS = -l"stdc++" -framework "JavaScriptCore" 7 | PODS_BUILD_DIR = ${BUILD_DIR} 8 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 9 | PODS_ROOT = ${SRCROOT} 10 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/react-native 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/TOCropViewController/ResourceBundle-TOCropViewControllerBundle-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleIdentifier 8 | ${PRODUCT_BUNDLE_IDENTIFIER} 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | ${PRODUCT_NAME} 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 2.5.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/TOCropViewController/TOCropViewController-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_TOCropViewController : NSObject 3 | @end 4 | @implementation PodsDummy_TOCropViewController 5 | @end 6 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/TOCropViewController/TOCropViewController-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/TOCropViewController/TOCropViewController.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/TOCropViewController" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/TOCropViewController" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/TOCropViewController 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/yoga/yoga-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_yoga : NSObject 3 | @end 4 | @implementation PodsDummy_yoga 5 | @end 6 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/yoga/yoga-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/yoga/yoga.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/yoga 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/yoga" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/yoga" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/react-native/ReactCommon/yoga 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /ios/artseeapp-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/artseeapp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/artseeapp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/artseeapp/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (nonatomic, strong) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /ios/artseeapp/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | #import 13 | 14 | @implementation AppDelegate 15 | 16 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 17 | { 18 | RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; 19 | RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge 20 | moduleName:@"artseeapp" 21 | initialProperties:nil]; 22 | 23 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 24 | 25 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 26 | UIViewController *rootViewController = [UIViewController new]; 27 | rootViewController.view = rootView; 28 | self.window.rootViewController = rootViewController; 29 | [self.window makeKeyAndVisible]; 30 | return YES; 31 | } 32 | 33 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 34 | { 35 | #if DEBUG 36 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 37 | #else 38 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 39 | #endif 40 | } 41 | 42 | @end 43 | -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-1024.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-20.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-20@2x-1.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-20@2x.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-20@3x.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-29.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-29@2x-1.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-29@2x.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-29@3x.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-40.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-40@2x-1.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-40@2x.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-40@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-40@3x-1.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-40@3x.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-60@3x.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-76.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-76@2x.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/AppIcon.appiconset/ArtSee1024-83.5@2x.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/LaunchImage.launchimage/DefaultL_ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/LaunchImage.launchimage/DefaultL_ipad.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/LaunchImage.launchimage/DefaultL_ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/LaunchImage.launchimage/DefaultL_ipad@2x.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/LaunchImage.launchimage/DefaultP_ipad-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/LaunchImage.launchimage/DefaultP_ipad-1.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/LaunchImage.launchimage/DefaultP_ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/LaunchImage.launchimage/DefaultP_ipad@2x.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/LaunchImage.launchimage/DefaultP_iphone5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/LaunchImage.launchimage/DefaultP_iphone5@2x.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/LaunchImage.launchimage/DefaultP_iphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/LaunchImage.launchimage/DefaultP_iphone@2x.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/LaunchImage.launchimage/ipx_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/LaunchImage.launchimage/ipx_landscape.png -------------------------------------------------------------------------------- /ios/artseeapp/Images.xcassets/LaunchImage.launchimage/ipx_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/ArtSee_ReactNative/d4314e9e655db679bf9a984d747d80bb0a8f5a68/ios/artseeapp/Images.xcassets/LaunchImage.launchimage/ipx_portrait.png -------------------------------------------------------------------------------- /ios/artseeapp/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ios/artseeappTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Metro configuration for React Native 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | 8 | module.exports = { 9 | transformer: { 10 | getTransformOptions: async () => ({ 11 | transform: { 12 | experimentalImportSupport: false, 13 | inlineRequires: false, 14 | }, 15 | }), 16 | }, 17 | }; 18 | --------------------------------------------------------------------------------