├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── .watchmanconfig ├── LICENSE ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── guitarshopdemo │ │ │ ├── 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 ├── demo.gif ├── dom ├── .gitignore ├── bootstrap.js ├── entry.js ├── index.html └── now.json ├── index.js ├── ios ├── GuitarShopDemo-tvOS │ └── Info.plist ├── GuitarShopDemo-tvOSTests │ └── Info.plist ├── GuitarShopDemo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── GuitarShopDemo-tvOS.xcscheme │ │ └── GuitarShopDemo.xcscheme ├── GuitarShopDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── GuitarShopDemoTests │ ├── GuitarShopDemoTests.m │ └── Info.plist ├── package.json ├── rn-cli.config.js ├── src ├── App.js ├── DimensionProvider.js ├── GuitarData.js ├── Screens │ ├── DetailsScreen.js │ └── ListScreen.js ├── Utils.js └── img │ ├── 1.png │ ├── 10.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/guitarshopdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/app/src/main/java/com/guitarshopdemo/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/guitarshopdemo/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/app/src/main/java/com/guitarshopdemo/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'GuitarShopDemo' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/app.json -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/demo.gif -------------------------------------------------------------------------------- /dom/.gitignore: -------------------------------------------------------------------------------- 1 | # react-native-dom build artifacts 2 | dist -------------------------------------------------------------------------------- /dom/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/dom/bootstrap.js -------------------------------------------------------------------------------- /dom/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/dom/entry.js -------------------------------------------------------------------------------- /dom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/dom/index.html -------------------------------------------------------------------------------- /dom/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/dom/now.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/index.js -------------------------------------------------------------------------------- /ios/GuitarShopDemo-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/ios/GuitarShopDemo-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/GuitarShopDemo-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/ios/GuitarShopDemo-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/GuitarShopDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/ios/GuitarShopDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/GuitarShopDemo.xcodeproj/xcshareddata/xcschemes/GuitarShopDemo-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/ios/GuitarShopDemo.xcodeproj/xcshareddata/xcschemes/GuitarShopDemo-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/GuitarShopDemo.xcodeproj/xcshareddata/xcschemes/GuitarShopDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/ios/GuitarShopDemo.xcodeproj/xcshareddata/xcschemes/GuitarShopDemo.xcscheme -------------------------------------------------------------------------------- /ios/GuitarShopDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/ios/GuitarShopDemo/AppDelegate.h -------------------------------------------------------------------------------- /ios/GuitarShopDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/ios/GuitarShopDemo/AppDelegate.m -------------------------------------------------------------------------------- /ios/GuitarShopDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/ios/GuitarShopDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/GuitarShopDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/ios/GuitarShopDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/GuitarShopDemo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/ios/GuitarShopDemo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/GuitarShopDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/ios/GuitarShopDemo/Info.plist -------------------------------------------------------------------------------- /ios/GuitarShopDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/ios/GuitarShopDemo/main.m -------------------------------------------------------------------------------- /ios/GuitarShopDemoTests/GuitarShopDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/ios/GuitarShopDemoTests/GuitarShopDemoTests.m -------------------------------------------------------------------------------- /ios/GuitarShopDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/ios/GuitarShopDemoTests/Info.plist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/package.json -------------------------------------------------------------------------------- /rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/rn-cli.config.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/App.js -------------------------------------------------------------------------------- /src/DimensionProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/DimensionProvider.js -------------------------------------------------------------------------------- /src/GuitarData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/GuitarData.js -------------------------------------------------------------------------------- /src/Screens/DetailsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/Screens/DetailsScreen.js -------------------------------------------------------------------------------- /src/Screens/ListScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/Screens/ListScreen.js -------------------------------------------------------------------------------- /src/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/Utils.js -------------------------------------------------------------------------------- /src/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/img/1.png -------------------------------------------------------------------------------- /src/img/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/img/10.png -------------------------------------------------------------------------------- /src/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/img/2.png -------------------------------------------------------------------------------- /src/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/img/3.png -------------------------------------------------------------------------------- /src/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/img/4.png -------------------------------------------------------------------------------- /src/img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/img/5.png -------------------------------------------------------------------------------- /src/img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/img/6.png -------------------------------------------------------------------------------- /src/img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/img/7.png -------------------------------------------------------------------------------- /src/img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/img/8.png -------------------------------------------------------------------------------- /src/img/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/src/img/9.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentriemer/rndom-expanding-grid-item-demo/HEAD/yarn.lock --------------------------------------------------------------------------------