├── .babelrc ├── .env ├── .gitattributes ├── .gitignore ├── .prettierignore ├── .solidarity ├── .watchmanconfig ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Montserrat-Black.ttf │ │ │ ├── Montserrat-BlackItalic.ttf │ │ │ ├── Montserrat-Bold.ttf │ │ │ ├── Montserrat-BoldItalic.ttf │ │ │ ├── Montserrat-ExtraBold.ttf │ │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ │ ├── Montserrat-ExtraLight.ttf │ │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ │ ├── Montserrat-Italic.ttf │ │ │ ├── Montserrat-Light.ttf │ │ │ ├── Montserrat-LightItalic.ttf │ │ │ ├── Montserrat-Medium.ttf │ │ │ ├── Montserrat-MediumItalic.ttf │ │ │ ├── Montserrat-Regular.ttf │ │ │ ├── Montserrat-SemiBold.ttf │ │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ │ ├── Montserrat-Thin.ttf │ │ │ └── Montserrat-ThinItalic.ttf │ │ ├── java │ │ └── com │ │ │ └── trailblazers │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── app ├── app.tsx ├── components │ ├── bullet-item │ │ ├── bullet-item.tsx │ │ └── index.ts │ ├── button │ │ ├── button.presets.ts │ │ ├── button.props.ts │ │ ├── button.story.tsx │ │ ├── button.tsx │ │ └── index.ts │ ├── checkbox │ │ ├── checkbox.props.ts │ │ ├── checkbox.story.tsx │ │ ├── checkbox.tsx │ │ └── index.ts │ ├── form-row │ │ ├── form-row.presets.ts │ │ ├── form-row.props.tsx │ │ ├── form-row.story.tsx │ │ ├── form-row.tsx │ │ └── index.ts │ ├── header │ │ ├── header.props.ts │ │ ├── header.story.tsx │ │ ├── header.tsx │ │ └── index.ts │ ├── icon │ │ ├── icon.props.ts │ │ ├── icon.story.tsx │ │ ├── icon.tsx │ │ ├── icons │ │ │ ├── arrow-left.png │ │ │ ├── arrow-left@2x.png │ │ │ ├── bullet.png │ │ │ ├── bullet@2x.png │ │ │ └── index.ts │ │ └── index.ts │ ├── screen │ │ ├── index.ts │ │ ├── screen.presets.ts │ │ ├── screen.props.ts │ │ └── screen.tsx │ ├── switch │ │ ├── index.ts │ │ ├── switch.props.ts │ │ ├── switch.story.tsx │ │ └── switch.tsx │ ├── text-field │ │ ├── index.ts │ │ ├── text-field.props.ts │ │ ├── text-field.story.tsx │ │ └── text-field.tsx │ ├── text │ │ ├── index.ts │ │ ├── text.presets.ts │ │ ├── text.props.ts │ │ ├── text.story.tsx │ │ └── text.tsx │ └── wallpaper │ │ ├── BG.png │ │ ├── bg@2x.png │ │ ├── index.ts │ │ ├── wallpaper.presets.ts │ │ ├── wallpaper.props.ts │ │ ├── wallpaper.story.tsx │ │ └── wallpaper.tsx ├── i18n │ ├── en.json │ ├── i18n.ts │ ├── index.ts │ ├── ja.json │ └── translate.ts ├── models │ ├── environment.ts │ ├── extensions │ │ ├── index.ts │ │ ├── with-environment.ts │ │ ├── with-root-store.ts │ │ ├── with-status.test.ts │ │ └── with-status.ts │ └── root-store │ │ ├── index.ts │ │ ├── player-data.json │ │ ├── root-store-context.ts │ │ ├── root-store.ts │ │ └── setup-root-store.ts ├── navigation │ ├── back-button-handler.tsx │ ├── index.ts │ ├── navigation-events.ts │ ├── navigation-store.ts │ ├── primary-navigator.ts │ ├── root-navigator.ts │ └── stateful-navigator.tsx ├── screens │ ├── demo-screen │ │ ├── demo-screen.tsx │ │ ├── heart.png │ │ ├── heart@2x.png │ │ ├── index.ts │ │ ├── logo-ignite@1x.png │ │ └── logo-ignite@2x.png │ ├── details-screen │ │ ├── details-screen.tsx │ │ └── index.ts │ └── welcome-screen │ │ ├── blazers.png │ │ ├── bowser.png │ │ ├── bowser@2x.png │ │ ├── index.ts │ │ └── welcome-screen.tsx ├── services │ ├── api │ │ ├── api-config.ts │ │ ├── api-problem.test.ts │ │ ├── api-problem.ts │ │ ├── api.ts │ │ ├── api.types.ts │ │ └── index.ts │ └── reactotron │ │ ├── index.ts │ │ ├── reactotron-config.ts │ │ └── reactotron.ts ├── theme │ ├── color.ts │ ├── fonts │ │ ├── Montserrat-Black.ttf │ │ ├── Montserrat-BlackItalic.ttf │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-BoldItalic.ttf │ │ ├── Montserrat-ExtraBold.ttf │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ ├── Montserrat-ExtraLight.ttf │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ ├── Montserrat-Italic.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-LightItalic.ttf │ │ ├── Montserrat-Medium.ttf │ │ ├── Montserrat-MediumItalic.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── Montserrat-SemiBold.ttf │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ ├── Montserrat-Thin.ttf │ │ └── Montserrat-ThinItalic.ttf │ ├── index.ts │ ├── palette.ts │ ├── spacing.ts │ ├── timing.ts │ └── typography.ts └── utils │ ├── delay.ts │ ├── keychain.ts │ ├── storage │ ├── index.ts │ ├── storage.test.ts │ └── storage.ts │ └── validate.ts ├── babel.config.js ├── bin └── setup ├── e2e ├── README.md ├── config.json ├── firstTest.spec.js └── init.js ├── ignite ├── ignite.json └── plugins │ └── .gitkeep ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── TrailBlazers-tvOS │ └── Info.plist ├── TrailBlazers-tvOSTests │ └── Info.plist ├── TrailBlazers.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── TrailBlazers-tvOS.xcscheme │ │ └── TrailBlazers.xcscheme ├── TrailBlazers.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── TrailBlazers │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── TrailBlazersTests │ ├── Info.plist │ └── TrailBlazersTests.m ├── metro.config.js ├── package.json ├── react-native.config.js ├── storybook ├── index.ts ├── storybook-registry.ts ├── storybook.tsx └── views │ ├── index.ts │ ├── story-screen.tsx │ ├── story.tsx │ └── use-case.tsx ├── test ├── __snapshots__ │ └── storyshots.test.ts.snap ├── mock-async-storage.ts ├── mock-i18n.ts ├── mock-react-native-localize.ts ├── mock-reactotron.ts ├── mock-textinput.ts ├── setup.ts └── storyshots.test.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/.babelrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/.prettierignore -------------------------------------------------------------------------------- /.solidarity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/.solidarity -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-BlackItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-BoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-LightItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-MediumItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/assets/fonts/Montserrat-ThinItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/trailblazers/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/java/com/trailblazers/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/trailblazers/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/java/com/trailblazers/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/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/jamonholmgren/TrailBlazers/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/jamonholmgren/TrailBlazers/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/jamonholmgren/TrailBlazers/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/jamonholmgren/TrailBlazers/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/jamonholmgren/TrailBlazers/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/jamonholmgren/TrailBlazers/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/jamonholmgren/TrailBlazers/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/jamonholmgren/TrailBlazers/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/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app.json -------------------------------------------------------------------------------- /app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/app.tsx -------------------------------------------------------------------------------- /app/components/bullet-item/bullet-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/bullet-item/bullet-item.tsx -------------------------------------------------------------------------------- /app/components/bullet-item/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./bullet-item" 2 | -------------------------------------------------------------------------------- /app/components/button/button.presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/button/button.presets.ts -------------------------------------------------------------------------------- /app/components/button/button.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/button/button.props.ts -------------------------------------------------------------------------------- /app/components/button/button.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/button/button.story.tsx -------------------------------------------------------------------------------- /app/components/button/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/button/button.tsx -------------------------------------------------------------------------------- /app/components/button/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./button" 2 | -------------------------------------------------------------------------------- /app/components/checkbox/checkbox.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/checkbox/checkbox.props.ts -------------------------------------------------------------------------------- /app/components/checkbox/checkbox.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/checkbox/checkbox.story.tsx -------------------------------------------------------------------------------- /app/components/checkbox/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/checkbox/checkbox.tsx -------------------------------------------------------------------------------- /app/components/checkbox/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./checkbox" 2 | -------------------------------------------------------------------------------- /app/components/form-row/form-row.presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/form-row/form-row.presets.ts -------------------------------------------------------------------------------- /app/components/form-row/form-row.props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/form-row/form-row.props.tsx -------------------------------------------------------------------------------- /app/components/form-row/form-row.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/form-row/form-row.story.tsx -------------------------------------------------------------------------------- /app/components/form-row/form-row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/form-row/form-row.tsx -------------------------------------------------------------------------------- /app/components/form-row/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./form-row" 2 | -------------------------------------------------------------------------------- /app/components/header/header.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/header/header.props.ts -------------------------------------------------------------------------------- /app/components/header/header.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/header/header.story.tsx -------------------------------------------------------------------------------- /app/components/header/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/header/header.tsx -------------------------------------------------------------------------------- /app/components/header/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./header" 2 | -------------------------------------------------------------------------------- /app/components/icon/icon.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/icon/icon.props.ts -------------------------------------------------------------------------------- /app/components/icon/icon.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/icon/icon.story.tsx -------------------------------------------------------------------------------- /app/components/icon/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/icon/icon.tsx -------------------------------------------------------------------------------- /app/components/icon/icons/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/icon/icons/arrow-left.png -------------------------------------------------------------------------------- /app/components/icon/icons/arrow-left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/icon/icons/arrow-left@2x.png -------------------------------------------------------------------------------- /app/components/icon/icons/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/icon/icons/bullet.png -------------------------------------------------------------------------------- /app/components/icon/icons/bullet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/icon/icons/bullet@2x.png -------------------------------------------------------------------------------- /app/components/icon/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/icon/icons/index.ts -------------------------------------------------------------------------------- /app/components/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/icon/index.ts -------------------------------------------------------------------------------- /app/components/screen/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./screen" 2 | -------------------------------------------------------------------------------- /app/components/screen/screen.presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/screen/screen.presets.ts -------------------------------------------------------------------------------- /app/components/screen/screen.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/screen/screen.props.ts -------------------------------------------------------------------------------- /app/components/screen/screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/screen/screen.tsx -------------------------------------------------------------------------------- /app/components/switch/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./switch" 2 | -------------------------------------------------------------------------------- /app/components/switch/switch.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/switch/switch.props.ts -------------------------------------------------------------------------------- /app/components/switch/switch.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/switch/switch.story.tsx -------------------------------------------------------------------------------- /app/components/switch/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/switch/switch.tsx -------------------------------------------------------------------------------- /app/components/text-field/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./text-field" 2 | -------------------------------------------------------------------------------- /app/components/text-field/text-field.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/text-field/text-field.props.ts -------------------------------------------------------------------------------- /app/components/text-field/text-field.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/text-field/text-field.story.tsx -------------------------------------------------------------------------------- /app/components/text-field/text-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/text-field/text-field.tsx -------------------------------------------------------------------------------- /app/components/text/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./text" 2 | -------------------------------------------------------------------------------- /app/components/text/text.presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/text/text.presets.ts -------------------------------------------------------------------------------- /app/components/text/text.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/text/text.props.ts -------------------------------------------------------------------------------- /app/components/text/text.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/text/text.story.tsx -------------------------------------------------------------------------------- /app/components/text/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/text/text.tsx -------------------------------------------------------------------------------- /app/components/wallpaper/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/wallpaper/BG.png -------------------------------------------------------------------------------- /app/components/wallpaper/bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/wallpaper/bg@2x.png -------------------------------------------------------------------------------- /app/components/wallpaper/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./wallpaper" 2 | -------------------------------------------------------------------------------- /app/components/wallpaper/wallpaper.presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/wallpaper/wallpaper.presets.ts -------------------------------------------------------------------------------- /app/components/wallpaper/wallpaper.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/wallpaper/wallpaper.props.ts -------------------------------------------------------------------------------- /app/components/wallpaper/wallpaper.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/wallpaper/wallpaper.story.tsx -------------------------------------------------------------------------------- /app/components/wallpaper/wallpaper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/components/wallpaper/wallpaper.tsx -------------------------------------------------------------------------------- /app/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/i18n/en.json -------------------------------------------------------------------------------- /app/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/i18n/i18n.ts -------------------------------------------------------------------------------- /app/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/i18n/index.ts -------------------------------------------------------------------------------- /app/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/i18n/ja.json -------------------------------------------------------------------------------- /app/i18n/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/i18n/translate.ts -------------------------------------------------------------------------------- /app/models/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/models/environment.ts -------------------------------------------------------------------------------- /app/models/extensions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/models/extensions/index.ts -------------------------------------------------------------------------------- /app/models/extensions/with-environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/models/extensions/with-environment.ts -------------------------------------------------------------------------------- /app/models/extensions/with-root-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/models/extensions/with-root-store.ts -------------------------------------------------------------------------------- /app/models/extensions/with-status.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/models/extensions/with-status.test.ts -------------------------------------------------------------------------------- /app/models/extensions/with-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/models/extensions/with-status.ts -------------------------------------------------------------------------------- /app/models/root-store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/models/root-store/index.ts -------------------------------------------------------------------------------- /app/models/root-store/player-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/models/root-store/player-data.json -------------------------------------------------------------------------------- /app/models/root-store/root-store-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/models/root-store/root-store-context.ts -------------------------------------------------------------------------------- /app/models/root-store/root-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/models/root-store/root-store.ts -------------------------------------------------------------------------------- /app/models/root-store/setup-root-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/models/root-store/setup-root-store.ts -------------------------------------------------------------------------------- /app/navigation/back-button-handler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/navigation/back-button-handler.tsx -------------------------------------------------------------------------------- /app/navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/navigation/index.ts -------------------------------------------------------------------------------- /app/navigation/navigation-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/navigation/navigation-events.ts -------------------------------------------------------------------------------- /app/navigation/navigation-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/navigation/navigation-store.ts -------------------------------------------------------------------------------- /app/navigation/primary-navigator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/navigation/primary-navigator.ts -------------------------------------------------------------------------------- /app/navigation/root-navigator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/navigation/root-navigator.ts -------------------------------------------------------------------------------- /app/navigation/stateful-navigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/navigation/stateful-navigator.tsx -------------------------------------------------------------------------------- /app/screens/demo-screen/demo-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/screens/demo-screen/demo-screen.tsx -------------------------------------------------------------------------------- /app/screens/demo-screen/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/screens/demo-screen/heart.png -------------------------------------------------------------------------------- /app/screens/demo-screen/heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/screens/demo-screen/heart@2x.png -------------------------------------------------------------------------------- /app/screens/demo-screen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/screens/demo-screen/index.ts -------------------------------------------------------------------------------- /app/screens/demo-screen/logo-ignite@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/screens/demo-screen/logo-ignite@1x.png -------------------------------------------------------------------------------- /app/screens/demo-screen/logo-ignite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/screens/demo-screen/logo-ignite@2x.png -------------------------------------------------------------------------------- /app/screens/details-screen/details-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/screens/details-screen/details-screen.tsx -------------------------------------------------------------------------------- /app/screens/details-screen/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./details-screen" 2 | -------------------------------------------------------------------------------- /app/screens/welcome-screen/blazers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/screens/welcome-screen/blazers.png -------------------------------------------------------------------------------- /app/screens/welcome-screen/bowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/screens/welcome-screen/bowser.png -------------------------------------------------------------------------------- /app/screens/welcome-screen/bowser@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/screens/welcome-screen/bowser@2x.png -------------------------------------------------------------------------------- /app/screens/welcome-screen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/screens/welcome-screen/index.ts -------------------------------------------------------------------------------- /app/screens/welcome-screen/welcome-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/screens/welcome-screen/welcome-screen.tsx -------------------------------------------------------------------------------- /app/services/api/api-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/services/api/api-config.ts -------------------------------------------------------------------------------- /app/services/api/api-problem.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/services/api/api-problem.test.ts -------------------------------------------------------------------------------- /app/services/api/api-problem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/services/api/api-problem.ts -------------------------------------------------------------------------------- /app/services/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/services/api/api.ts -------------------------------------------------------------------------------- /app/services/api/api.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/services/api/api.types.ts -------------------------------------------------------------------------------- /app/services/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/services/api/index.ts -------------------------------------------------------------------------------- /app/services/reactotron/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./reactotron" 2 | -------------------------------------------------------------------------------- /app/services/reactotron/reactotron-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/services/reactotron/reactotron-config.ts -------------------------------------------------------------------------------- /app/services/reactotron/reactotron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/services/reactotron/reactotron.ts -------------------------------------------------------------------------------- /app/theme/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/color.ts -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-Black.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-BlackItalic.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-BoldItalic.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-Light.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-LightItalic.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-MediumItalic.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /app/theme/fonts/Montserrat-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/fonts/Montserrat-ThinItalic.ttf -------------------------------------------------------------------------------- /app/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/index.ts -------------------------------------------------------------------------------- /app/theme/palette.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/palette.ts -------------------------------------------------------------------------------- /app/theme/spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/spacing.ts -------------------------------------------------------------------------------- /app/theme/timing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/timing.ts -------------------------------------------------------------------------------- /app/theme/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/theme/typography.ts -------------------------------------------------------------------------------- /app/utils/delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/utils/delay.ts -------------------------------------------------------------------------------- /app/utils/keychain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/utils/keychain.ts -------------------------------------------------------------------------------- /app/utils/storage/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./storage" 2 | -------------------------------------------------------------------------------- /app/utils/storage/storage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/utils/storage/storage.test.ts -------------------------------------------------------------------------------- /app/utils/storage/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/utils/storage/storage.ts -------------------------------------------------------------------------------- /app/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/app/utils/validate.ts -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/bin/setup -------------------------------------------------------------------------------- /e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/e2e/README.md -------------------------------------------------------------------------------- /e2e/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/e2e/config.json -------------------------------------------------------------------------------- /e2e/firstTest.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/e2e/firstTest.spec.js -------------------------------------------------------------------------------- /e2e/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/e2e/init.js -------------------------------------------------------------------------------- /ignite/ignite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ignite/ignite.json -------------------------------------------------------------------------------- /ignite/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/TrailBlazers-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazers-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/TrailBlazers-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazers-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/TrailBlazers.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazers.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/TrailBlazers.xcodeproj/xcshareddata/xcschemes/TrailBlazers-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazers.xcodeproj/xcshareddata/xcschemes/TrailBlazers-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/TrailBlazers.xcodeproj/xcshareddata/xcschemes/TrailBlazers.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazers.xcodeproj/xcshareddata/xcschemes/TrailBlazers.xcscheme -------------------------------------------------------------------------------- /ios/TrailBlazers.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazers.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/TrailBlazers.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazers.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/TrailBlazers/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazers/AppDelegate.h -------------------------------------------------------------------------------- /ios/TrailBlazers/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazers/AppDelegate.m -------------------------------------------------------------------------------- /ios/TrailBlazers/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazers/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/TrailBlazers/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazers/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/TrailBlazers/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazers/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/TrailBlazers/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazers/Info.plist -------------------------------------------------------------------------------- /ios/TrailBlazers/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazers/main.m -------------------------------------------------------------------------------- /ios/TrailBlazersTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazersTests/Info.plist -------------------------------------------------------------------------------- /ios/TrailBlazersTests/TrailBlazersTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/ios/TrailBlazersTests/TrailBlazersTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | assets: ["./app/theme/fonts/"], 3 | } 4 | -------------------------------------------------------------------------------- /storybook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/storybook/index.ts -------------------------------------------------------------------------------- /storybook/storybook-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/storybook/storybook-registry.ts -------------------------------------------------------------------------------- /storybook/storybook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/storybook/storybook.tsx -------------------------------------------------------------------------------- /storybook/views/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/storybook/views/index.ts -------------------------------------------------------------------------------- /storybook/views/story-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/storybook/views/story-screen.tsx -------------------------------------------------------------------------------- /storybook/views/story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/storybook/views/story.tsx -------------------------------------------------------------------------------- /storybook/views/use-case.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/storybook/views/use-case.tsx -------------------------------------------------------------------------------- /test/__snapshots__/storyshots.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/test/__snapshots__/storyshots.test.ts.snap -------------------------------------------------------------------------------- /test/mock-async-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/test/mock-async-storage.ts -------------------------------------------------------------------------------- /test/mock-i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/test/mock-i18n.ts -------------------------------------------------------------------------------- /test/mock-react-native-localize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/test/mock-react-native-localize.ts -------------------------------------------------------------------------------- /test/mock-reactotron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/test/mock-reactotron.ts -------------------------------------------------------------------------------- /test/mock-textinput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/test/mock-textinput.ts -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/test/setup.ts -------------------------------------------------------------------------------- /test/storyshots.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/test/storyshots.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamonholmgren/TrailBlazers/HEAD/yarn.lock --------------------------------------------------------------------------------