├── .gitignore ├── AroundMe └── src │ └── views │ └── MediaList.jsx ├── README.md ├── android ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── aroundme │ │ │ └── MainActivity.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── index.android.js ├── ios ├── AroundMe.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── bart.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── AroundMe.xcscheme │ └── xcuserdata │ │ └── bart.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── AroundMe │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 29pt_@2x.png │ │ │ ├── 29pt_@3x.png │ │ │ ├── 40pt_@2x.png │ │ │ ├── 40pt_@3x.png │ │ │ ├── 60pt_@2x.png │ │ │ ├── 60pt_@3x.png │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── AroundMeTests │ ├── AroundMeTests.m │ └── Info.plist └── main.jsbundle ├── package.json ├── preview.gif ├── src ├── App.jsx ├── main.js └── views │ ├── MediaList.jsx │ ├── MediaRow.jsx │ ├── MediaView.jsx │ └── index.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /AroundMe/src/views/MediaList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/AroundMe/src/views/MediaList.jsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/README.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/aroundme/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/android/app/src/main/java/com/aroundme/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/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/bartgryszko/react-native-example/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/bartgryszko/react-native-example/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/bartgryszko/react-native-example/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'AroundMe' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/index.android.js -------------------------------------------------------------------------------- /ios/AroundMe.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/AroundMe.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/AroundMe.xcodeproj/project.xcworkspace/xcuserdata/bart.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe.xcodeproj/project.xcworkspace/xcuserdata/bart.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ios/AroundMe.xcodeproj/xcshareddata/xcschemes/AroundMe.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe.xcodeproj/xcshareddata/xcschemes/AroundMe.xcscheme -------------------------------------------------------------------------------- /ios/AroundMe.xcodeproj/xcuserdata/bart.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe.xcodeproj/xcuserdata/bart.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ios/AroundMe.xcodeproj/xcuserdata/bart.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe.xcodeproj/xcuserdata/bart.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ios/AroundMe/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe/AppDelegate.h -------------------------------------------------------------------------------- /ios/AroundMe/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe/AppDelegate.m -------------------------------------------------------------------------------- /ios/AroundMe/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/AroundMe/Images.xcassets/AppIcon.appiconset/29pt_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe/Images.xcassets/AppIcon.appiconset/29pt_@2x.png -------------------------------------------------------------------------------- /ios/AroundMe/Images.xcassets/AppIcon.appiconset/29pt_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe/Images.xcassets/AppIcon.appiconset/29pt_@3x.png -------------------------------------------------------------------------------- /ios/AroundMe/Images.xcassets/AppIcon.appiconset/40pt_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe/Images.xcassets/AppIcon.appiconset/40pt_@2x.png -------------------------------------------------------------------------------- /ios/AroundMe/Images.xcassets/AppIcon.appiconset/40pt_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe/Images.xcassets/AppIcon.appiconset/40pt_@3x.png -------------------------------------------------------------------------------- /ios/AroundMe/Images.xcassets/AppIcon.appiconset/60pt_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe/Images.xcassets/AppIcon.appiconset/60pt_@2x.png -------------------------------------------------------------------------------- /ios/AroundMe/Images.xcassets/AppIcon.appiconset/60pt_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe/Images.xcassets/AppIcon.appiconset/60pt_@3x.png -------------------------------------------------------------------------------- /ios/AroundMe/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/AroundMe/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/AroundMe/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe/Info.plist -------------------------------------------------------------------------------- /ios/AroundMe/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMe/main.m -------------------------------------------------------------------------------- /ios/AroundMeTests/AroundMeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMeTests/AroundMeTests.m -------------------------------------------------------------------------------- /ios/AroundMeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/AroundMeTests/Info.plist -------------------------------------------------------------------------------- /ios/main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/ios/main.jsbundle -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/package.json -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/preview.gif -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/src/main.js -------------------------------------------------------------------------------- /src/views/MediaList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/src/views/MediaList.jsx -------------------------------------------------------------------------------- /src/views/MediaRow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/src/views/MediaRow.jsx -------------------------------------------------------------------------------- /src/views/MediaView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/src/views/MediaView.jsx -------------------------------------------------------------------------------- /src/views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/src/views/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-native-example/HEAD/webpack.config.js --------------------------------------------------------------------------------