├── .editorconfig ├── .gitattributes ├── .github ├── actions │ └── setup │ │ └── action.yml └── workflows │ ├── build-example-ios.yml │ └── publish.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .watchmanconfig ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── AndroidManifest.xml │ ├── AndroidManifestNew.xml │ └── java │ └── com │ └── iosutilities │ ├── IosUtilitiesPackage.java │ └── IosUtilitiesViewManager.java ├── babel.config.js ├── docs ├── NOTES.md └── TODO.md ├── examples ├── example-core │ ├── .bundle │ │ └── config │ ├── .npmignore │ ├── .watchmanconfig │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── react-native.config.js │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ ├── ExampleList.tsx │ │ │ └── HomeScreen.tsx │ │ ├── constants │ │ │ ├── ExampleCardItems.ts │ │ │ ├── RouteKeys.ts │ │ │ ├── Routes.ts │ │ │ └── SharedEnv.ts │ │ ├── examples │ │ │ ├── AppMetadataCard │ │ │ │ ├── AppMetadataCard.tsx │ │ │ │ ├── AppMetadataCardContext.ts │ │ │ │ └── index.ts │ │ │ ├── RNIDetachedViewTest01.tsx │ │ │ ├── RNIDetachedViewTest02.tsx │ │ │ ├── RNIDummyTest01Screen.tsx │ │ │ ├── RNIWrapperViewTest01.tsx │ │ │ └── SharedExampleTypes.ts │ │ └── index.ts │ └── tsconfig.json ├── example-v0.77 │ ├── .bundle │ │ └── config │ ├── .npmignore │ ├── .watchmanconfig │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── iosutilitiesexample │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainApplication.kt │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── 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 │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── File.swift │ │ ├── IosUtilitiesExample-Bridging-Header.h │ │ ├── IosUtilitiesExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── IosUtilitiesExample.xcscheme │ │ ├── IosUtilitiesExample.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── IosUtilitiesExample │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── 100.png │ │ │ │ │ ├── 1024.png │ │ │ │ │ ├── 114.png │ │ │ │ │ ├── 120.png │ │ │ │ │ ├── 144.png │ │ │ │ │ ├── 152.png │ │ │ │ │ ├── 167.png │ │ │ │ │ ├── 180.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 40.png │ │ │ │ │ ├── 50.png │ │ │ │ │ ├── 57.png │ │ │ │ │ ├── 58.png │ │ │ │ │ ├── 60.png │ │ │ │ │ ├── 72.png │ │ │ │ │ ├── 76.png │ │ │ │ │ ├── 80.png │ │ │ │ │ ├── 87.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── PuzzleBoxIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── box-puzzle-icon.png │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── main.m │ │ ├── IosUtilitiesExampleTests │ │ │ ├── Info.plist │ │ │ └── IosUtilitiesExampleTests.m │ │ ├── Podfile │ │ └── Podfile.lock │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── react-native.config.js │ ├── src │ │ └── App.tsx │ └── tsconfig.json ├── example-v0.78 │ ├── .bundle │ │ └── config │ ├── .watchmanconfig │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── iosutilitiesexample │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainApplication.kt │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── 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 │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── File.swift │ │ ├── IosUtilitiesExample-Bridging-Header.h │ │ ├── IosUtilitiesExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── IosUtilitiesExample.xcscheme │ │ ├── IosUtilitiesExample.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── IosUtilitiesExample │ │ │ ├── AppDelegate.swift │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── 100.png │ │ │ │ │ ├── 1024.png │ │ │ │ │ ├── 114.png │ │ │ │ │ ├── 120.png │ │ │ │ │ ├── 144.png │ │ │ │ │ ├── 152.png │ │ │ │ │ ├── 167.png │ │ │ │ │ ├── 180.png │ │ │ │ │ ├── 20.png │ │ │ │ │ ├── 29.png │ │ │ │ │ ├── 40.png │ │ │ │ │ ├── 50.png │ │ │ │ │ ├── 57.png │ │ │ │ │ ├── 58.png │ │ │ │ │ ├── 60.png │ │ │ │ │ ├── 72.png │ │ │ │ │ ├── 76.png │ │ │ │ │ ├── 80.png │ │ │ │ │ ├── 87.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── PuzzleBoxIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── box-puzzle-icon.png │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── IosUtilitiesExampleTests │ │ │ └── Info.plist │ │ ├── Podfile │ │ └── Podfile.lock │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── react-native.config.js │ ├── src │ │ └── App.tsx │ └── tsconfig.json └── example-v0.80.1 │ ├── .bundle │ └── config │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── __tests__ │ └── App.test.tsx │ ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── iosutilitiesexample_v0_80 │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── 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 │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios │ ├── .xcode.env │ ├── IosUtilitiesExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── IosUtilitiesExample.xcscheme │ ├── IosUtilitiesExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── IosUtilitiesExample │ │ ├── AppDelegate.swift │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── 100.png │ │ │ │ ├── 1024.png │ │ │ │ ├── 114.png │ │ │ │ ├── 120.png │ │ │ │ ├── 144.png │ │ │ │ ├── 152.png │ │ │ │ ├── 167.png │ │ │ │ ├── 180.png │ │ │ │ ├── 20.png │ │ │ │ ├── 29.png │ │ │ │ ├── 40.png │ │ │ │ ├── 50.png │ │ │ │ ├── 57.png │ │ │ │ ├── 58.png │ │ │ │ ├── 60.png │ │ │ │ ├── 72.png │ │ │ │ ├── 76.png │ │ │ │ ├── 80.png │ │ │ │ ├── 87.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── PuzzleBoxIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── box-puzzle-icon.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── PrivacyInfo.xcprivacy │ ├── Podfile │ └── Podfile.lock │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── react-native.config.js │ ├── src │ └── App.tsx │ └── tsconfig.json ├── ios ├── Sources │ ├── Deprecated │ │ └── RNIImage │ │ │ ├── RNIImageGradientMaker.swift │ │ │ ├── RNIImageItem.swift │ │ │ ├── RNIImageLoadingConfig.swift │ │ │ ├── RNIImageMaker.swift │ │ │ ├── RNIImageOptions.swift │ │ │ ├── RNIImageRemoteURLMaker.swift │ │ │ ├── RNIImageRequireMaker.swift │ │ │ ├── RNIImageSystemMaker.swift │ │ │ ├── RNIImageType.swift │ │ │ └── RNIRemoteURLImageLoadingConfig.swift │ ├── Extension+CreatableFromDictionary │ │ └── UIImageSymbolConfiguration+CreatableFromDictionary.swift │ ├── Extensions+Helpers │ │ ├── AlignmentPositionConfig+Helpers.swift │ │ ├── RCTView+Helpers.swift │ │ └── UIViewPropertyAnimator+Helpers.swift │ ├── Extensions+InitializableFromDictionary │ │ ├── Angle+InitializableFromDictionary.swift │ │ ├── AnimationConfig+InitializableFromDictionary.swift │ │ ├── BasicViewKeyframe+InitializableFromDictionary.swift │ │ ├── CGPoint+InitializableFromDictionary.swift │ │ ├── CGRect+InitializableFromDictionary.swift │ │ ├── CGSize+InitializableFromDictionary.swift │ │ ├── CGVector+InitializableFromDictionary.swift │ │ ├── ComputableLayout+InitializableFromDictionary.swift │ │ ├── ComputableLayoutPreset+InitializableFromDictionary.swift │ │ ├── ComputableLayoutValue+InitializableFromDictionary.swift │ │ ├── ComputableLayoutValueEvaluableCondition+InitializableFromDictionary.swift │ │ ├── ComputableLayoutValueMode+InitializableFromDictionary.swift │ │ ├── EvaluableCondition+InitializableFromDictionary.swift │ │ ├── EvaluableConditionFrameRectValue+InitializableFromDictionary.swift │ │ ├── EvaluableConditionSizeValue+InitializableFromDictionary.swift │ │ ├── GenericViewKeyframe+InitializableFromDictionary.swift │ │ ├── ImageConfigGradient+InitializableFromDictionary.swift │ │ ├── NumericLogicalExpression+InitializableFromDictionary.swift │ │ └── Transform3D+InitializableFromDictionary.swift │ ├── Extensions+InitializableFromString │ │ ├── ComputableLayoutPreset+InitializableFromString.swift │ │ └── UIMenu+InitializableFromString.swift │ ├── ObjcHelpers │ │ ├── RNICxxUtils.cpp │ │ ├── RNICxxUtils.h │ │ ├── RNIObjcUtils.h │ │ ├── RNIObjcUtils.mm │ │ ├── UIApplication+RNIHelpers.h │ │ ├── UIApplication+RNIHelpers.mm │ │ ├── UIView+RNIFabricHelpers.h │ │ ├── UIView+RNIFabricHelpers.mm │ │ ├── UIView+RNIHelpers.h │ │ ├── UIView+RNIHelpers.mm │ │ ├── UIView+RNIPaperHelpers.h │ │ └── UIView+RNIPaperHelpers.mm │ ├── RNIBaseView │ │ ├── RNIBaseView+KVC.h │ │ ├── RNIBaseView+KVC.mm │ │ ├── RNIBaseView.h │ │ ├── RNIBaseView.mm │ │ ├── RNIBaseViewComponentDescriptor.h │ │ ├── RNIBaseViewController.swift │ │ ├── RNIBaseViewEventBroadcaster.swift │ │ ├── RNIBaseViewEventEmitter.cpp │ │ ├── RNIBaseViewEventEmitter.h │ │ ├── RNIBaseViewPaperEventHandler.h │ │ ├── RNIBaseViewPaperEventHandler.m │ │ ├── RNIBaseViewPaperEventHolder.h │ │ ├── RNIBaseViewPaperEventHolder.m │ │ ├── RNIBaseViewPaperPropHandler.h │ │ ├── RNIBaseViewPaperPropHandler.m │ │ ├── RNIBaseViewPaperPropHolder.h │ │ ├── RNIBaseViewPaperPropHolder.m │ │ ├── RNIBaseViewProps.cpp │ │ ├── RNIBaseViewProps.h │ │ ├── RNIBaseViewShadowNode.h │ │ ├── RNIBaseViewState.cpp │ │ ├── RNIBaseViewState.h │ │ ├── RNIBaseViewState.swift │ │ └── RNIBaseViewUtils.h │ ├── RNIContentView │ │ ├── RNIContentView+Default.swift │ │ ├── RNIContentView.swift │ │ ├── RNIContentViewDelegate+Default.swift │ │ └── RNIContentViewDelegate.swift │ ├── RNIContentViewInternal │ │ ├── RNIContentViewInternal.swift │ │ ├── RNIViewInternalEvents.swift │ │ └── RNIViewInternalEventsNotifiable.swift │ ├── RNIContentViewParentDelegate │ │ ├── RNIContentViewParentDelegate.h │ │ └── RNIContentViewParentDelegate.swift │ ├── RNIDetachedView │ │ ├── RNIDetachedView.h │ │ ├── RNIDetachedView.mm │ │ ├── RNIDetachedViewComponentDescriptor.h │ │ ├── RNIDetachedViewContent.swift │ │ ├── RNIDetachedViewEventsNotifiable.swift │ │ ├── RNIDetachedViewManager.mm │ │ └── RNIDetachedViewShadowNode.h │ ├── RNIDummyTestView │ │ ├── RNIDummyTestView.h │ │ ├── RNIDummyTestView.mm │ │ ├── RNIDummyTestViewComponentDescriptor.h │ │ ├── RNIDummyTestViewDelegate.swift │ │ ├── RNIDummyTestViewManager.mm │ │ ├── RNIDummyTestViewModuleRequestHandler.swift │ │ └── RNIDummyTestViewShadowNode.h │ ├── RNIError │ │ ├── RNIDefaultErrorCode.swift │ │ ├── RNIDefaultErrorCodes.swift │ │ └── RNIError.swift │ ├── RNINavigationEventsReporting │ │ ├── RNINavigationEventsNotifiable.swift │ │ └── RNINavigationEventsReportingViewController.swift │ ├── RNIUtilitiesModule │ │ ├── RNIModuleCommandRequestHandling+Helpers.swift │ │ ├── RNIModuleCommandRequestHandling.swift │ │ ├── RNIUtilitiesFollyConvert.h │ │ ├── RNIUtilitiesManager.swift │ │ ├── RNIUtilitiesManagerEventsNotifiable.swift │ │ ├── RNIUtilitiesModule.h │ │ ├── RNIUtilitiesModule.mm │ │ ├── RNIUtilitiesTurboModule.cpp │ │ ├── RNIUtilitiesTurboModule.h │ │ ├── RNIUtiltiesModule+RNIUtilitiesManagerEventsNotifiable.swift │ │ └── RNIViewCommandRequestHandling.h │ ├── RNIViewLifecycle │ │ ├── RNIViewLifecycle.swift │ │ ├── RNIViewLifecycleCommon.swift │ │ ├── RNIViewLifecycleFabric.swift │ │ └── RNIViewLifecyclePaper.swift │ ├── RNIViewPropDelegate │ │ ├── RNIViewPropDelegate+AnyObject.swift │ │ ├── RNIViewPropDelegate+Default.swift │ │ ├── RNIViewPropDelegate+StringKeyPathMapping.swift │ │ ├── RNIViewPropDelegate.swift │ │ ├── RNIViewPropHandling+Default.swift │ │ ├── RNIViewPropHandling+Helpers.swift │ │ ├── RNIViewPropHandling.swift │ │ └── RNIViewPropUpdatesNotifiable.swift │ ├── RNIViewRegistry │ │ ├── RNIRegistrableView.h │ │ ├── RNIViewRegistry.h │ │ └── RNIViewRegistry.m │ ├── RNIWrapperView │ │ ├── RNIWrapperView.h │ │ ├── RNIWrapperView.mm │ │ ├── RNIWrapperViewComponentDescriptor.h │ │ ├── RNIWrapperViewContent.swift │ │ ├── RNIWrapperViewManager.mm │ │ └── RNIWrapperViewShadowNode.h │ ├── SwiftCommon │ │ ├── RNIComponentViewUpdateMask.swift │ │ ├── RNILayoutMetrics.swift │ │ ├── RNINativeViewIdentifier.swift │ │ ├── RNIUtilitiesError.swift │ │ └── RNIViewRegistryShared.swift │ └── Temp │ │ ├── AlignmentPositionConfig.swift │ │ └── ViewLifecycleEventsNotifiable.swift ├── Swift.h └── react-native-ios-utilities.h ├── log-test-build-ios-all.txt ├── package.json ├── react-native-ios-utilities.podspec ├── scripts ├── build-ios.sh ├── echo-all-example-ios-paths.sh ├── nuke-cache-js.sh ├── nuke-example-pods.sh ├── set-node-env.sh ├── test-build-ios-all.sh ├── test-builds.sh └── update-version-xcode.sh ├── src ├── constants │ ├── LibEnv.ts │ ├── UIBlurEffectStyles.ts │ └── UIVibrancyEffectStyles.ts ├── example_components │ ├── CardBody.tsx │ ├── CardButton.tsx │ ├── CardRowColorPicker.tsx │ ├── CardRowLabelDisplay.tsx │ ├── CardRowStepper.tsx │ ├── CardRowSwitch.tsx │ ├── CardRowTextInput.tsx │ ├── CardTitle.tsx │ ├── ExampleItemCard.tsx │ ├── ObjectPropertyDisplay.tsx │ ├── Spacer.tsx │ └── ViewShapes.tsx ├── index.ts ├── misc │ ├── Colors.ts │ └── Helpers.ts ├── native_components │ ├── RNIDetachedView │ │ ├── DetachedSubviewsMap.ts │ │ ├── RNIDetachedNativeView.ts │ │ ├── RNIDetachedView.tsx │ │ ├── RNIDetachedViewContent.tsx │ │ ├── RNIDetachedViewContentTypes.tsx │ │ ├── RNIDetachedViewEvents.ts │ │ ├── RNIDetachedViewNativeComponent.ts │ │ ├── RNIDetachedViewTypes.ts │ │ └── index.ts │ ├── RNIDummyTestView │ │ ├── RNIDummyTestNativeView.ts │ │ ├── RNIDummyTestViewModule.ts │ │ ├── RNIDummyTestViewNativeComponent.ts │ │ └── index.ts │ └── RNIWrapperView │ │ ├── RNIWrapperNativeView.ts │ │ ├── RNIWrapperView.tsx │ │ ├── RNIWrapperViewNativeComponent.ts │ │ ├── RNIWrapperViewTypes.ts │ │ └── index.ts ├── native_modules │ └── RNIUtilitiesModule │ │ ├── NativeRNIUtilitiesModule.ts │ │ ├── RNIUtilitiesModule.ts │ │ ├── RNIUtilitiesModuleTypes.ts │ │ └── index.ts └── types │ ├── ComputableLayout │ ├── ComputableLayout.ts │ ├── ComputableLayoutOffsetOperation.ts │ ├── ComputableLayoutValue.ts │ ├── ComputableLayoutValueEvaluableCondition.ts │ ├── ComputableLayoutValueMode.ts │ ├── ComputableLayoutValuePercentTarget.ts │ ├── EvaluableCondition.ts │ ├── EvaluableConditionContext.ts │ ├── HorizontalAlignment.ts │ ├── NumericLogicalExpression.ts │ ├── StringComparisonMode.ts │ ├── VerticalAlignment.ts │ └── index.ts │ ├── DGSwiftUtilities │ ├── AlignmentPositionConfig.ts │ ├── Angle.ts │ ├── AnimationConfig.ts │ ├── BaseLayerKeyframeConfig.ts │ ├── BaseViewKeyframeConfig.ts │ ├── BasicViewKeyframe.ts │ ├── GenericViewKeyframe.ts │ ├── HorizontalAlignmentPosition.ts │ ├── PointPreset.ts │ ├── Transform3D.ts │ ├── VerticalAlignmentPosition.ts │ ├── VerticalAnchorPositionMode.ts │ └── index.ts │ ├── ImageConfig │ ├── ImageConfigGradient.ts │ └── index.ts │ ├── ImageItemConfig │ ├── ImageGradientConfig.ts │ ├── ImageItemConfig.ts │ ├── ImageLoadingConfig.ts │ ├── ImageMiscTypes.ts │ ├── ImageOptions.ts │ ├── ImageRectConfig.ts │ ├── ImageSystemConfig.ts │ └── index.ts │ ├── MiscTypes.ts │ ├── NativeError.ts │ ├── NativeTypes │ ├── CAGradientLayer.ts │ ├── CALayer.ts │ ├── CoreGraphicsTypes.ts │ ├── UIDevice.ts │ ├── UIFont.ts │ ├── UIGeometry.ts │ ├── UIImageSymbolConfiguration.ts │ ├── UIInterface.ts │ ├── UIOrientation.ts │ ├── UIViewAnimating.ts │ ├── UIViewPropertyAnimator.ts │ ├── UIViewTypes.ts │ └── index.ts │ ├── ReactNativeUtilityTypes.ts │ ├── SharedAnimationEvents.ts │ ├── SharedPropTypes.ts │ ├── SharedStateTypes.ts │ ├── SharedViewEvents.ts │ ├── SharedViewEventsInternal.ts │ ├── SharedViewPropsInternal.ts │ └── UtilityTypes.ts ├── tsconfig.build.json ├── tsconfig.json ├── turbo.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/build-example-ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/.github/workflows/build-example-ios.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v23.9.0 -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /android/src/main/java/com/iosutilities/IosUtilitiesPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/android/src/main/java/com/iosutilities/IosUtilitiesPackage.java -------------------------------------------------------------------------------- /android/src/main/java/com/iosutilities/IosUtilitiesViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/android/src/main/java/com/iosutilities/IosUtilitiesViewManager.java -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/docs/NOTES.md -------------------------------------------------------------------------------- /docs/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/docs/TODO.md -------------------------------------------------------------------------------- /examples/example-core/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/.bundle/config -------------------------------------------------------------------------------- /examples/example-core/.npmignore: -------------------------------------------------------------------------------- 1 | ios/ 2 | android/ 3 | -------------------------------------------------------------------------------- /examples/example-core/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/example-core/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/Gemfile -------------------------------------------------------------------------------- /examples/example-core/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/Gemfile.lock -------------------------------------------------------------------------------- /examples/example-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/README.md -------------------------------------------------------------------------------- /examples/example-core/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/app.json -------------------------------------------------------------------------------- /examples/example-core/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/babel.config.js -------------------------------------------------------------------------------- /examples/example-core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/index.js -------------------------------------------------------------------------------- /examples/example-core/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /examples/example-core/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/metro.config.js -------------------------------------------------------------------------------- /examples/example-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/package.json -------------------------------------------------------------------------------- /examples/example-core/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/react-native.config.js -------------------------------------------------------------------------------- /examples/example-core/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/App.tsx -------------------------------------------------------------------------------- /examples/example-core/src/components/ExampleList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/components/ExampleList.tsx -------------------------------------------------------------------------------- /examples/example-core/src/components/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/components/HomeScreen.tsx -------------------------------------------------------------------------------- /examples/example-core/src/constants/ExampleCardItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/constants/ExampleCardItems.ts -------------------------------------------------------------------------------- /examples/example-core/src/constants/RouteKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/constants/RouteKeys.ts -------------------------------------------------------------------------------- /examples/example-core/src/constants/Routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/constants/Routes.ts -------------------------------------------------------------------------------- /examples/example-core/src/constants/SharedEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/constants/SharedEnv.ts -------------------------------------------------------------------------------- /examples/example-core/src/examples/AppMetadataCard/AppMetadataCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/examples/AppMetadataCard/AppMetadataCard.tsx -------------------------------------------------------------------------------- /examples/example-core/src/examples/AppMetadataCard/AppMetadataCardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/examples/AppMetadataCard/AppMetadataCardContext.ts -------------------------------------------------------------------------------- /examples/example-core/src/examples/AppMetadataCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/examples/AppMetadataCard/index.ts -------------------------------------------------------------------------------- /examples/example-core/src/examples/RNIDetachedViewTest01.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/examples/RNIDetachedViewTest01.tsx -------------------------------------------------------------------------------- /examples/example-core/src/examples/RNIDetachedViewTest02.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/examples/RNIDetachedViewTest02.tsx -------------------------------------------------------------------------------- /examples/example-core/src/examples/RNIDummyTest01Screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/examples/RNIDummyTest01Screen.tsx -------------------------------------------------------------------------------- /examples/example-core/src/examples/RNIWrapperViewTest01.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/examples/RNIWrapperViewTest01.tsx -------------------------------------------------------------------------------- /examples/example-core/src/examples/SharedExampleTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/examples/SharedExampleTypes.ts -------------------------------------------------------------------------------- /examples/example-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/src/index.ts -------------------------------------------------------------------------------- /examples/example-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-core/tsconfig.json -------------------------------------------------------------------------------- /examples/example-v0.77/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/.bundle/config -------------------------------------------------------------------------------- /examples/example-v0.77/.npmignore: -------------------------------------------------------------------------------- 1 | ios/ 2 | android/ 3 | -------------------------------------------------------------------------------- /examples/example-v0.77/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/example-v0.77/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/Gemfile -------------------------------------------------------------------------------- /examples/example-v0.77/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/Gemfile.lock -------------------------------------------------------------------------------- /examples/example-v0.77/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/README.md -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/build.gradle -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/debug.keystore -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/java/com/iosutilitiesexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/java/com/iosutilitiesexample/MainActivity.kt -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/java/com/iosutilitiesexample/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/java/com/iosutilitiesexample/MainApplication.kt -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/example-v0.77/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/example-v0.77/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/build.gradle -------------------------------------------------------------------------------- /examples/example-v0.77/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/gradle.properties -------------------------------------------------------------------------------- /examples/example-v0.77/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/example-v0.77/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/example-v0.77/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/gradlew -------------------------------------------------------------------------------- /examples/example-v0.77/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/gradlew.bat -------------------------------------------------------------------------------- /examples/example-v0.77/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/android/settings.gradle -------------------------------------------------------------------------------- /examples/example-v0.77/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/app.json -------------------------------------------------------------------------------- /examples/example-v0.77/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/babel.config.js -------------------------------------------------------------------------------- /examples/example-v0.77/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/index.js -------------------------------------------------------------------------------- /examples/example-v0.77/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/.xcode.env -------------------------------------------------------------------------------- /examples/example-v0.77/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/File.swift -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample-Bridging-Header.h -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample.xcodeproj/xcshareddata/xcschemes/IosUtilitiesExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample.xcodeproj/xcshareddata/xcschemes/IosUtilitiesExample.xcscheme -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/AppDelegate.h -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/AppDelegate.mm -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/PuzzleBoxIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/PuzzleBoxIcon.imageset/Contents.json -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/PuzzleBoxIcon.imageset/box-puzzle-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Images.xcassets/PuzzleBoxIcon.imageset/box-puzzle-icon.png -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/Info.plist -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExample/main.m -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExampleTests/Info.plist -------------------------------------------------------------------------------- /examples/example-v0.77/ios/IosUtilitiesExampleTests/IosUtilitiesExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/IosUtilitiesExampleTests/IosUtilitiesExampleTests.m -------------------------------------------------------------------------------- /examples/example-v0.77/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/Podfile -------------------------------------------------------------------------------- /examples/example-v0.77/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/ios/Podfile.lock -------------------------------------------------------------------------------- /examples/example-v0.77/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /examples/example-v0.77/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/metro.config.js -------------------------------------------------------------------------------- /examples/example-v0.77/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/package.json -------------------------------------------------------------------------------- /examples/example-v0.77/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/react-native.config.js -------------------------------------------------------------------------------- /examples/example-v0.77/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/src/App.tsx -------------------------------------------------------------------------------- /examples/example-v0.77/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.77/tsconfig.json -------------------------------------------------------------------------------- /examples/example-v0.78/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/.bundle/config -------------------------------------------------------------------------------- /examples/example-v0.78/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/example-v0.78/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/Gemfile -------------------------------------------------------------------------------- /examples/example-v0.78/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/Gemfile.lock -------------------------------------------------------------------------------- /examples/example-v0.78/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/README.md -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/build.gradle -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/debug.keystore -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/java/com/iosutilitiesexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/java/com/iosutilitiesexample/MainActivity.kt -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/java/com/iosutilitiesexample/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/java/com/iosutilitiesexample/MainApplication.kt -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/example-v0.78/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/example-v0.78/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/build.gradle -------------------------------------------------------------------------------- /examples/example-v0.78/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/gradle.properties -------------------------------------------------------------------------------- /examples/example-v0.78/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/example-v0.78/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/example-v0.78/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/gradlew -------------------------------------------------------------------------------- /examples/example-v0.78/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/gradlew.bat -------------------------------------------------------------------------------- /examples/example-v0.78/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/android/settings.gradle -------------------------------------------------------------------------------- /examples/example-v0.78/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/app.json -------------------------------------------------------------------------------- /examples/example-v0.78/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/babel.config.js -------------------------------------------------------------------------------- /examples/example-v0.78/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/index.js -------------------------------------------------------------------------------- /examples/example-v0.78/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/.xcode.env -------------------------------------------------------------------------------- /examples/example-v0.78/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/File.swift -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample-Bridging-Header.h -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample.xcodeproj/xcshareddata/xcschemes/IosUtilitiesExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample.xcodeproj/xcshareddata/xcschemes/IosUtilitiesExample.xcscheme -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/AppDelegate.swift -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/PuzzleBoxIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/PuzzleBoxIcon.imageset/Contents.json -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/PuzzleBoxIcon.imageset/box-puzzle-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Images.xcassets/PuzzleBoxIcon.imageset/box-puzzle-icon.png -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/Info.plist -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /examples/example-v0.78/ios/IosUtilitiesExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/IosUtilitiesExampleTests/Info.plist -------------------------------------------------------------------------------- /examples/example-v0.78/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/Podfile -------------------------------------------------------------------------------- /examples/example-v0.78/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/ios/Podfile.lock -------------------------------------------------------------------------------- /examples/example-v0.78/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /examples/example-v0.78/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/metro.config.js -------------------------------------------------------------------------------- /examples/example-v0.78/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/package.json -------------------------------------------------------------------------------- /examples/example-v0.78/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/react-native.config.js -------------------------------------------------------------------------------- /examples/example-v0.78/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/src/App.tsx -------------------------------------------------------------------------------- /examples/example-v0.78/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.78/tsconfig.json -------------------------------------------------------------------------------- /examples/example-v0.80.1/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/.bundle/config -------------------------------------------------------------------------------- /examples/example-v0.80.1/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/.eslintrc.js -------------------------------------------------------------------------------- /examples/example-v0.80.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/.gitignore -------------------------------------------------------------------------------- /examples/example-v0.80.1/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/.prettierrc.js -------------------------------------------------------------------------------- /examples/example-v0.80.1/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/example-v0.80.1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/Gemfile -------------------------------------------------------------------------------- /examples/example-v0.80.1/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/Gemfile.lock -------------------------------------------------------------------------------- /examples/example-v0.80.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/README.md -------------------------------------------------------------------------------- /examples/example-v0.80.1/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/__tests__/App.test.tsx -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/build.gradle -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/debug.keystore -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/java/com/iosutilitiesexample_v0_80/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/java/com/iosutilitiesexample_v0_80/MainActivity.kt -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/java/com/iosutilitiesexample_v0_80/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/java/com/iosutilitiesexample_v0_80/MainApplication.kt -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/build.gradle -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/gradle.properties -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/gradlew -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/gradlew.bat -------------------------------------------------------------------------------- /examples/example-v0.80.1/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/android/settings.gradle -------------------------------------------------------------------------------- /examples/example-v0.80.1/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/app.json -------------------------------------------------------------------------------- /examples/example-v0.80.1/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/babel.config.js -------------------------------------------------------------------------------- /examples/example-v0.80.1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/index.js -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/.xcode.env -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample.xcodeproj/xcshareddata/xcschemes/IosUtilitiesExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample.xcodeproj/xcshareddata/xcschemes/IosUtilitiesExample.xcscheme -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/AppDelegate.swift -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/PuzzleBoxIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/PuzzleBoxIcon.imageset/Contents.json -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/PuzzleBoxIcon.imageset/box-puzzle-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Images.xcassets/PuzzleBoxIcon.imageset/box-puzzle-icon.png -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/Info.plist -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/IosUtilitiesExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/IosUtilitiesExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/Podfile -------------------------------------------------------------------------------- /examples/example-v0.80.1/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/ios/Podfile.lock -------------------------------------------------------------------------------- /examples/example-v0.80.1/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /examples/example-v0.80.1/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/metro.config.js -------------------------------------------------------------------------------- /examples/example-v0.80.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/package.json -------------------------------------------------------------------------------- /examples/example-v0.80.1/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/react-native.config.js -------------------------------------------------------------------------------- /examples/example-v0.80.1/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/src/App.tsx -------------------------------------------------------------------------------- /examples/example-v0.80.1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/examples/example-v0.80.1/tsconfig.json -------------------------------------------------------------------------------- /ios/Sources/Deprecated/RNIImage/RNIImageGradientMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Deprecated/RNIImage/RNIImageGradientMaker.swift -------------------------------------------------------------------------------- /ios/Sources/Deprecated/RNIImage/RNIImageItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Deprecated/RNIImage/RNIImageItem.swift -------------------------------------------------------------------------------- /ios/Sources/Deprecated/RNIImage/RNIImageLoadingConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Deprecated/RNIImage/RNIImageLoadingConfig.swift -------------------------------------------------------------------------------- /ios/Sources/Deprecated/RNIImage/RNIImageMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Deprecated/RNIImage/RNIImageMaker.swift -------------------------------------------------------------------------------- /ios/Sources/Deprecated/RNIImage/RNIImageOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Deprecated/RNIImage/RNIImageOptions.swift -------------------------------------------------------------------------------- /ios/Sources/Deprecated/RNIImage/RNIImageRemoteURLMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Deprecated/RNIImage/RNIImageRemoteURLMaker.swift -------------------------------------------------------------------------------- /ios/Sources/Deprecated/RNIImage/RNIImageRequireMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Deprecated/RNIImage/RNIImageRequireMaker.swift -------------------------------------------------------------------------------- /ios/Sources/Deprecated/RNIImage/RNIImageSystemMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Deprecated/RNIImage/RNIImageSystemMaker.swift -------------------------------------------------------------------------------- /ios/Sources/Deprecated/RNIImage/RNIImageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Deprecated/RNIImage/RNIImageType.swift -------------------------------------------------------------------------------- /ios/Sources/Deprecated/RNIImage/RNIRemoteURLImageLoadingConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Deprecated/RNIImage/RNIRemoteURLImageLoadingConfig.swift -------------------------------------------------------------------------------- /ios/Sources/Extension+CreatableFromDictionary/UIImageSymbolConfiguration+CreatableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extension+CreatableFromDictionary/UIImageSymbolConfiguration+CreatableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+Helpers/AlignmentPositionConfig+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+Helpers/AlignmentPositionConfig+Helpers.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+Helpers/RCTView+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+Helpers/RCTView+Helpers.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+Helpers/UIViewPropertyAnimator+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+Helpers/UIViewPropertyAnimator+Helpers.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/Angle+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/Angle+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/AnimationConfig+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/AnimationConfig+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/BasicViewKeyframe+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/BasicViewKeyframe+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/CGPoint+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/CGPoint+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/CGRect+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/CGRect+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/CGSize+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/CGSize+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/CGVector+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/CGVector+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/ComputableLayout+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/ComputableLayout+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/ComputableLayoutPreset+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/ComputableLayoutPreset+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/ComputableLayoutValue+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/ComputableLayoutValue+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/ComputableLayoutValueEvaluableCondition+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/ComputableLayoutValueEvaluableCondition+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/ComputableLayoutValueMode+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/ComputableLayoutValueMode+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/EvaluableCondition+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/EvaluableCondition+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/EvaluableConditionFrameRectValue+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/EvaluableConditionFrameRectValue+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/EvaluableConditionSizeValue+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/EvaluableConditionSizeValue+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/GenericViewKeyframe+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/GenericViewKeyframe+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/ImageConfigGradient+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/ImageConfigGradient+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/NumericLogicalExpression+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/NumericLogicalExpression+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromDictionary/Transform3D+InitializableFromDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromDictionary/Transform3D+InitializableFromDictionary.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromString/ComputableLayoutPreset+InitializableFromString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromString/ComputableLayoutPreset+InitializableFromString.swift -------------------------------------------------------------------------------- /ios/Sources/Extensions+InitializableFromString/UIMenu+InitializableFromString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Extensions+InitializableFromString/UIMenu+InitializableFromString.swift -------------------------------------------------------------------------------- /ios/Sources/ObjcHelpers/RNICxxUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/ObjcHelpers/RNICxxUtils.cpp -------------------------------------------------------------------------------- /ios/Sources/ObjcHelpers/RNICxxUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/ObjcHelpers/RNICxxUtils.h -------------------------------------------------------------------------------- /ios/Sources/ObjcHelpers/RNIObjcUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/ObjcHelpers/RNIObjcUtils.h -------------------------------------------------------------------------------- /ios/Sources/ObjcHelpers/RNIObjcUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/ObjcHelpers/RNIObjcUtils.mm -------------------------------------------------------------------------------- /ios/Sources/ObjcHelpers/UIApplication+RNIHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/ObjcHelpers/UIApplication+RNIHelpers.h -------------------------------------------------------------------------------- /ios/Sources/ObjcHelpers/UIApplication+RNIHelpers.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/ObjcHelpers/UIApplication+RNIHelpers.mm -------------------------------------------------------------------------------- /ios/Sources/ObjcHelpers/UIView+RNIFabricHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/ObjcHelpers/UIView+RNIFabricHelpers.h -------------------------------------------------------------------------------- /ios/Sources/ObjcHelpers/UIView+RNIFabricHelpers.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/ObjcHelpers/UIView+RNIFabricHelpers.mm -------------------------------------------------------------------------------- /ios/Sources/ObjcHelpers/UIView+RNIHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/ObjcHelpers/UIView+RNIHelpers.h -------------------------------------------------------------------------------- /ios/Sources/ObjcHelpers/UIView+RNIHelpers.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/ObjcHelpers/UIView+RNIHelpers.mm -------------------------------------------------------------------------------- /ios/Sources/ObjcHelpers/UIView+RNIPaperHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/ObjcHelpers/UIView+RNIPaperHelpers.h -------------------------------------------------------------------------------- /ios/Sources/ObjcHelpers/UIView+RNIPaperHelpers.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/ObjcHelpers/UIView+RNIPaperHelpers.mm -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseView+KVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseView+KVC.h -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseView+KVC.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseView+KVC.mm -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseView.h -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseView.mm -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewComponentDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewComponentDescriptor.h -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewController.swift -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewEventBroadcaster.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewEventBroadcaster.swift -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewEventEmitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewEventEmitter.cpp -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewEventEmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewEventEmitter.h -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewPaperEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewPaperEventHandler.h -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewPaperEventHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewPaperEventHandler.m -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewPaperEventHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewPaperEventHolder.h -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewPaperEventHolder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewPaperEventHolder.m -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewPaperPropHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewPaperPropHandler.h -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewPaperPropHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewPaperPropHandler.m -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewPaperPropHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewPaperPropHolder.h -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewPaperPropHolder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewPaperPropHolder.m -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewProps.cpp -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewProps.h -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewShadowNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewShadowNode.h -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewState.cpp -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewState.h -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewState.swift -------------------------------------------------------------------------------- /ios/Sources/RNIBaseView/RNIBaseViewUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIBaseView/RNIBaseViewUtils.h -------------------------------------------------------------------------------- /ios/Sources/RNIContentView/RNIContentView+Default.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIContentView/RNIContentView+Default.swift -------------------------------------------------------------------------------- /ios/Sources/RNIContentView/RNIContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIContentView/RNIContentView.swift -------------------------------------------------------------------------------- /ios/Sources/RNIContentView/RNIContentViewDelegate+Default.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIContentView/RNIContentViewDelegate+Default.swift -------------------------------------------------------------------------------- /ios/Sources/RNIContentView/RNIContentViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIContentView/RNIContentViewDelegate.swift -------------------------------------------------------------------------------- /ios/Sources/RNIContentViewInternal/RNIContentViewInternal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIContentViewInternal/RNIContentViewInternal.swift -------------------------------------------------------------------------------- /ios/Sources/RNIContentViewInternal/RNIViewInternalEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIContentViewInternal/RNIViewInternalEvents.swift -------------------------------------------------------------------------------- /ios/Sources/RNIContentViewInternal/RNIViewInternalEventsNotifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIContentViewInternal/RNIViewInternalEventsNotifiable.swift -------------------------------------------------------------------------------- /ios/Sources/RNIContentViewParentDelegate/RNIContentViewParentDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIContentViewParentDelegate/RNIContentViewParentDelegate.h -------------------------------------------------------------------------------- /ios/Sources/RNIContentViewParentDelegate/RNIContentViewParentDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIContentViewParentDelegate/RNIContentViewParentDelegate.swift -------------------------------------------------------------------------------- /ios/Sources/RNIDetachedView/RNIDetachedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIDetachedView/RNIDetachedView.h -------------------------------------------------------------------------------- /ios/Sources/RNIDetachedView/RNIDetachedView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIDetachedView/RNIDetachedView.mm -------------------------------------------------------------------------------- /ios/Sources/RNIDetachedView/RNIDetachedViewComponentDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIDetachedView/RNIDetachedViewComponentDescriptor.h -------------------------------------------------------------------------------- /ios/Sources/RNIDetachedView/RNIDetachedViewContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIDetachedView/RNIDetachedViewContent.swift -------------------------------------------------------------------------------- /ios/Sources/RNIDetachedView/RNIDetachedViewEventsNotifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIDetachedView/RNIDetachedViewEventsNotifiable.swift -------------------------------------------------------------------------------- /ios/Sources/RNIDetachedView/RNIDetachedViewManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIDetachedView/RNIDetachedViewManager.mm -------------------------------------------------------------------------------- /ios/Sources/RNIDetachedView/RNIDetachedViewShadowNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIDetachedView/RNIDetachedViewShadowNode.h -------------------------------------------------------------------------------- /ios/Sources/RNIDummyTestView/RNIDummyTestView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIDummyTestView/RNIDummyTestView.h -------------------------------------------------------------------------------- /ios/Sources/RNIDummyTestView/RNIDummyTestView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIDummyTestView/RNIDummyTestView.mm -------------------------------------------------------------------------------- /ios/Sources/RNIDummyTestView/RNIDummyTestViewComponentDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIDummyTestView/RNIDummyTestViewComponentDescriptor.h -------------------------------------------------------------------------------- /ios/Sources/RNIDummyTestView/RNIDummyTestViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIDummyTestView/RNIDummyTestViewDelegate.swift -------------------------------------------------------------------------------- /ios/Sources/RNIDummyTestView/RNIDummyTestViewManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIDummyTestView/RNIDummyTestViewManager.mm -------------------------------------------------------------------------------- /ios/Sources/RNIDummyTestView/RNIDummyTestViewModuleRequestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIDummyTestView/RNIDummyTestViewModuleRequestHandler.swift -------------------------------------------------------------------------------- /ios/Sources/RNIDummyTestView/RNIDummyTestViewShadowNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIDummyTestView/RNIDummyTestViewShadowNode.h -------------------------------------------------------------------------------- /ios/Sources/RNIError/RNIDefaultErrorCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIError/RNIDefaultErrorCode.swift -------------------------------------------------------------------------------- /ios/Sources/RNIError/RNIDefaultErrorCodes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIError/RNIDefaultErrorCodes.swift -------------------------------------------------------------------------------- /ios/Sources/RNIError/RNIError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIError/RNIError.swift -------------------------------------------------------------------------------- /ios/Sources/RNINavigationEventsReporting/RNINavigationEventsNotifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNINavigationEventsReporting/RNINavigationEventsNotifiable.swift -------------------------------------------------------------------------------- /ios/Sources/RNINavigationEventsReporting/RNINavigationEventsReportingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNINavigationEventsReporting/RNINavigationEventsReportingViewController.swift -------------------------------------------------------------------------------- /ios/Sources/RNIUtilitiesModule/RNIModuleCommandRequestHandling+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIUtilitiesModule/RNIModuleCommandRequestHandling+Helpers.swift -------------------------------------------------------------------------------- /ios/Sources/RNIUtilitiesModule/RNIModuleCommandRequestHandling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIUtilitiesModule/RNIModuleCommandRequestHandling.swift -------------------------------------------------------------------------------- /ios/Sources/RNIUtilitiesModule/RNIUtilitiesFollyConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIUtilitiesModule/RNIUtilitiesFollyConvert.h -------------------------------------------------------------------------------- /ios/Sources/RNIUtilitiesModule/RNIUtilitiesManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIUtilitiesModule/RNIUtilitiesManager.swift -------------------------------------------------------------------------------- /ios/Sources/RNIUtilitiesModule/RNIUtilitiesManagerEventsNotifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIUtilitiesModule/RNIUtilitiesManagerEventsNotifiable.swift -------------------------------------------------------------------------------- /ios/Sources/RNIUtilitiesModule/RNIUtilitiesModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIUtilitiesModule/RNIUtilitiesModule.h -------------------------------------------------------------------------------- /ios/Sources/RNIUtilitiesModule/RNIUtilitiesModule.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIUtilitiesModule/RNIUtilitiesModule.mm -------------------------------------------------------------------------------- /ios/Sources/RNIUtilitiesModule/RNIUtilitiesTurboModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIUtilitiesModule/RNIUtilitiesTurboModule.cpp -------------------------------------------------------------------------------- /ios/Sources/RNIUtilitiesModule/RNIUtilitiesTurboModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIUtilitiesModule/RNIUtilitiesTurboModule.h -------------------------------------------------------------------------------- /ios/Sources/RNIUtilitiesModule/RNIUtiltiesModule+RNIUtilitiesManagerEventsNotifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIUtilitiesModule/RNIUtiltiesModule+RNIUtilitiesManagerEventsNotifiable.swift -------------------------------------------------------------------------------- /ios/Sources/RNIUtilitiesModule/RNIViewCommandRequestHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIUtilitiesModule/RNIViewCommandRequestHandling.h -------------------------------------------------------------------------------- /ios/Sources/RNIViewLifecycle/RNIViewLifecycle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewLifecycle/RNIViewLifecycle.swift -------------------------------------------------------------------------------- /ios/Sources/RNIViewLifecycle/RNIViewLifecycleCommon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewLifecycle/RNIViewLifecycleCommon.swift -------------------------------------------------------------------------------- /ios/Sources/RNIViewLifecycle/RNIViewLifecycleFabric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewLifecycle/RNIViewLifecycleFabric.swift -------------------------------------------------------------------------------- /ios/Sources/RNIViewLifecycle/RNIViewLifecyclePaper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewLifecycle/RNIViewLifecyclePaper.swift -------------------------------------------------------------------------------- /ios/Sources/RNIViewPropDelegate/RNIViewPropDelegate+AnyObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewPropDelegate/RNIViewPropDelegate+AnyObject.swift -------------------------------------------------------------------------------- /ios/Sources/RNIViewPropDelegate/RNIViewPropDelegate+Default.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewPropDelegate/RNIViewPropDelegate+Default.swift -------------------------------------------------------------------------------- /ios/Sources/RNIViewPropDelegate/RNIViewPropDelegate+StringKeyPathMapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewPropDelegate/RNIViewPropDelegate+StringKeyPathMapping.swift -------------------------------------------------------------------------------- /ios/Sources/RNIViewPropDelegate/RNIViewPropDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewPropDelegate/RNIViewPropDelegate.swift -------------------------------------------------------------------------------- /ios/Sources/RNIViewPropDelegate/RNIViewPropHandling+Default.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewPropDelegate/RNIViewPropHandling+Default.swift -------------------------------------------------------------------------------- /ios/Sources/RNIViewPropDelegate/RNIViewPropHandling+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewPropDelegate/RNIViewPropHandling+Helpers.swift -------------------------------------------------------------------------------- /ios/Sources/RNIViewPropDelegate/RNIViewPropHandling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewPropDelegate/RNIViewPropHandling.swift -------------------------------------------------------------------------------- /ios/Sources/RNIViewPropDelegate/RNIViewPropUpdatesNotifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewPropDelegate/RNIViewPropUpdatesNotifiable.swift -------------------------------------------------------------------------------- /ios/Sources/RNIViewRegistry/RNIRegistrableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewRegistry/RNIRegistrableView.h -------------------------------------------------------------------------------- /ios/Sources/RNIViewRegistry/RNIViewRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewRegistry/RNIViewRegistry.h -------------------------------------------------------------------------------- /ios/Sources/RNIViewRegistry/RNIViewRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIViewRegistry/RNIViewRegistry.m -------------------------------------------------------------------------------- /ios/Sources/RNIWrapperView/RNIWrapperView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIWrapperView/RNIWrapperView.h -------------------------------------------------------------------------------- /ios/Sources/RNIWrapperView/RNIWrapperView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIWrapperView/RNIWrapperView.mm -------------------------------------------------------------------------------- /ios/Sources/RNIWrapperView/RNIWrapperViewComponentDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIWrapperView/RNIWrapperViewComponentDescriptor.h -------------------------------------------------------------------------------- /ios/Sources/RNIWrapperView/RNIWrapperViewContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIWrapperView/RNIWrapperViewContent.swift -------------------------------------------------------------------------------- /ios/Sources/RNIWrapperView/RNIWrapperViewManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIWrapperView/RNIWrapperViewManager.mm -------------------------------------------------------------------------------- /ios/Sources/RNIWrapperView/RNIWrapperViewShadowNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/RNIWrapperView/RNIWrapperViewShadowNode.h -------------------------------------------------------------------------------- /ios/Sources/SwiftCommon/RNIComponentViewUpdateMask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/SwiftCommon/RNIComponentViewUpdateMask.swift -------------------------------------------------------------------------------- /ios/Sources/SwiftCommon/RNILayoutMetrics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/SwiftCommon/RNILayoutMetrics.swift -------------------------------------------------------------------------------- /ios/Sources/SwiftCommon/RNINativeViewIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/SwiftCommon/RNINativeViewIdentifier.swift -------------------------------------------------------------------------------- /ios/Sources/SwiftCommon/RNIUtilitiesError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/SwiftCommon/RNIUtilitiesError.swift -------------------------------------------------------------------------------- /ios/Sources/SwiftCommon/RNIViewRegistryShared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/SwiftCommon/RNIViewRegistryShared.swift -------------------------------------------------------------------------------- /ios/Sources/Temp/AlignmentPositionConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Temp/AlignmentPositionConfig.swift -------------------------------------------------------------------------------- /ios/Sources/Temp/ViewLifecycleEventsNotifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Sources/Temp/ViewLifecycleEventsNotifiable.swift -------------------------------------------------------------------------------- /ios/Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/Swift.h -------------------------------------------------------------------------------- /ios/react-native-ios-utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/ios/react-native-ios-utilities.h -------------------------------------------------------------------------------- /log-test-build-ios-all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/log-test-build-ios-all.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/package.json -------------------------------------------------------------------------------- /react-native-ios-utilities.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/react-native-ios-utilities.podspec -------------------------------------------------------------------------------- /scripts/build-ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/scripts/build-ios.sh -------------------------------------------------------------------------------- /scripts/echo-all-example-ios-paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/scripts/echo-all-example-ios-paths.sh -------------------------------------------------------------------------------- /scripts/nuke-cache-js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/scripts/nuke-cache-js.sh -------------------------------------------------------------------------------- /scripts/nuke-example-pods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/scripts/nuke-example-pods.sh -------------------------------------------------------------------------------- /scripts/set-node-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/scripts/set-node-env.sh -------------------------------------------------------------------------------- /scripts/test-build-ios-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/scripts/test-build-ios-all.sh -------------------------------------------------------------------------------- /scripts/test-builds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/scripts/test-builds.sh -------------------------------------------------------------------------------- /scripts/update-version-xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/scripts/update-version-xcode.sh -------------------------------------------------------------------------------- /src/constants/LibEnv.ts: -------------------------------------------------------------------------------- 1 | 2 | export const IS_USING_NEW_ARCH = 3 | (global as any)?.nativeFabricUIManager != null; -------------------------------------------------------------------------------- /src/constants/UIBlurEffectStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/constants/UIBlurEffectStyles.ts -------------------------------------------------------------------------------- /src/constants/UIVibrancyEffectStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/constants/UIVibrancyEffectStyles.ts -------------------------------------------------------------------------------- /src/example_components/CardBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/example_components/CardBody.tsx -------------------------------------------------------------------------------- /src/example_components/CardButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/example_components/CardButton.tsx -------------------------------------------------------------------------------- /src/example_components/CardRowColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/example_components/CardRowColorPicker.tsx -------------------------------------------------------------------------------- /src/example_components/CardRowLabelDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/example_components/CardRowLabelDisplay.tsx -------------------------------------------------------------------------------- /src/example_components/CardRowStepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/example_components/CardRowStepper.tsx -------------------------------------------------------------------------------- /src/example_components/CardRowSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/example_components/CardRowSwitch.tsx -------------------------------------------------------------------------------- /src/example_components/CardRowTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/example_components/CardRowTextInput.tsx -------------------------------------------------------------------------------- /src/example_components/CardTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/example_components/CardTitle.tsx -------------------------------------------------------------------------------- /src/example_components/ExampleItemCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/example_components/ExampleItemCard.tsx -------------------------------------------------------------------------------- /src/example_components/ObjectPropertyDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/example_components/ObjectPropertyDisplay.tsx -------------------------------------------------------------------------------- /src/example_components/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/example_components/Spacer.tsx -------------------------------------------------------------------------------- /src/example_components/ViewShapes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/example_components/ViewShapes.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/misc/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/misc/Colors.ts -------------------------------------------------------------------------------- /src/misc/Helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/misc/Helpers.ts -------------------------------------------------------------------------------- /src/native_components/RNIDetachedView/DetachedSubviewsMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIDetachedView/DetachedSubviewsMap.ts -------------------------------------------------------------------------------- /src/native_components/RNIDetachedView/RNIDetachedNativeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIDetachedView/RNIDetachedNativeView.ts -------------------------------------------------------------------------------- /src/native_components/RNIDetachedView/RNIDetachedView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIDetachedView/RNIDetachedView.tsx -------------------------------------------------------------------------------- /src/native_components/RNIDetachedView/RNIDetachedViewContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIDetachedView/RNIDetachedViewContent.tsx -------------------------------------------------------------------------------- /src/native_components/RNIDetachedView/RNIDetachedViewContentTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIDetachedView/RNIDetachedViewContentTypes.tsx -------------------------------------------------------------------------------- /src/native_components/RNIDetachedView/RNIDetachedViewEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIDetachedView/RNIDetachedViewEvents.ts -------------------------------------------------------------------------------- /src/native_components/RNIDetachedView/RNIDetachedViewNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIDetachedView/RNIDetachedViewNativeComponent.ts -------------------------------------------------------------------------------- /src/native_components/RNIDetachedView/RNIDetachedViewTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIDetachedView/RNIDetachedViewTypes.ts -------------------------------------------------------------------------------- /src/native_components/RNIDetachedView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIDetachedView/index.ts -------------------------------------------------------------------------------- /src/native_components/RNIDummyTestView/RNIDummyTestNativeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIDummyTestView/RNIDummyTestNativeView.ts -------------------------------------------------------------------------------- /src/native_components/RNIDummyTestView/RNIDummyTestViewModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIDummyTestView/RNIDummyTestViewModule.ts -------------------------------------------------------------------------------- /src/native_components/RNIDummyTestView/RNIDummyTestViewNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIDummyTestView/RNIDummyTestViewNativeComponent.ts -------------------------------------------------------------------------------- /src/native_components/RNIDummyTestView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIDummyTestView/index.ts -------------------------------------------------------------------------------- /src/native_components/RNIWrapperView/RNIWrapperNativeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIWrapperView/RNIWrapperNativeView.ts -------------------------------------------------------------------------------- /src/native_components/RNIWrapperView/RNIWrapperView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIWrapperView/RNIWrapperView.tsx -------------------------------------------------------------------------------- /src/native_components/RNIWrapperView/RNIWrapperViewNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIWrapperView/RNIWrapperViewNativeComponent.ts -------------------------------------------------------------------------------- /src/native_components/RNIWrapperView/RNIWrapperViewTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIWrapperView/RNIWrapperViewTypes.ts -------------------------------------------------------------------------------- /src/native_components/RNIWrapperView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_components/RNIWrapperView/index.ts -------------------------------------------------------------------------------- /src/native_modules/RNIUtilitiesModule/NativeRNIUtilitiesModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_modules/RNIUtilitiesModule/NativeRNIUtilitiesModule.ts -------------------------------------------------------------------------------- /src/native_modules/RNIUtilitiesModule/RNIUtilitiesModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_modules/RNIUtilitiesModule/RNIUtilitiesModule.ts -------------------------------------------------------------------------------- /src/native_modules/RNIUtilitiesModule/RNIUtilitiesModuleTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_modules/RNIUtilitiesModule/RNIUtilitiesModuleTypes.ts -------------------------------------------------------------------------------- /src/native_modules/RNIUtilitiesModule/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/native_modules/RNIUtilitiesModule/index.ts -------------------------------------------------------------------------------- /src/types/ComputableLayout/ComputableLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ComputableLayout/ComputableLayout.ts -------------------------------------------------------------------------------- /src/types/ComputableLayout/ComputableLayoutOffsetOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ComputableLayout/ComputableLayoutOffsetOperation.ts -------------------------------------------------------------------------------- /src/types/ComputableLayout/ComputableLayoutValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ComputableLayout/ComputableLayoutValue.ts -------------------------------------------------------------------------------- /src/types/ComputableLayout/ComputableLayoutValueEvaluableCondition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ComputableLayout/ComputableLayoutValueEvaluableCondition.ts -------------------------------------------------------------------------------- /src/types/ComputableLayout/ComputableLayoutValueMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ComputableLayout/ComputableLayoutValueMode.ts -------------------------------------------------------------------------------- /src/types/ComputableLayout/ComputableLayoutValuePercentTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ComputableLayout/ComputableLayoutValuePercentTarget.ts -------------------------------------------------------------------------------- /src/types/ComputableLayout/EvaluableCondition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ComputableLayout/EvaluableCondition.ts -------------------------------------------------------------------------------- /src/types/ComputableLayout/EvaluableConditionContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ComputableLayout/EvaluableConditionContext.ts -------------------------------------------------------------------------------- /src/types/ComputableLayout/HorizontalAlignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ComputableLayout/HorizontalAlignment.ts -------------------------------------------------------------------------------- /src/types/ComputableLayout/NumericLogicalExpression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ComputableLayout/NumericLogicalExpression.ts -------------------------------------------------------------------------------- /src/types/ComputableLayout/StringComparisonMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ComputableLayout/StringComparisonMode.ts -------------------------------------------------------------------------------- /src/types/ComputableLayout/VerticalAlignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ComputableLayout/VerticalAlignment.ts -------------------------------------------------------------------------------- /src/types/ComputableLayout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ComputableLayout/index.ts -------------------------------------------------------------------------------- /src/types/DGSwiftUtilities/AlignmentPositionConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/DGSwiftUtilities/AlignmentPositionConfig.ts -------------------------------------------------------------------------------- /src/types/DGSwiftUtilities/Angle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/DGSwiftUtilities/Angle.ts -------------------------------------------------------------------------------- /src/types/DGSwiftUtilities/AnimationConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/DGSwiftUtilities/AnimationConfig.ts -------------------------------------------------------------------------------- /src/types/DGSwiftUtilities/BaseLayerKeyframeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/DGSwiftUtilities/BaseLayerKeyframeConfig.ts -------------------------------------------------------------------------------- /src/types/DGSwiftUtilities/BaseViewKeyframeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/DGSwiftUtilities/BaseViewKeyframeConfig.ts -------------------------------------------------------------------------------- /src/types/DGSwiftUtilities/BasicViewKeyframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/DGSwiftUtilities/BasicViewKeyframe.ts -------------------------------------------------------------------------------- /src/types/DGSwiftUtilities/GenericViewKeyframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/DGSwiftUtilities/GenericViewKeyframe.ts -------------------------------------------------------------------------------- /src/types/DGSwiftUtilities/HorizontalAlignmentPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/DGSwiftUtilities/HorizontalAlignmentPosition.ts -------------------------------------------------------------------------------- /src/types/DGSwiftUtilities/PointPreset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/DGSwiftUtilities/PointPreset.ts -------------------------------------------------------------------------------- /src/types/DGSwiftUtilities/Transform3D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/DGSwiftUtilities/Transform3D.ts -------------------------------------------------------------------------------- /src/types/DGSwiftUtilities/VerticalAlignmentPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/DGSwiftUtilities/VerticalAlignmentPosition.ts -------------------------------------------------------------------------------- /src/types/DGSwiftUtilities/VerticalAnchorPositionMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/DGSwiftUtilities/VerticalAnchorPositionMode.ts -------------------------------------------------------------------------------- /src/types/DGSwiftUtilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/DGSwiftUtilities/index.ts -------------------------------------------------------------------------------- /src/types/ImageConfig/ImageConfigGradient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ImageConfig/ImageConfigGradient.ts -------------------------------------------------------------------------------- /src/types/ImageConfig/index.ts: -------------------------------------------------------------------------------- 1 | export type * from './ImageConfigGradient'; 2 | -------------------------------------------------------------------------------- /src/types/ImageItemConfig/ImageGradientConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ImageItemConfig/ImageGradientConfig.ts -------------------------------------------------------------------------------- /src/types/ImageItemConfig/ImageItemConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ImageItemConfig/ImageItemConfig.ts -------------------------------------------------------------------------------- /src/types/ImageItemConfig/ImageLoadingConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ImageItemConfig/ImageLoadingConfig.ts -------------------------------------------------------------------------------- /src/types/ImageItemConfig/ImageMiscTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ImageItemConfig/ImageMiscTypes.ts -------------------------------------------------------------------------------- /src/types/ImageItemConfig/ImageOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ImageItemConfig/ImageOptions.ts -------------------------------------------------------------------------------- /src/types/ImageItemConfig/ImageRectConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ImageItemConfig/ImageRectConfig.ts -------------------------------------------------------------------------------- /src/types/ImageItemConfig/ImageSystemConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ImageItemConfig/ImageSystemConfig.ts -------------------------------------------------------------------------------- /src/types/ImageItemConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ImageItemConfig/index.ts -------------------------------------------------------------------------------- /src/types/MiscTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/MiscTypes.ts -------------------------------------------------------------------------------- /src/types/NativeError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/NativeError.ts -------------------------------------------------------------------------------- /src/types/NativeTypes/CAGradientLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/NativeTypes/CAGradientLayer.ts -------------------------------------------------------------------------------- /src/types/NativeTypes/CALayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/NativeTypes/CALayer.ts -------------------------------------------------------------------------------- /src/types/NativeTypes/CoreGraphicsTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/NativeTypes/CoreGraphicsTypes.ts -------------------------------------------------------------------------------- /src/types/NativeTypes/UIDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/NativeTypes/UIDevice.ts -------------------------------------------------------------------------------- /src/types/NativeTypes/UIFont.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/NativeTypes/UIFont.ts -------------------------------------------------------------------------------- /src/types/NativeTypes/UIGeometry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/NativeTypes/UIGeometry.ts -------------------------------------------------------------------------------- /src/types/NativeTypes/UIImageSymbolConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/NativeTypes/UIImageSymbolConfiguration.ts -------------------------------------------------------------------------------- /src/types/NativeTypes/UIInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/NativeTypes/UIInterface.ts -------------------------------------------------------------------------------- /src/types/NativeTypes/UIOrientation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/NativeTypes/UIOrientation.ts -------------------------------------------------------------------------------- /src/types/NativeTypes/UIViewAnimating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/NativeTypes/UIViewAnimating.ts -------------------------------------------------------------------------------- /src/types/NativeTypes/UIViewPropertyAnimator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/NativeTypes/UIViewPropertyAnimator.ts -------------------------------------------------------------------------------- /src/types/NativeTypes/UIViewTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/NativeTypes/UIViewTypes.ts -------------------------------------------------------------------------------- /src/types/NativeTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/NativeTypes/index.ts -------------------------------------------------------------------------------- /src/types/ReactNativeUtilityTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/ReactNativeUtilityTypes.ts -------------------------------------------------------------------------------- /src/types/SharedAnimationEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/SharedAnimationEvents.ts -------------------------------------------------------------------------------- /src/types/SharedPropTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/SharedPropTypes.ts -------------------------------------------------------------------------------- /src/types/SharedStateTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/SharedStateTypes.ts -------------------------------------------------------------------------------- /src/types/SharedViewEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/SharedViewEvents.ts -------------------------------------------------------------------------------- /src/types/SharedViewEventsInternal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/SharedViewEventsInternal.ts -------------------------------------------------------------------------------- /src/types/SharedViewPropsInternal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/SharedViewPropsInternal.ts -------------------------------------------------------------------------------- /src/types/UtilityTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/src/types/UtilityTypes.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-utilities/HEAD/yarn.lock --------------------------------------------------------------------------------