├── .cursorrules ├── .gitignore ├── .vscode └── launch.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── demo ├── demo.gif └── demo.mp4 ├── example └── SpotlightGuideExample │ ├── .bundle │ └── config │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── App.tsx │ ├── 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 │ │ │ │ └── spotlightguideexample │ │ │ │ ├── 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 │ ├── Podfile │ ├── Podfile.lock │ ├── SpotlightGuideExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SpotlightGuideExample.xcscheme │ ├── SpotlightGuideExample.xcworkspace │ │ └── contents.xcworkspacedata │ ├── SpotlightGuideExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── PrivacyInfo.xcprivacy │ │ └── main.m │ └── SpotlightGuideExampleTests │ │ ├── Info.plist │ │ └── SpotlightGuideExampleTests.m │ ├── jest.config.js │ ├── metro.config.js │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── yarn.lock ├── index.d.ts ├── index.js ├── index.ts ├── package.json ├── src ├── SpotlightGuide.d.ts ├── SpotlightGuide.js ├── SpotlightGuide.tsx ├── components │ └── SpotlightGuide │ │ ├── SpotlightContent.d.ts │ │ ├── SpotlightContent.js │ │ ├── SpotlightContent.tsx │ │ ├── SpotlightGuide.d.ts │ │ ├── SpotlightGuide.js │ │ ├── SpotlightGuide.tsx │ │ ├── SpotlightOverlay.d.ts │ │ ├── SpotlightOverlay.js │ │ ├── SpotlightOverlay.tsx │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.ts │ │ ├── styles.d.ts │ │ ├── styles.js │ │ └── styles.ts ├── constants │ ├── index.d.ts │ ├── index.js │ └── index.ts ├── index.d.ts ├── index.js ├── index.ts ├── types │ ├── index.d.ts │ ├── index.js │ ├── index.ts │ ├── spotlight.types.d.ts │ ├── spotlight.types.js │ └── spotlight.types.ts └── utils │ ├── spotlight.utils.d.ts │ ├── spotlight.utils.js │ └── spotlight.utils.ts └── tsconfig.json /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/.cursorrules -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/README.md -------------------------------------------------------------------------------- /demo/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/demo/demo.gif -------------------------------------------------------------------------------- /demo/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/demo/demo.mp4 -------------------------------------------------------------------------------- /example/SpotlightGuideExample/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/.bundle/config -------------------------------------------------------------------------------- /example/SpotlightGuideExample/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /example/SpotlightGuideExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/.gitignore -------------------------------------------------------------------------------- /example/SpotlightGuideExample/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/.prettierrc.js -------------------------------------------------------------------------------- /example/SpotlightGuideExample/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/SpotlightGuideExample/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/App.tsx -------------------------------------------------------------------------------- /example/SpotlightGuideExample/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/Gemfile -------------------------------------------------------------------------------- /example/SpotlightGuideExample/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/Gemfile.lock -------------------------------------------------------------------------------- /example/SpotlightGuideExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/README.md -------------------------------------------------------------------------------- /example/SpotlightGuideExample/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/__tests__/App.test.tsx -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/build.gradle -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/debug.keystore -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/java/com/spotlightguideexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/java/com/spotlightguideexample/MainActivity.kt -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/java/com/spotlightguideexample/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/java/com/spotlightguideexample/MainApplication.kt -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/build.gradle -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/gradle.properties -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/gradlew -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/gradlew.bat -------------------------------------------------------------------------------- /example/SpotlightGuideExample/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/android/settings.gradle -------------------------------------------------------------------------------- /example/SpotlightGuideExample/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/app.json -------------------------------------------------------------------------------- /example/SpotlightGuideExample/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/babel.config.js -------------------------------------------------------------------------------- /example/SpotlightGuideExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/index.js -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/.xcode.env -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/Podfile -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/Podfile.lock -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/SpotlightGuideExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/SpotlightGuideExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/SpotlightGuideExample.xcodeproj/xcshareddata/xcschemes/SpotlightGuideExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/SpotlightGuideExample.xcodeproj/xcshareddata/xcschemes/SpotlightGuideExample.xcscheme -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/SpotlightGuideExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/SpotlightGuideExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/SpotlightGuideExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/SpotlightGuideExample/AppDelegate.h -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/SpotlightGuideExample/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/SpotlightGuideExample/AppDelegate.mm -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/SpotlightGuideExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/SpotlightGuideExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/SpotlightGuideExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/SpotlightGuideExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/SpotlightGuideExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/SpotlightGuideExample/Info.plist -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/SpotlightGuideExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/SpotlightGuideExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/SpotlightGuideExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/SpotlightGuideExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/SpotlightGuideExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/SpotlightGuideExample/main.m -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/SpotlightGuideExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/SpotlightGuideExampleTests/Info.plist -------------------------------------------------------------------------------- /example/SpotlightGuideExample/ios/SpotlightGuideExampleTests/SpotlightGuideExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/ios/SpotlightGuideExampleTests/SpotlightGuideExampleTests.m -------------------------------------------------------------------------------- /example/SpotlightGuideExample/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /example/SpotlightGuideExample/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/metro.config.js -------------------------------------------------------------------------------- /example/SpotlightGuideExample/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/package-lock.json -------------------------------------------------------------------------------- /example/SpotlightGuideExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/package.json -------------------------------------------------------------------------------- /example/SpotlightGuideExample/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/tsconfig.json -------------------------------------------------------------------------------- /example/SpotlightGuideExample/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/example/SpotlightGuideExample/yarn.lock -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./src"; 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/index.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- 1 | export * from "./src"; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/package.json -------------------------------------------------------------------------------- /src/SpotlightGuide.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/SpotlightGuide.d.ts -------------------------------------------------------------------------------- /src/SpotlightGuide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/SpotlightGuide.js -------------------------------------------------------------------------------- /src/SpotlightGuide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/SpotlightGuide.tsx -------------------------------------------------------------------------------- /src/components/SpotlightGuide/SpotlightContent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/SpotlightContent.d.ts -------------------------------------------------------------------------------- /src/components/SpotlightGuide/SpotlightContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/SpotlightContent.js -------------------------------------------------------------------------------- /src/components/SpotlightGuide/SpotlightContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/SpotlightContent.tsx -------------------------------------------------------------------------------- /src/components/SpotlightGuide/SpotlightGuide.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/SpotlightGuide.d.ts -------------------------------------------------------------------------------- /src/components/SpotlightGuide/SpotlightGuide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/SpotlightGuide.js -------------------------------------------------------------------------------- /src/components/SpotlightGuide/SpotlightGuide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/SpotlightGuide.tsx -------------------------------------------------------------------------------- /src/components/SpotlightGuide/SpotlightOverlay.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/SpotlightOverlay.d.ts -------------------------------------------------------------------------------- /src/components/SpotlightGuide/SpotlightOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/SpotlightOverlay.js -------------------------------------------------------------------------------- /src/components/SpotlightGuide/SpotlightOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/SpotlightOverlay.tsx -------------------------------------------------------------------------------- /src/components/SpotlightGuide/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/index.d.ts -------------------------------------------------------------------------------- /src/components/SpotlightGuide/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/index.js -------------------------------------------------------------------------------- /src/components/SpotlightGuide/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/index.ts -------------------------------------------------------------------------------- /src/components/SpotlightGuide/styles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/styles.d.ts -------------------------------------------------------------------------------- /src/components/SpotlightGuide/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/styles.js -------------------------------------------------------------------------------- /src/components/SpotlightGuide/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/components/SpotlightGuide/styles.ts -------------------------------------------------------------------------------- /src/constants/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/constants/index.d.ts -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /src/types/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/spotlight.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/types/spotlight.types.d.ts -------------------------------------------------------------------------------- /src/types/spotlight.types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/types/spotlight.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/types/spotlight.types.ts -------------------------------------------------------------------------------- /src/utils/spotlight.utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/utils/spotlight.utils.d.ts -------------------------------------------------------------------------------- /src/utils/spotlight.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/utils/spotlight.utils.js -------------------------------------------------------------------------------- /src/utils/spotlight.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/src/utils/spotlight.utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurkanKayaDev/react-native-spotlight-guide/HEAD/tsconfig.json --------------------------------------------------------------------------------