├── .flowconfig ├── .gitignore ├── .npmignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── android ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ ├── react.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── swipeout │ │ │ └── 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 └── settings.gradle ├── example ├── .flowconfig ├── .gitignore ├── .npmignore ├── data.js ├── iOS │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── main.jsbundle │ └── main.m ├── index.ios.js ├── package.json ├── styles.js ├── swipeoutExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── swipeoutExample.xcscheme └── swipeoutExampleTests │ ├── Info.plist │ └── swipeoutExampleTests.m ├── index.android.js ├── index.js ├── package.json └── styles.js /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/.npmignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/README.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/react.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/app/react.gradle -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/swipeout/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/app/src/main/java/com/swipeout/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'swipeout' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/.npmignore -------------------------------------------------------------------------------- /example/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/data.js -------------------------------------------------------------------------------- /example/iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/iOS/AppDelegate.h -------------------------------------------------------------------------------- /example/iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/iOS/AppDelegate.m -------------------------------------------------------------------------------- /example/iOS/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/iOS/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/iOS/Info.plist -------------------------------------------------------------------------------- /example/iOS/main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/iOS/main.jsbundle -------------------------------------------------------------------------------- /example/iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/iOS/main.m -------------------------------------------------------------------------------- /example/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/index.ios.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/package.json -------------------------------------------------------------------------------- /example/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/styles.js -------------------------------------------------------------------------------- /example/swipeoutExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/swipeoutExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/swipeoutExample.xcodeproj/xcshareddata/xcschemes/swipeoutExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/swipeoutExample.xcodeproj/xcshareddata/xcschemes/swipeoutExample.xcscheme -------------------------------------------------------------------------------- /example/swipeoutExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/swipeoutExampleTests/Info.plist -------------------------------------------------------------------------------- /example/swipeoutExampleTests/swipeoutExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/example/swipeoutExampleTests/swipeoutExampleTests.m -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/index.android.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/package.json -------------------------------------------------------------------------------- /styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-playground/react-native-swipeout/HEAD/styles.js --------------------------------------------------------------------------------