├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── UIStepper.js ├── assets ├── decrement.png ├── decrement@2x.png ├── decrement@3x.png ├── increment.png ├── increment@2x.png └── increment@3x.png ├── example ├── .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 │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ └── Bungee-Regular.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── 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 ├── assets │ └── fonts │ │ └── Bungee-Regular.ttf ├── components │ ├── Container.js │ ├── Header.js │ └── Item.js ├── index.android.js ├── index.ios.js ├── ios │ ├── example-tvOS │ │ └── Info.plist │ ├── example-tvOSTests │ │ └── Info.plist │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── example-tvOS.xcscheme │ │ │ └── example.xcscheme │ ├── example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── exampleTests │ │ ├── Info.plist │ │ └── exampleTests.m ├── package.json ├── pages │ ├── MainPage.js │ ├── UIStepper.js │ └── assets │ │ ├── decrement.png │ │ ├── decrement@2x.png │ │ ├── decrement@3x.png │ │ ├── increment.png │ │ ├── increment@2x.png │ │ └── increment@3x.png └── yarn.lock ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/README.md -------------------------------------------------------------------------------- /UIStepper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/UIStepper.js -------------------------------------------------------------------------------- /assets/decrement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/assets/decrement.png -------------------------------------------------------------------------------- /assets/decrement@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/assets/decrement@2x.png -------------------------------------------------------------------------------- /assets/decrement@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/assets/decrement@3x.png -------------------------------------------------------------------------------- /assets/increment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/assets/increment.png -------------------------------------------------------------------------------- /assets/increment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/assets/increment@2x.png -------------------------------------------------------------------------------- /assets/increment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/assets/increment@3x.png -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/__tests__/index.android.js -------------------------------------------------------------------------------- /example/__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/__tests__/index.ios.js -------------------------------------------------------------------------------- /example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/android/app/BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Bungee-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/android/app/src/main/assets/fonts/Bungee-Regular.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/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/hannigand/react-native-ui-stepper/HEAD/example/android/app/src/main/java/com/example/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/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/hannigand/react-native-ui-stepper/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/hannigand/react-native-ui-stepper/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/hannigand/react-native-ui-stepper/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/hannigand/react-native-ui-stepper/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/android/keystores/BUCK -------------------------------------------------------------------------------- /example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'example' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/fonts/Bungee-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/assets/fonts/Bungee-Regular.ttf -------------------------------------------------------------------------------- /example/components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/components/Container.js -------------------------------------------------------------------------------- /example/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/components/Header.js -------------------------------------------------------------------------------- /example/components/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/components/Item.js -------------------------------------------------------------------------------- /example/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/index.android.js -------------------------------------------------------------------------------- /example/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/index.ios.js -------------------------------------------------------------------------------- /example/ios/example-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/ios/example-tvOS/Info.plist -------------------------------------------------------------------------------- /example/ios/example-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/ios/example-tvOSTests/Info.plist -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/ios/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example-tvOS.xcscheme -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/ios/example/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/ios/example/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/ios/example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/ios/example/Info.plist -------------------------------------------------------------------------------- /example/ios/example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/ios/example/main.m -------------------------------------------------------------------------------- /example/ios/exampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/ios/exampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/exampleTests/exampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/ios/exampleTests/exampleTests.m -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/package.json -------------------------------------------------------------------------------- /example/pages/MainPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/pages/MainPage.js -------------------------------------------------------------------------------- /example/pages/UIStepper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/pages/UIStepper.js -------------------------------------------------------------------------------- /example/pages/assets/decrement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/pages/assets/decrement.png -------------------------------------------------------------------------------- /example/pages/assets/decrement@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/pages/assets/decrement@2x.png -------------------------------------------------------------------------------- /example/pages/assets/decrement@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/pages/assets/decrement@3x.png -------------------------------------------------------------------------------- /example/pages/assets/increment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/pages/assets/increment.png -------------------------------------------------------------------------------- /example/pages/assets/increment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/pages/assets/increment@2x.png -------------------------------------------------------------------------------- /example/pages/assets/increment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/pages/assets/increment@3x.png -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannigand/react-native-ui-stepper/HEAD/yarn.lock --------------------------------------------------------------------------------