├── .gitignore ├── Example ├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── flag.png │ │ │ ├── headerbg.jpg │ │ │ └── headericon.png │ │ │ ├── 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 ├── assets │ └── background.png ├── babel.config.js ├── index.js ├── ios │ ├── Example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Example.xcscheme │ ├── Example.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── ExampleTests │ │ ├── ExampleTests.m │ │ └── Info.plist │ └── Podfile ├── metro.config.js └── package.json ├── LICENSE ├── README.md ├── RNStyledDialogs.js ├── android ├── .classpath ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── ui │ └── stylesdialogs │ ├── RNStyledDialogsModule.java │ └── RNStyledDialogsPackage.java ├── assets ├── setup.gif ├── swift-error.gif └── swift-error.png ├── ios ├── RNStyledDialogs.h ├── RNStyledDialogs.m ├── RNStyledDialogs.podspec ├── RNStyledDialogs.xcodeproj │ └── project.pbxproj └── RNStyledDialogs.xcworkspace │ └── contents.xcworkspacedata └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/.buckconfig -------------------------------------------------------------------------------- /Example/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /Example/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /Example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/.flowconfig -------------------------------------------------------------------------------- /Example/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/.gitattributes -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/.gitignore -------------------------------------------------------------------------------- /Example/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/.prettierrc.js -------------------------------------------------------------------------------- /Example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/App.js -------------------------------------------------------------------------------- /Example/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/__tests__/App-test.js -------------------------------------------------------------------------------- /Example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/app/BUCK -------------------------------------------------------------------------------- /Example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/app/build.gradle -------------------------------------------------------------------------------- /Example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /Example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/app/debug.keystore -------------------------------------------------------------------------------- /Example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/app/src/main/java/com/example/MainActivity.java -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/example/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/app/src/main/java/com/example/MainApplication.java -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/app/src/main/res/drawable/flag.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable/headerbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/app/src/main/res/drawable/headerbg.jpg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable/headericon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/app/src/main/res/drawable/headericon.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/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/prscX/react-native-styled-dialogs/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/prscX/react-native-styled-dialogs/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/prscX/react-native-styled-dialogs/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/prscX/react-native-styled-dialogs/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/prscX/react-native-styled-dialogs/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/prscX/react-native-styled-dialogs/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/prscX/react-native-styled-dialogs/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/prscX/react-native-styled-dialogs/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/prscX/react-native-styled-dialogs/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/prscX/react-native-styled-dialogs/HEAD/Example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/build.gradle -------------------------------------------------------------------------------- /Example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/gradle.properties -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/gradlew -------------------------------------------------------------------------------- /Example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/gradlew.bat -------------------------------------------------------------------------------- /Example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/android/settings.gradle -------------------------------------------------------------------------------- /Example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/app.json -------------------------------------------------------------------------------- /Example/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/assets/background.png -------------------------------------------------------------------------------- /Example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/babel.config.js -------------------------------------------------------------------------------- /Example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/index.js -------------------------------------------------------------------------------- /Example/ios/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/ios/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/ios/Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/ios/Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ios/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/ios/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ios/Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/ios/Example/AppDelegate.h -------------------------------------------------------------------------------- /Example/ios/Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/ios/Example/AppDelegate.m -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/ios/Example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ios/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/ios/Example/Info.plist -------------------------------------------------------------------------------- /Example/ios/Example/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/ios/Example/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ios/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/ios/Example/main.m -------------------------------------------------------------------------------- /Example/ios/ExampleTests/ExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/ios/ExampleTests/ExampleTests.m -------------------------------------------------------------------------------- /Example/ios/ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/ios/ExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/ios/Podfile -------------------------------------------------------------------------------- /Example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/metro.config.js -------------------------------------------------------------------------------- /Example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/Example/package.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/README.md -------------------------------------------------------------------------------- /RNStyledDialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/RNStyledDialogs.js -------------------------------------------------------------------------------- /android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/android/.classpath -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/ui/stylesdialogs/RNStyledDialogsModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/android/src/main/java/ui/stylesdialogs/RNStyledDialogsModule.java -------------------------------------------------------------------------------- /android/src/main/java/ui/stylesdialogs/RNStyledDialogsPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/android/src/main/java/ui/stylesdialogs/RNStyledDialogsPackage.java -------------------------------------------------------------------------------- /assets/setup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/assets/setup.gif -------------------------------------------------------------------------------- /assets/swift-error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/assets/swift-error.gif -------------------------------------------------------------------------------- /assets/swift-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/assets/swift-error.png -------------------------------------------------------------------------------- /ios/RNStyledDialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/ios/RNStyledDialogs.h -------------------------------------------------------------------------------- /ios/RNStyledDialogs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/ios/RNStyledDialogs.m -------------------------------------------------------------------------------- /ios/RNStyledDialogs.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/ios/RNStyledDialogs.podspec -------------------------------------------------------------------------------- /ios/RNStyledDialogs.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/ios/RNStyledDialogs.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNStyledDialogs.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/ios/RNStyledDialogs.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prscX/react-native-styled-dialogs/HEAD/package.json --------------------------------------------------------------------------------