├── .buckconfig ├── .gitattributes ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── .watchmanconfig ├── LICENSE ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── rnformo │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── 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 ├── babel.config.js ├── example └── sampleformo │ ├── .buckconfig │ ├── .eslintrc.js │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.js │ ├── __tests__ │ └── App-test.js │ ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── sampleproject │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── 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 │ ├── babel.config.js │ ├── index.js │ ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── sampleproject-tvOS │ │ └── Info.plist │ ├── sampleproject-tvOSTests │ │ └── Info.plist │ ├── sampleproject.xcworkspace │ │ └── contents.xcworkspacedata │ ├── sampleproject │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── sampleprojectTests │ │ ├── Info.plist │ │ └── sampleprojectTests.m │ ├── metro.config.js │ ├── package-lock.json │ ├── package.json │ └── schema │ ├── 00-basic_types.json │ ├── 01-phone-and-email.json │ ├── 02-text-and-number.json │ ├── 03-date-only.json │ ├── 04-date-with-additional-config.json │ ├── 05-date-time-seperate.json │ ├── 06-datetime.json │ ├── 07-select.json │ ├── 08-location.json │ ├── 09-image.json │ ├── 10-lookup.json │ ├── 11-sub-form.json │ ├── 12-sub-form-with-lookup.json │ ├── 13-hidden-fields.json │ ├── 14-currency-field.json │ ├── 15-calculated-field.json │ ├── 16-sub-form-with-lookup_and_calculated_field.json │ ├── 17-picker-field.json │ ├── 18-status_picker-field.json │ ├── 19-custom_data_view.json │ ├── 20-simple-grid.json │ ├── 21-select-with-remote-data_source.json │ ├── 22-assignee.json │ ├── 22-collaborator.json │ ├── 23-checklist.json │ ├── 24-auto-incr-number.json │ ├── __test.json │ ├── form0.json │ ├── form1.json │ └── form_with_group.json ├── ios ├── Podfile ├── Podfile.lock ├── rnformo-tvOS │ └── Info.plist ├── rnformo-tvOSTests │ └── Info.plist ├── rnformo.xcodeproj │ └── project.pbxproj ├── rnformo.xcworkspace │ └── contents.xcworkspacedata ├── rnformo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── rnformoTests │ ├── Info.plist │ └── rnformoTests.m ├── metro.config.js ├── package.json └── src ├── components ├── filter │ ├── index.js │ └── styles.js ├── grid │ ├── cell.js │ ├── cols.js │ ├── editComponent.js │ ├── gridComponent.js │ ├── index.js │ ├── rows.js │ ├── styles.js │ └── table.js ├── headers │ ├── filterHeader.js │ ├── header.js │ ├── linearGradientHeader.js │ ├── lookupHeader.js │ └── searchHeader.js ├── lookup │ ├── index.js │ └── styles.js ├── lookupItem │ ├── index.js │ └── styles.js ├── panel │ ├── index.js │ └── styles.js ├── picker │ ├── modal.js │ └── styles.js ├── recyclerList │ ├── index.js │ └── styles.js ├── search │ ├── index.js │ └── styles.js ├── starIcon │ ├── index.js │ └── styles.js └── zoomImage │ └── index.js ├── fields ├── assignee │ ├── index.js │ └── styles.js ├── barcode │ ├── index.js │ └── styles.js ├── cascadingDropdown │ ├── index.js │ ├── searchableDropDown.js │ └── styles.js ├── checklist │ ├── index.js │ └── styles.js ├── childForm │ ├── index.js │ └── styles.js ├── collaborator │ ├── index.js │ └── styles.js ├── currency │ ├── index.js │ └── styles.js ├── customDataView │ ├── index.js │ └── styles.js ├── date │ ├── index.js │ └── styles.js ├── document │ ├── index.js │ └── styles.js ├── form │ ├── index.js │ └── styles.js ├── image │ ├── index.js │ └── styles.js ├── location │ ├── index.js │ └── styles.js ├── longTextInput │ └── index.js ├── lookup │ ├── index.js │ └── styles.js ├── otp │ ├── index.js │ └── styles.js ├── picker │ ├── index.js │ └── styles.js ├── rating │ ├── index.js │ └── styles.js ├── select │ ├── index.js │ └── styles.js ├── signature │ ├── index.js │ └── styles.js ├── simplegrid │ ├── index.js │ └── styles.js ├── statusPicker │ ├── index.js │ └── styles.js ├── subForm │ ├── index.js │ └── styles.js ├── switch │ ├── index.js │ └── styles.js ├── textInput │ ├── index.js │ └── styles.js └── userDirectory │ ├── index.js │ └── styles.js ├── index.js ├── styles.js ├── theme.js └── utils ├── helper.js └── validators.js /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/.buckconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnformo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/java/com/rnformo/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnformo/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/java/com/rnformo/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/sampleformo/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/.buckconfig -------------------------------------------------------------------------------- /example/sampleformo/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /example/sampleformo/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/.flowconfig -------------------------------------------------------------------------------- /example/sampleformo/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/sampleformo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/.gitignore -------------------------------------------------------------------------------- /example/sampleformo/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/sampleformo/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/App.js -------------------------------------------------------------------------------- /example/sampleformo/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/__tests__/App-test.js -------------------------------------------------------------------------------- /example/sampleformo/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/BUCK -------------------------------------------------------------------------------- /example/sampleformo/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/build.gradle -------------------------------------------------------------------------------- /example/sampleformo/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/build_defs.bzl -------------------------------------------------------------------------------- /example/sampleformo/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/debug.keystore -------------------------------------------------------------------------------- /example/sampleformo/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/java/com/sampleproject/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/java/com/sampleproject/MainActivity.java -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/java/com/sampleproject/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/java/com/sampleproject/MainApplication.java -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/sampleformo/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/sampleformo/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/build.gradle -------------------------------------------------------------------------------- /example/sampleformo/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/gradle.properties -------------------------------------------------------------------------------- /example/sampleformo/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/sampleformo/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/sampleformo/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/gradlew -------------------------------------------------------------------------------- /example/sampleformo/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/gradlew.bat -------------------------------------------------------------------------------- /example/sampleformo/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/android/settings.gradle -------------------------------------------------------------------------------- /example/sampleformo/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/app.json -------------------------------------------------------------------------------- /example/sampleformo/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/babel.config.js -------------------------------------------------------------------------------- /example/sampleformo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/index.js -------------------------------------------------------------------------------- /example/sampleformo/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/ios/Podfile -------------------------------------------------------------------------------- /example/sampleformo/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/ios/Podfile.lock -------------------------------------------------------------------------------- /example/sampleformo/ios/sampleproject-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/ios/sampleproject-tvOS/Info.plist -------------------------------------------------------------------------------- /example/sampleformo/ios/sampleproject-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/ios/sampleproject-tvOSTests/Info.plist -------------------------------------------------------------------------------- /example/sampleformo/ios/sampleproject.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/ios/sampleproject.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/sampleformo/ios/sampleproject/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/ios/sampleproject/AppDelegate.h -------------------------------------------------------------------------------- /example/sampleformo/ios/sampleproject/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/ios/sampleproject/AppDelegate.m -------------------------------------------------------------------------------- /example/sampleformo/ios/sampleproject/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/ios/sampleproject/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/sampleformo/ios/sampleproject/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/ios/sampleproject/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/sampleformo/ios/sampleproject/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/ios/sampleproject/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/sampleformo/ios/sampleproject/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/ios/sampleproject/Info.plist -------------------------------------------------------------------------------- /example/sampleformo/ios/sampleproject/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/ios/sampleproject/main.m -------------------------------------------------------------------------------- /example/sampleformo/ios/sampleprojectTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/ios/sampleprojectTests/Info.plist -------------------------------------------------------------------------------- /example/sampleformo/ios/sampleprojectTests/sampleprojectTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/ios/sampleprojectTests/sampleprojectTests.m -------------------------------------------------------------------------------- /example/sampleformo/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/metro.config.js -------------------------------------------------------------------------------- /example/sampleformo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/package-lock.json -------------------------------------------------------------------------------- /example/sampleformo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/package.json -------------------------------------------------------------------------------- /example/sampleformo/schema/00-basic_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/00-basic_types.json -------------------------------------------------------------------------------- /example/sampleformo/schema/01-phone-and-email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/01-phone-and-email.json -------------------------------------------------------------------------------- /example/sampleformo/schema/02-text-and-number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/02-text-and-number.json -------------------------------------------------------------------------------- /example/sampleformo/schema/03-date-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/03-date-only.json -------------------------------------------------------------------------------- /example/sampleformo/schema/04-date-with-additional-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/04-date-with-additional-config.json -------------------------------------------------------------------------------- /example/sampleformo/schema/05-date-time-seperate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/05-date-time-seperate.json -------------------------------------------------------------------------------- /example/sampleformo/schema/06-datetime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/06-datetime.json -------------------------------------------------------------------------------- /example/sampleformo/schema/07-select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/07-select.json -------------------------------------------------------------------------------- /example/sampleformo/schema/08-location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/08-location.json -------------------------------------------------------------------------------- /example/sampleformo/schema/09-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/09-image.json -------------------------------------------------------------------------------- /example/sampleformo/schema/10-lookup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/10-lookup.json -------------------------------------------------------------------------------- /example/sampleformo/schema/11-sub-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/11-sub-form.json -------------------------------------------------------------------------------- /example/sampleformo/schema/12-sub-form-with-lookup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/12-sub-form-with-lookup.json -------------------------------------------------------------------------------- /example/sampleformo/schema/13-hidden-fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/13-hidden-fields.json -------------------------------------------------------------------------------- /example/sampleformo/schema/14-currency-field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/14-currency-field.json -------------------------------------------------------------------------------- /example/sampleformo/schema/15-calculated-field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/15-calculated-field.json -------------------------------------------------------------------------------- /example/sampleformo/schema/16-sub-form-with-lookup_and_calculated_field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/16-sub-form-with-lookup_and_calculated_field.json -------------------------------------------------------------------------------- /example/sampleformo/schema/17-picker-field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/17-picker-field.json -------------------------------------------------------------------------------- /example/sampleformo/schema/18-status_picker-field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/18-status_picker-field.json -------------------------------------------------------------------------------- /example/sampleformo/schema/19-custom_data_view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/19-custom_data_view.json -------------------------------------------------------------------------------- /example/sampleformo/schema/20-simple-grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/20-simple-grid.json -------------------------------------------------------------------------------- /example/sampleformo/schema/21-select-with-remote-data_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/21-select-with-remote-data_source.json -------------------------------------------------------------------------------- /example/sampleformo/schema/22-assignee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/22-assignee.json -------------------------------------------------------------------------------- /example/sampleformo/schema/22-collaborator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/22-collaborator.json -------------------------------------------------------------------------------- /example/sampleformo/schema/23-checklist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/23-checklist.json -------------------------------------------------------------------------------- /example/sampleformo/schema/24-auto-incr-number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/24-auto-incr-number.json -------------------------------------------------------------------------------- /example/sampleformo/schema/__test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/__test.json -------------------------------------------------------------------------------- /example/sampleformo/schema/form0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/form0.json -------------------------------------------------------------------------------- /example/sampleformo/schema/form1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/form1.json -------------------------------------------------------------------------------- /example/sampleformo/schema/form_with_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/example/sampleformo/schema/form_with_group.json -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/rnformo-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/rnformo-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/rnformo-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/rnformo-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/rnformo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/rnformo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/rnformo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/rnformo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/rnformo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/rnformo/AppDelegate.h -------------------------------------------------------------------------------- /ios/rnformo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/rnformo/AppDelegate.m -------------------------------------------------------------------------------- /ios/rnformo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/rnformo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/rnformo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/rnformo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/rnformo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/rnformo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/rnformo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/rnformo/Info.plist -------------------------------------------------------------------------------- /ios/rnformo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/rnformo/main.m -------------------------------------------------------------------------------- /ios/rnformoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/rnformoTests/Info.plist -------------------------------------------------------------------------------- /ios/rnformoTests/rnformoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/ios/rnformoTests/rnformoTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/package.json -------------------------------------------------------------------------------- /src/components/filter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/filter/index.js -------------------------------------------------------------------------------- /src/components/filter/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/filter/styles.js -------------------------------------------------------------------------------- /src/components/grid/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/grid/cell.js -------------------------------------------------------------------------------- /src/components/grid/cols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/grid/cols.js -------------------------------------------------------------------------------- /src/components/grid/editComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/grid/editComponent.js -------------------------------------------------------------------------------- /src/components/grid/gridComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/grid/gridComponent.js -------------------------------------------------------------------------------- /src/components/grid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/grid/index.js -------------------------------------------------------------------------------- /src/components/grid/rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/grid/rows.js -------------------------------------------------------------------------------- /src/components/grid/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/grid/styles.js -------------------------------------------------------------------------------- /src/components/grid/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/grid/table.js -------------------------------------------------------------------------------- /src/components/headers/filterHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/headers/filterHeader.js -------------------------------------------------------------------------------- /src/components/headers/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/headers/header.js -------------------------------------------------------------------------------- /src/components/headers/linearGradientHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/headers/linearGradientHeader.js -------------------------------------------------------------------------------- /src/components/headers/lookupHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/headers/lookupHeader.js -------------------------------------------------------------------------------- /src/components/headers/searchHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/headers/searchHeader.js -------------------------------------------------------------------------------- /src/components/lookup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/lookup/index.js -------------------------------------------------------------------------------- /src/components/lookup/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/lookup/styles.js -------------------------------------------------------------------------------- /src/components/lookupItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/lookupItem/index.js -------------------------------------------------------------------------------- /src/components/lookupItem/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/lookupItem/styles.js -------------------------------------------------------------------------------- /src/components/panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/panel/index.js -------------------------------------------------------------------------------- /src/components/panel/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/panel/styles.js -------------------------------------------------------------------------------- /src/components/picker/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/picker/modal.js -------------------------------------------------------------------------------- /src/components/picker/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/picker/styles.js -------------------------------------------------------------------------------- /src/components/recyclerList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/recyclerList/index.js -------------------------------------------------------------------------------- /src/components/recyclerList/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/recyclerList/styles.js -------------------------------------------------------------------------------- /src/components/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/search/index.js -------------------------------------------------------------------------------- /src/components/search/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/search/styles.js -------------------------------------------------------------------------------- /src/components/starIcon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/starIcon/index.js -------------------------------------------------------------------------------- /src/components/starIcon/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/starIcon/styles.js -------------------------------------------------------------------------------- /src/components/zoomImage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/components/zoomImage/index.js -------------------------------------------------------------------------------- /src/fields/assignee/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/assignee/index.js -------------------------------------------------------------------------------- /src/fields/assignee/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/assignee/styles.js -------------------------------------------------------------------------------- /src/fields/barcode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/barcode/index.js -------------------------------------------------------------------------------- /src/fields/barcode/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/barcode/styles.js -------------------------------------------------------------------------------- /src/fields/cascadingDropdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/cascadingDropdown/index.js -------------------------------------------------------------------------------- /src/fields/cascadingDropdown/searchableDropDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/cascadingDropdown/searchableDropDown.js -------------------------------------------------------------------------------- /src/fields/cascadingDropdown/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/cascadingDropdown/styles.js -------------------------------------------------------------------------------- /src/fields/checklist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/checklist/index.js -------------------------------------------------------------------------------- /src/fields/checklist/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/checklist/styles.js -------------------------------------------------------------------------------- /src/fields/childForm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/childForm/index.js -------------------------------------------------------------------------------- /src/fields/childForm/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/childForm/styles.js -------------------------------------------------------------------------------- /src/fields/collaborator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/collaborator/index.js -------------------------------------------------------------------------------- /src/fields/collaborator/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/collaborator/styles.js -------------------------------------------------------------------------------- /src/fields/currency/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/currency/index.js -------------------------------------------------------------------------------- /src/fields/currency/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/currency/styles.js -------------------------------------------------------------------------------- /src/fields/customDataView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/customDataView/index.js -------------------------------------------------------------------------------- /src/fields/customDataView/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/customDataView/styles.js -------------------------------------------------------------------------------- /src/fields/date/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/date/index.js -------------------------------------------------------------------------------- /src/fields/date/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fields/document/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/document/index.js -------------------------------------------------------------------------------- /src/fields/document/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/document/styles.js -------------------------------------------------------------------------------- /src/fields/form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/form/index.js -------------------------------------------------------------------------------- /src/fields/form/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fields/image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/image/index.js -------------------------------------------------------------------------------- /src/fields/image/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/image/styles.js -------------------------------------------------------------------------------- /src/fields/location/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/location/index.js -------------------------------------------------------------------------------- /src/fields/location/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/location/styles.js -------------------------------------------------------------------------------- /src/fields/longTextInput/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/longTextInput/index.js -------------------------------------------------------------------------------- /src/fields/lookup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/lookup/index.js -------------------------------------------------------------------------------- /src/fields/lookup/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/lookup/styles.js -------------------------------------------------------------------------------- /src/fields/otp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/otp/index.js -------------------------------------------------------------------------------- /src/fields/otp/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/otp/styles.js -------------------------------------------------------------------------------- /src/fields/picker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/picker/index.js -------------------------------------------------------------------------------- /src/fields/picker/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/picker/styles.js -------------------------------------------------------------------------------- /src/fields/rating/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/rating/index.js -------------------------------------------------------------------------------- /src/fields/rating/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/rating/styles.js -------------------------------------------------------------------------------- /src/fields/select/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/select/index.js -------------------------------------------------------------------------------- /src/fields/select/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/select/styles.js -------------------------------------------------------------------------------- /src/fields/signature/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/signature/index.js -------------------------------------------------------------------------------- /src/fields/signature/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/signature/styles.js -------------------------------------------------------------------------------- /src/fields/simplegrid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/simplegrid/index.js -------------------------------------------------------------------------------- /src/fields/simplegrid/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/simplegrid/styles.js -------------------------------------------------------------------------------- /src/fields/statusPicker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/statusPicker/index.js -------------------------------------------------------------------------------- /src/fields/statusPicker/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/statusPicker/styles.js -------------------------------------------------------------------------------- /src/fields/subForm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/subForm/index.js -------------------------------------------------------------------------------- /src/fields/subForm/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/subForm/styles.js -------------------------------------------------------------------------------- /src/fields/switch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/switch/index.js -------------------------------------------------------------------------------- /src/fields/switch/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fields/textInput/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/textInput/index.js -------------------------------------------------------------------------------- /src/fields/textInput/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fields/userDirectory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/userDirectory/index.js -------------------------------------------------------------------------------- /src/fields/userDirectory/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/fields/userDirectory/styles.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/styles.js -------------------------------------------------------------------------------- /src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/theme.js -------------------------------------------------------------------------------- /src/utils/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/utils/helper.js -------------------------------------------------------------------------------- /src/utils/validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharathchandramg/react-native-formo/HEAD/src/utils/validators.js --------------------------------------------------------------------------------