├── .gitignore ├── .prettierrc.js ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── kapobajza │ │ │ └── offlinefirstsample │ │ │ └── ReactNativeFlipper.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── kapobajza │ │ │ │ └── offlinefirstsample │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-mdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xxhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable │ │ │ ├── rn_edit_text_material.xml │ │ │ └── splashscreen.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── colors.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── release │ │ └── java │ │ └── com │ │ └── kapobajza │ │ └── offlinefirstsample │ │ └── ReactNativeFlipper.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── api ├── client.ts └── index.ts ├── app.json ├── app ├── +html.tsx ├── [...missing].tsx ├── _layout.tsx ├── index.tsx └── todo │ ├── [id].tsx │ └── add.tsx ├── assets ├── fonts │ └── SpaceMono-Regular.ttf └── images │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── components ├── Button.tsx ├── Container.tsx ├── FlatList.tsx ├── NavigationBar.tsx ├── Spacer.tsx ├── __tests__ │ └── StyledText-test.js └── index.ts ├── db ├── db.ts ├── index.ts └── persister.ts ├── ios ├── .gitignore ├── .xcode.env ├── Podfile ├── Podfile.lock ├── Podfile.properties.json ├── offlinefirstsample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── offlinefirstsample.xcscheme ├── offlinefirstsample.xcworkspace │ └── contents.xcworkspacedata └── offlinefirstsample │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── App-Icon-1024x1024@1x.png │ │ └── Contents.json │ ├── Contents.json │ ├── SplashScreen.imageset │ │ ├── Contents.json │ │ └── image.png │ └── SplashScreenBackground.imageset │ │ ├── Contents.json │ │ └── image.png │ ├── Info.plist │ ├── SplashScreen.storyboard │ ├── Supporting │ └── Expo.plist │ ├── main.m │ ├── noop-file.swift │ ├── offlinefirstsample-Bridging-Header.h │ └── offlinefirstsample.entitlements ├── metro.config.js ├── package.json ├── query ├── index.ts └── todo.ts ├── theme ├── colors.ts └── index.ts ├── tsconfig.json └── types ├── query.ts └── todo.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/kapobajza/offlinefirstsample/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/debug/java/com/kapobajza/offlinefirstsample/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/kapobajza/offlinefirstsample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/java/com/kapobajza/offlinefirstsample/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/kapobajza/offlinefirstsample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/java/com/kapobajza/offlinefirstsample/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/drawable-hdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/drawable-mdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/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/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/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/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/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/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/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/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/release/java/com/kapobajza/offlinefirstsample/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/app/src/release/java/com/kapobajza/offlinefirstsample/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /api/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/api/client.ts -------------------------------------------------------------------------------- /api/index.ts: -------------------------------------------------------------------------------- 1 | export * from './client'; 2 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/app.json -------------------------------------------------------------------------------- /app/+html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/app/+html.tsx -------------------------------------------------------------------------------- /app/[...missing].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/app/[...missing].tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/app/index.tsx -------------------------------------------------------------------------------- /app/todo/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/app/todo/[id].tsx -------------------------------------------------------------------------------- /app/todo/add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/app/todo/add.tsx -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/assets/images/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/components/Button.tsx -------------------------------------------------------------------------------- /components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/components/Container.tsx -------------------------------------------------------------------------------- /components/FlatList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/components/FlatList.tsx -------------------------------------------------------------------------------- /components/NavigationBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/components/NavigationBar.tsx -------------------------------------------------------------------------------- /components/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/components/Spacer.tsx -------------------------------------------------------------------------------- /components/__tests__/StyledText-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/components/__tests__/StyledText-test.js -------------------------------------------------------------------------------- /components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/components/index.ts -------------------------------------------------------------------------------- /db/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/db/db.ts -------------------------------------------------------------------------------- /db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/db/index.ts -------------------------------------------------------------------------------- /db/persister.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/db/persister.ts -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Podfile.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/Podfile.properties.json -------------------------------------------------------------------------------- /ios/offlinefirstsample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/offlinefirstsample.xcodeproj/xcshareddata/xcschemes/offlinefirstsample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample.xcodeproj/xcshareddata/xcschemes/offlinefirstsample.xcscheme -------------------------------------------------------------------------------- /ios/offlinefirstsample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/offlinefirstsample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/AppDelegate.h -------------------------------------------------------------------------------- /ios/offlinefirstsample/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/AppDelegate.mm -------------------------------------------------------------------------------- /ios/offlinefirstsample/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/offlinefirstsample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/offlinefirstsample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/offlinefirstsample/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /ios/offlinefirstsample/Images.xcassets/SplashScreen.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/Images.xcassets/SplashScreen.imageset/image.png -------------------------------------------------------------------------------- /ios/offlinefirstsample/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/offlinefirstsample/Images.xcassets/SplashScreenBackground.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/Images.xcassets/SplashScreenBackground.imageset/image.png -------------------------------------------------------------------------------- /ios/offlinefirstsample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/Info.plist -------------------------------------------------------------------------------- /ios/offlinefirstsample/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/SplashScreen.storyboard -------------------------------------------------------------------------------- /ios/offlinefirstsample/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/Supporting/Expo.plist -------------------------------------------------------------------------------- /ios/offlinefirstsample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/main.m -------------------------------------------------------------------------------- /ios/offlinefirstsample/noop-file.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/noop-file.swift -------------------------------------------------------------------------------- /ios/offlinefirstsample/offlinefirstsample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/offlinefirstsample-Bridging-Header.h -------------------------------------------------------------------------------- /ios/offlinefirstsample/offlinefirstsample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/ios/offlinefirstsample/offlinefirstsample.entitlements -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/package.json -------------------------------------------------------------------------------- /query/index.ts: -------------------------------------------------------------------------------- 1 | export * from './todo'; 2 | -------------------------------------------------------------------------------- /query/todo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/query/todo.ts -------------------------------------------------------------------------------- /theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/theme/colors.ts -------------------------------------------------------------------------------- /theme/index.ts: -------------------------------------------------------------------------------- 1 | export * from './colors'; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/types/query.ts -------------------------------------------------------------------------------- /types/todo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapobajza/React_Native_Offline_first_sample/HEAD/types/todo.ts --------------------------------------------------------------------------------