├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── examples ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── __tests__ │ ├── index.android.js │ └── index.ios.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── examples │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.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 ├── app.json ├── index.android.js ├── index.ios.js ├── ios │ ├── examples-tvOS │ │ └── Info.plist │ ├── examples-tvOSTests │ │ └── Info.plist │ ├── examples.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── examples-tvOS.xcscheme │ │ │ └── examples.xcscheme │ ├── examples │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── examplesTests │ │ ├── Info.plist │ │ └── examplesTests.m ├── package.json └── yarn.lock ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | examples/node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/README.md -------------------------------------------------------------------------------- /examples/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/.buckconfig -------------------------------------------------------------------------------- /examples/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/.flowconfig -------------------------------------------------------------------------------- /examples/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/__tests__/index.android.js -------------------------------------------------------------------------------- /examples/__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/__tests__/index.ios.js -------------------------------------------------------------------------------- /examples/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/app/BUCK -------------------------------------------------------------------------------- /examples/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/app/build.gradle -------------------------------------------------------------------------------- /examples/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/android/app/src/main/java/com/examples/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/app/src/main/java/com/examples/MainActivity.java -------------------------------------------------------------------------------- /examples/android/app/src/main/java/com/examples/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/app/src/main/java/com/examples/MainApplication.java -------------------------------------------------------------------------------- /examples/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/build.gradle -------------------------------------------------------------------------------- /examples/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/gradle.properties -------------------------------------------------------------------------------- /examples/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/gradlew -------------------------------------------------------------------------------- /examples/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/gradlew.bat -------------------------------------------------------------------------------- /examples/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/keystores/BUCK -------------------------------------------------------------------------------- /examples/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /examples/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'examples' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /examples/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/app.json -------------------------------------------------------------------------------- /examples/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/index.android.js -------------------------------------------------------------------------------- /examples/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/index.ios.js -------------------------------------------------------------------------------- /examples/ios/examples-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/ios/examples-tvOS/Info.plist -------------------------------------------------------------------------------- /examples/ios/examples-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/ios/examples-tvOSTests/Info.plist -------------------------------------------------------------------------------- /examples/ios/examples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/ios/examples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/ios/examples.xcodeproj/xcshareddata/xcschemes/examples-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/ios/examples.xcodeproj/xcshareddata/xcschemes/examples-tvOS.xcscheme -------------------------------------------------------------------------------- /examples/ios/examples.xcodeproj/xcshareddata/xcschemes/examples.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/ios/examples.xcodeproj/xcshareddata/xcschemes/examples.xcscheme -------------------------------------------------------------------------------- /examples/ios/examples/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/ios/examples/AppDelegate.h -------------------------------------------------------------------------------- /examples/ios/examples/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/ios/examples/AppDelegate.m -------------------------------------------------------------------------------- /examples/ios/examples/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/ios/examples/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /examples/ios/examples/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/ios/examples/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/ios/examples/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/ios/examples/Info.plist -------------------------------------------------------------------------------- /examples/ios/examples/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/ios/examples/main.m -------------------------------------------------------------------------------- /examples/ios/examplesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/ios/examplesTests/Info.plist -------------------------------------------------------------------------------- /examples/ios/examplesTests/examplesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/ios/examplesTests/examplesTests.m -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/examples/yarn.lock -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recr0ns/react-native-material-switch/HEAD/package.json --------------------------------------------------------------------------------