├── .buckconfig ├── .gitattributes ├── .gitignore ├── App.tsx ├── README.md ├── android ├── .gitignore ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── riveanimatedapp │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── riveanimatedapp │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── newarchitecture │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ ├── components │ │ │ └── MainComponentsRegistry.java │ │ │ └── modules │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ ├── jni │ │ ├── Android.mk │ │ ├── MainApplicationModuleProvider.cpp │ │ ├── MainApplicationModuleProvider.h │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ ├── MainComponentsRegistry.cpp │ │ ├── MainComponentsRegistry.h │ │ └── OnLoad.cpp │ │ └── res │ │ ├── drawable │ │ ├── rn_edit_text_material.xml │ │ ├── splashscreen.xml │ │ └── splashscreen_image.png │ │ ├── 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 │ │ ├── raw │ │ ├── button.riv │ │ ├── check.riv │ │ ├── confetti.riv │ │ ├── house.riv │ │ ├── icons.riv │ │ ├── menu_button.riv │ │ └── shapes.riv │ │ └── values │ │ ├── colors.xml │ │ ├── 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 ├── .gitignore ├── Assets │ ├── button.riv │ ├── check.riv │ ├── confetti.riv │ ├── house.riv │ ├── icons.riv │ ├── menu_button.riv │ └── shapes.riv ├── Podfile ├── Podfile.lock ├── Podfile.properties.json ├── riveanimatedapp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── riveanimatedapp.xcscheme ├── riveanimatedapp.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── riveanimatedapp │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── SplashScreen.imageset │ │ ├── Contents.json │ │ └── splashscreen.png │ └── SplashScreenBackground.imageset │ │ ├── Contents.json │ │ └── background.png │ ├── Info.plist │ ├── SplashScreen.storyboard │ ├── Supporting │ └── Expo.plist │ └── main.m ├── metro.config.js ├── package.json ├── src ├── @types │ └── png.d.ts ├── assets │ ├── fonts │ │ ├── Inter-Regular.ttf │ │ ├── Inter-SemiBold.ttf │ │ └── Poppins-Bold.ttf │ ├── icons │ │ ├── apple.png │ │ ├── code.png │ │ ├── email.png │ │ ├── emailBlack.png │ │ ├── google.png │ │ ├── ios.png │ │ └── lock.png │ └── images │ │ ├── avatars.png │ │ └── spline.png ├── components │ ├── SideBar │ │ ├── components │ │ │ └── Highlight │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ ├── index.tsx │ │ └── styles.ts │ └── TabBar │ │ ├── components │ │ └── Highlight │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── index.tsx │ │ └── styles.ts ├── global │ └── styles │ │ ├── styles.d.ts │ │ └── theme.ts └── screens │ └── Home │ ├── components │ ├── HItem │ │ ├── index.tsx │ │ └── styles.ts │ ├── Header │ │ ├── index.tsx │ │ └── styles.ts │ ├── OnboardModal │ │ ├── index.tsx │ │ └── styles.ts │ ├── SignInModal │ │ ├── index.tsx │ │ └── styles.ts │ └── VItem │ │ ├── index.tsx │ │ └── styles.ts │ ├── index.tsx │ ├── styles.ts │ └── utils │ └── index.ts ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/.buckconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/riveanimatedapp/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/debug/java/com/riveanimatedapp/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/riveanimatedapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/java/com/riveanimatedapp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/riveanimatedapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/java/com/riveanimatedapp/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/riveanimatedapp/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/java/com/riveanimatedapp/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/riveanimatedapp/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/java/com/riveanimatedapp/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/riveanimatedapp/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/java/com/riveanimatedapp/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /android/app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/jni/Android.mk -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/res/drawable/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/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/lklima/rive-animated-app/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/lklima/rive-animated-app/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/lklima/rive-animated-app/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/lklima/rive-animated-app/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/lklima/rive-animated-app/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/lklima/rive-animated-app/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/lklima/rive-animated-app/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/lklima/rive-animated-app/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/lklima/rive-animated-app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/raw/button.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/res/raw/button.riv -------------------------------------------------------------------------------- /android/app/src/main/res/raw/check.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/res/raw/check.riv -------------------------------------------------------------------------------- /android/app/src/main/res/raw/confetti.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/res/raw/confetti.riv -------------------------------------------------------------------------------- /android/app/src/main/res/raw/house.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/res/raw/house.riv -------------------------------------------------------------------------------- /android/app/src/main/res/raw/icons.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/res/raw/icons.riv -------------------------------------------------------------------------------- /android/app/src/main/res/raw/menu_button.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/res/raw/menu_button.riv -------------------------------------------------------------------------------- /android/app/src/main/res/raw/shapes.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/res/raw/shapes.riv -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/index.js -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Assets/button.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/Assets/button.riv -------------------------------------------------------------------------------- /ios/Assets/check.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/Assets/check.riv -------------------------------------------------------------------------------- /ios/Assets/confetti.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/Assets/confetti.riv -------------------------------------------------------------------------------- /ios/Assets/house.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/Assets/house.riv -------------------------------------------------------------------------------- /ios/Assets/icons.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/Assets/icons.riv -------------------------------------------------------------------------------- /ios/Assets/menu_button.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/Assets/menu_button.riv -------------------------------------------------------------------------------- /ios/Assets/shapes.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/Assets/shapes.riv -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Podfile.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo.jsEngine": "jsc" 3 | } 4 | -------------------------------------------------------------------------------- /ios/riveanimatedapp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/riveanimatedapp.xcodeproj/xcshareddata/xcschemes/riveanimatedapp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp.xcodeproj/xcshareddata/xcschemes/riveanimatedapp.xcscheme -------------------------------------------------------------------------------- /ios/riveanimatedapp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/riveanimatedapp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/riveanimatedapp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp/AppDelegate.h -------------------------------------------------------------------------------- /ios/riveanimatedapp/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp/AppDelegate.mm -------------------------------------------------------------------------------- /ios/riveanimatedapp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/riveanimatedapp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/riveanimatedapp/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /ios/riveanimatedapp/Images.xcassets/SplashScreen.imageset/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp/Images.xcassets/SplashScreen.imageset/splashscreen.png -------------------------------------------------------------------------------- /ios/riveanimatedapp/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/riveanimatedapp/Images.xcassets/SplashScreenBackground.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp/Images.xcassets/SplashScreenBackground.imageset/background.png -------------------------------------------------------------------------------- /ios/riveanimatedapp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp/Info.plist -------------------------------------------------------------------------------- /ios/riveanimatedapp/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp/SplashScreen.storyboard -------------------------------------------------------------------------------- /ios/riveanimatedapp/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp/Supporting/Expo.plist -------------------------------------------------------------------------------- /ios/riveanimatedapp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/ios/riveanimatedapp/main.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/package.json -------------------------------------------------------------------------------- /src/@types/png.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.png"; 2 | -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/assets/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Inter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/assets/fonts/Inter-SemiBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/assets/fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /src/assets/icons/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/assets/icons/apple.png -------------------------------------------------------------------------------- /src/assets/icons/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/assets/icons/code.png -------------------------------------------------------------------------------- /src/assets/icons/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/assets/icons/email.png -------------------------------------------------------------------------------- /src/assets/icons/emailBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/assets/icons/emailBlack.png -------------------------------------------------------------------------------- /src/assets/icons/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/assets/icons/google.png -------------------------------------------------------------------------------- /src/assets/icons/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/assets/icons/ios.png -------------------------------------------------------------------------------- /src/assets/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/assets/icons/lock.png -------------------------------------------------------------------------------- /src/assets/images/avatars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/assets/images/avatars.png -------------------------------------------------------------------------------- /src/assets/images/spline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/assets/images/spline.png -------------------------------------------------------------------------------- /src/components/SideBar/components/Highlight/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/components/SideBar/components/Highlight/index.tsx -------------------------------------------------------------------------------- /src/components/SideBar/components/Highlight/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/components/SideBar/components/Highlight/styles.ts -------------------------------------------------------------------------------- /src/components/SideBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/components/SideBar/index.tsx -------------------------------------------------------------------------------- /src/components/SideBar/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/components/SideBar/styles.ts -------------------------------------------------------------------------------- /src/components/TabBar/components/Highlight/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/components/TabBar/components/Highlight/index.tsx -------------------------------------------------------------------------------- /src/components/TabBar/components/Highlight/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/components/TabBar/components/Highlight/styles.ts -------------------------------------------------------------------------------- /src/components/TabBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/components/TabBar/index.tsx -------------------------------------------------------------------------------- /src/components/TabBar/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/components/TabBar/styles.ts -------------------------------------------------------------------------------- /src/global/styles/styles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/global/styles/styles.d.ts -------------------------------------------------------------------------------- /src/global/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/global/styles/theme.ts -------------------------------------------------------------------------------- /src/screens/Home/components/HItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/screens/Home/components/HItem/index.tsx -------------------------------------------------------------------------------- /src/screens/Home/components/HItem/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/screens/Home/components/HItem/styles.ts -------------------------------------------------------------------------------- /src/screens/Home/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/screens/Home/components/Header/index.tsx -------------------------------------------------------------------------------- /src/screens/Home/components/Header/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/screens/Home/components/Header/styles.ts -------------------------------------------------------------------------------- /src/screens/Home/components/OnboardModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/screens/Home/components/OnboardModal/index.tsx -------------------------------------------------------------------------------- /src/screens/Home/components/OnboardModal/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/screens/Home/components/OnboardModal/styles.ts -------------------------------------------------------------------------------- /src/screens/Home/components/SignInModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/screens/Home/components/SignInModal/index.tsx -------------------------------------------------------------------------------- /src/screens/Home/components/SignInModal/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/screens/Home/components/SignInModal/styles.ts -------------------------------------------------------------------------------- /src/screens/Home/components/VItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/screens/Home/components/VItem/index.tsx -------------------------------------------------------------------------------- /src/screens/Home/components/VItem/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/screens/Home/components/VItem/styles.ts -------------------------------------------------------------------------------- /src/screens/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/screens/Home/index.tsx -------------------------------------------------------------------------------- /src/screens/Home/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/screens/Home/styles.ts -------------------------------------------------------------------------------- /src/screens/Home/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/src/screens/Home/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lklima/rive-animated-app/HEAD/yarn.lock --------------------------------------------------------------------------------