├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── build-ios.yml ├── .gitignore ├── .yarnrc ├── CONTRIBUTING.md ├── LICENSE ├── README-old.md ├── README.md ├── android ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── reactnativeiospopover │ ├── IosPopoverPackage.kt │ └── IosPopoverViewManager.kt ├── assets ├── example-screenshots │ ├── PopoverViewExample01.png │ ├── PopoverViewExample02.png │ ├── PopoverViewExample03.png │ ├── PopoverViewExample04.png │ ├── PopoverViewExample05.png │ ├── PopoverViewExample06.png │ ├── PopoverViewExample07.png │ └── PopoverViewExample08.png └── popover-view-gifs │ ├── PopoverView-Example-1-2-3-4.gif │ └── PopoverView-Example-5-6-7-8.gif ├── babel.config.js ├── docs └── TODO.md ├── example ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── reactnativeiospopover │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── reactnativeiospopover │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── File.swift │ ├── IosPopoverExample-Bridging-Header.h │ ├── IosPopoverExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── IosPopoverExample.xcscheme │ ├── IosPopoverExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── IosPopoverExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── Podfile │ └── Podfile.lock ├── metro.config.js ├── package.json ├── src │ ├── App.tsx │ ├── App_old.tsx │ ├── App_old2.tsx │ ├── components │ │ ├── Card │ │ │ └── CardButton.tsx │ │ └── ExampleItemCard.tsx │ ├── constants │ │ ├── Colors.ts │ │ └── SharedEnv.ts │ ├── examples │ │ ├── DebugControls.tsx │ │ ├── PopoverViewExample01.tsx │ │ ├── PopoverViewExample02.tsx │ │ ├── PopoverViewExample03.tsx │ │ ├── PopoverViewExample04.tsx │ │ ├── PopoverViewExample05.tsx │ │ ├── PopoverViewExample06.tsx │ │ ├── PopoverViewExample07.tsx │ │ ├── PopoverViewExample08.tsx │ │ └── SharedExampleTypes.ts │ └── screens │ │ ├── HomeScreen.tsx │ │ └── TestScreen01.tsx └── yarn.lock ├── ios ├── IosPopover.xcodeproj │ └── project.pbxproj └── Src │ ├── Extensions │ └── UIPopoverArrowDirection+Helpers.swift │ ├── IosPopover-Bridging-Header.h │ ├── RNIPopover │ ├── RNIPopoverError.swift │ └── RNIPopoverSize.swift │ └── RNIPopoverView │ ├── RNIPopoverView.swift │ ├── RNIPopoverViewController.swift │ ├── RNIPopoverViewManager.m │ ├── RNIPopoverViewManager.swift │ ├── RNIPopoverViewModule.m │ └── RNIPopoverViewModule.swift ├── package.json ├── react-native-ios-popover.podspec ├── react-native.config.js ├── scripts ├── bootstrap.js └── utility.js ├── src ├── components │ └── PopoverView │ │ ├── PopoverView.tsx │ │ ├── PopoverViewTypes.ts │ │ └── index.ts ├── constants │ ├── LibEnv.ts │ └── RNIPopoverErrorCodes.ts ├── functions │ └── helpers.ts ├── index.ts ├── native_components │ └── RNIPopoverView.ts ├── native_modules │ └── RNIPopoverViewModule.ts └── types │ ├── PopoverRelatedTypes.ts │ ├── PopoverViewEvents.ts │ └── RNIPopoverError.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/.github/workflows/build-ios.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/.yarnrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/LICENSE -------------------------------------------------------------------------------- /README-old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/README-old.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/reactnativeiospopover/IosPopoverPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/android/src/main/java/com/reactnativeiospopover/IosPopoverPackage.kt -------------------------------------------------------------------------------- /android/src/main/java/com/reactnativeiospopover/IosPopoverViewManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/android/src/main/java/com/reactnativeiospopover/IosPopoverViewManager.kt -------------------------------------------------------------------------------- /assets/example-screenshots/PopoverViewExample01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/assets/example-screenshots/PopoverViewExample01.png -------------------------------------------------------------------------------- /assets/example-screenshots/PopoverViewExample02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/assets/example-screenshots/PopoverViewExample02.png -------------------------------------------------------------------------------- /assets/example-screenshots/PopoverViewExample03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/assets/example-screenshots/PopoverViewExample03.png -------------------------------------------------------------------------------- /assets/example-screenshots/PopoverViewExample04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/assets/example-screenshots/PopoverViewExample04.png -------------------------------------------------------------------------------- /assets/example-screenshots/PopoverViewExample05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/assets/example-screenshots/PopoverViewExample05.png -------------------------------------------------------------------------------- /assets/example-screenshots/PopoverViewExample06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/assets/example-screenshots/PopoverViewExample06.png -------------------------------------------------------------------------------- /assets/example-screenshots/PopoverViewExample07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/assets/example-screenshots/PopoverViewExample07.png -------------------------------------------------------------------------------- /assets/example-screenshots/PopoverViewExample08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/assets/example-screenshots/PopoverViewExample08.png -------------------------------------------------------------------------------- /assets/popover-view-gifs/PopoverView-Example-1-2-3-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/assets/popover-view-gifs/PopoverView-Example-1-2-3-4.gif -------------------------------------------------------------------------------- /assets/popover-view-gifs/PopoverView-Example-5-6-7-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/assets/popover-view-gifs/PopoverView-Example-5-6-7-8.gif -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/docs/TODO.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/example/reactnativeiospopover/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/debug/java/com/example/reactnativeiospopover/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/reactnativeiospopover/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/java/com/example/reactnativeiospopover/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/reactnativeiospopover/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/java/com/example/reactnativeiospopover/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/IosPopoverExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/IosPopoverExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/IosPopoverExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/IosPopoverExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/IosPopoverExample.xcodeproj/xcshareddata/xcschemes/IosPopoverExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/IosPopoverExample.xcodeproj/xcshareddata/xcschemes/IosPopoverExample.xcscheme -------------------------------------------------------------------------------- /example/ios/IosPopoverExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/IosPopoverExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/IosPopoverExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/IosPopoverExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/IosPopoverExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/IosPopoverExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/IosPopoverExample/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/IosPopoverExample/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/IosPopoverExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/IosPopoverExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/IosPopoverExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/IosPopoverExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/IosPopoverExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/IosPopoverExample/Info.plist -------------------------------------------------------------------------------- /example/ios/IosPopoverExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/IosPopoverExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/IosPopoverExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/IosPopoverExample/main.m -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/App_old.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/App_old.tsx -------------------------------------------------------------------------------- /example/src/App_old2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/App_old2.tsx -------------------------------------------------------------------------------- /example/src/components/Card/CardButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/components/Card/CardButton.tsx -------------------------------------------------------------------------------- /example/src/components/ExampleItemCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/components/ExampleItemCard.tsx -------------------------------------------------------------------------------- /example/src/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/constants/Colors.ts -------------------------------------------------------------------------------- /example/src/constants/SharedEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/constants/SharedEnv.ts -------------------------------------------------------------------------------- /example/src/examples/DebugControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/examples/DebugControls.tsx -------------------------------------------------------------------------------- /example/src/examples/PopoverViewExample01.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/examples/PopoverViewExample01.tsx -------------------------------------------------------------------------------- /example/src/examples/PopoverViewExample02.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/examples/PopoverViewExample02.tsx -------------------------------------------------------------------------------- /example/src/examples/PopoverViewExample03.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/examples/PopoverViewExample03.tsx -------------------------------------------------------------------------------- /example/src/examples/PopoverViewExample04.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/examples/PopoverViewExample04.tsx -------------------------------------------------------------------------------- /example/src/examples/PopoverViewExample05.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/examples/PopoverViewExample05.tsx -------------------------------------------------------------------------------- /example/src/examples/PopoverViewExample06.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/examples/PopoverViewExample06.tsx -------------------------------------------------------------------------------- /example/src/examples/PopoverViewExample07.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/examples/PopoverViewExample07.tsx -------------------------------------------------------------------------------- /example/src/examples/PopoverViewExample08.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/examples/PopoverViewExample08.tsx -------------------------------------------------------------------------------- /example/src/examples/SharedExampleTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/examples/SharedExampleTypes.ts -------------------------------------------------------------------------------- /example/src/screens/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/screens/HomeScreen.tsx -------------------------------------------------------------------------------- /example/src/screens/TestScreen01.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/src/screens/TestScreen01.tsx -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /ios/IosPopover.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/ios/IosPopover.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Src/Extensions/UIPopoverArrowDirection+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/ios/Src/Extensions/UIPopoverArrowDirection+Helpers.swift -------------------------------------------------------------------------------- /ios/Src/IosPopover-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/ios/Src/IosPopover-Bridging-Header.h -------------------------------------------------------------------------------- /ios/Src/RNIPopover/RNIPopoverError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/ios/Src/RNIPopover/RNIPopoverError.swift -------------------------------------------------------------------------------- /ios/Src/RNIPopover/RNIPopoverSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/ios/Src/RNIPopover/RNIPopoverSize.swift -------------------------------------------------------------------------------- /ios/Src/RNIPopoverView/RNIPopoverView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/ios/Src/RNIPopoverView/RNIPopoverView.swift -------------------------------------------------------------------------------- /ios/Src/RNIPopoverView/RNIPopoverViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/ios/Src/RNIPopoverView/RNIPopoverViewController.swift -------------------------------------------------------------------------------- /ios/Src/RNIPopoverView/RNIPopoverViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/ios/Src/RNIPopoverView/RNIPopoverViewManager.m -------------------------------------------------------------------------------- /ios/Src/RNIPopoverView/RNIPopoverViewManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/ios/Src/RNIPopoverView/RNIPopoverViewManager.swift -------------------------------------------------------------------------------- /ios/Src/RNIPopoverView/RNIPopoverViewModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/ios/Src/RNIPopoverView/RNIPopoverViewModule.m -------------------------------------------------------------------------------- /ios/Src/RNIPopoverView/RNIPopoverViewModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/ios/Src/RNIPopoverView/RNIPopoverViewModule.swift -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/package.json -------------------------------------------------------------------------------- /react-native-ios-popover.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/react-native-ios-popover.podspec -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/react-native.config.js -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /scripts/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/scripts/utility.js -------------------------------------------------------------------------------- /src/components/PopoverView/PopoverView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/src/components/PopoverView/PopoverView.tsx -------------------------------------------------------------------------------- /src/components/PopoverView/PopoverViewTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/src/components/PopoverView/PopoverViewTypes.ts -------------------------------------------------------------------------------- /src/components/PopoverView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/src/components/PopoverView/index.ts -------------------------------------------------------------------------------- /src/constants/LibEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/src/constants/LibEnv.ts -------------------------------------------------------------------------------- /src/constants/RNIPopoverErrorCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/src/constants/RNIPopoverErrorCodes.ts -------------------------------------------------------------------------------- /src/functions/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/src/functions/helpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/native_components/RNIPopoverView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/src/native_components/RNIPopoverView.ts -------------------------------------------------------------------------------- /src/native_modules/RNIPopoverViewModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/src/native_modules/RNIPopoverViewModule.ts -------------------------------------------------------------------------------- /src/types/PopoverRelatedTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/src/types/PopoverRelatedTypes.ts -------------------------------------------------------------------------------- /src/types/PopoverViewEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/src/types/PopoverViewEvents.ts -------------------------------------------------------------------------------- /src/types/RNIPopoverError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/src/types/RNIPopoverError.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicstop/react-native-ios-popover/HEAD/yarn.lock --------------------------------------------------------------------------------