├── .gitignore ├── .npmignore ├── AppIntro.js ├── Example ├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── AppIntro.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── img │ ├── 1 │ │ ├── c1.png │ │ ├── c2.png │ │ ├── c3.png │ │ ├── c4.png │ │ └── c5.png │ ├── 2 │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ ├── 3 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ └── 4 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png ├── index.android.js ├── index.ios.js ├── ios │ ├── Example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Example.xcscheme │ ├── Example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── ExampleTests │ │ ├── ExampleTests.m │ │ └── Info.plist └── package.json ├── LICENSE ├── README.md ├── assets └── sample-android.gif ├── components ├── DoneButton.android.js ├── DoneButton.ios.js ├── Dots.js ├── SkipButton.android.js └── SkipButton.ios.js ├── package.json └── package.json.old /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | +Example 2 | +assets 3 | -------------------------------------------------------------------------------- /AppIntro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/AppIntro.js -------------------------------------------------------------------------------- /Example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/.buckconfig -------------------------------------------------------------------------------- /Example/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/.eslintrc.js -------------------------------------------------------------------------------- /Example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/.flowconfig -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/.gitignore -------------------------------------------------------------------------------- /Example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Example/AppIntro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/AppIntro.js -------------------------------------------------------------------------------- /Example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/app/BUCK -------------------------------------------------------------------------------- /Example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/app/build.gradle -------------------------------------------------------------------------------- /Example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/app/src/main/java/com/example/MainActivity.java -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/build.gradle -------------------------------------------------------------------------------- /Example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/gradle.properties -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/gradlew -------------------------------------------------------------------------------- /Example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/gradlew.bat -------------------------------------------------------------------------------- /Example/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/keystores/BUCK -------------------------------------------------------------------------------- /Example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /Example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Example' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /Example/img/1/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/1/c1.png -------------------------------------------------------------------------------- /Example/img/1/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/1/c2.png -------------------------------------------------------------------------------- /Example/img/1/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/1/c3.png -------------------------------------------------------------------------------- /Example/img/1/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/1/c4.png -------------------------------------------------------------------------------- /Example/img/1/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/1/c5.png -------------------------------------------------------------------------------- /Example/img/2/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/2/1.png -------------------------------------------------------------------------------- /Example/img/2/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/2/2.png -------------------------------------------------------------------------------- /Example/img/2/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/2/3.png -------------------------------------------------------------------------------- /Example/img/3/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/3/1.png -------------------------------------------------------------------------------- /Example/img/3/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/3/2.png -------------------------------------------------------------------------------- /Example/img/3/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/3/3.png -------------------------------------------------------------------------------- /Example/img/3/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/3/4.png -------------------------------------------------------------------------------- /Example/img/3/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/3/5.png -------------------------------------------------------------------------------- /Example/img/4/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/4/1.png -------------------------------------------------------------------------------- /Example/img/4/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/4/2.png -------------------------------------------------------------------------------- /Example/img/4/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/4/3.png -------------------------------------------------------------------------------- /Example/img/4/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/img/4/4.png -------------------------------------------------------------------------------- /Example/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/index.android.js -------------------------------------------------------------------------------- /Example/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/index.ios.js -------------------------------------------------------------------------------- /Example/ios/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/ios/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/ios/Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/ios/Example/AppDelegate.h -------------------------------------------------------------------------------- /Example/ios/Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/ios/Example/AppDelegate.m -------------------------------------------------------------------------------- /Example/ios/Example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/ios/Example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ios/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/ios/Example/Info.plist -------------------------------------------------------------------------------- /Example/ios/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/ios/Example/main.m -------------------------------------------------------------------------------- /Example/ios/ExampleTests/ExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/ios/ExampleTests/ExampleTests.m -------------------------------------------------------------------------------- /Example/ios/ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/ios/ExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/Example/package.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/README.md -------------------------------------------------------------------------------- /assets/sample-android.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/assets/sample-android.gif -------------------------------------------------------------------------------- /components/DoneButton.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/components/DoneButton.android.js -------------------------------------------------------------------------------- /components/DoneButton.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/components/DoneButton.ios.js -------------------------------------------------------------------------------- /components/Dots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/components/Dots.js -------------------------------------------------------------------------------- /components/SkipButton.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/components/SkipButton.android.js -------------------------------------------------------------------------------- /components/SkipButton.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/components/SkipButton.ios.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/package.json -------------------------------------------------------------------------------- /package.json.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sh1n1x/react-native-app-intro/HEAD/package.json.old --------------------------------------------------------------------------------