├── .gitignore ├── DUMMY.env ├── README.md ├── app.json ├── app ├── (app) │ ├── (authenticated) │ │ ├── (tabs) │ │ │ ├── _layout.tsx │ │ │ ├── _layout.web.tsx │ │ │ ├── index.tsx │ │ │ ├── my-content.tsx │ │ │ └── profile.tsx │ │ ├── _layout.tsx │ │ ├── _layout.web.tsx │ │ ├── course │ │ │ └── [slug] │ │ │ │ ├── [lesson] │ │ │ │ ├── _layout.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── overview.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── index.web.tsx │ │ └── courses.tsx │ └── _layout.tsx ├── +html.tsx ├── +not-found.tsx ├── _layout.tsx ├── api │ └── add-user-course+api.ts ├── index.tsx ├── login.tsx ├── soon.tsx └── wait.tsx ├── assets ├── fonts │ └── SpaceMono-Regular.ttf └── images │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ ├── intro.png │ ├── partial-react-logo.png │ ├── react-logo.png │ ├── react-logo@2x.png │ ├── react-logo@3x.png │ ├── splash-icon.png │ └── yoga.png ├── babel.config.js ├── banner.png ├── bun.lock ├── components ├── CourseCard.tsx ├── HomeBlock.tsx ├── RichtTextContent.tsx └── TabBarBackground.ios.tsx ├── eas.json ├── global.css ├── metro.config.js ├── nativewind-env.d.ts ├── package.json ├── providers ├── RevenueCat.d.ts ├── RevenueCatProvider.tsx ├── RevenueCatProvider.web.tsx └── StrapiProvider.tsx ├── screenshots ├── app1.png ├── app2.png ├── app3.png ├── app4.png ├── app5.png ├── app6.png ├── app7.png ├── browse.gif ├── course.gif ├── strapi1.png ├── strapi2.png ├── strapi3.png ├── strapi4.png ├── strapi5.png ├── web1.png ├── web2.png ├── web3.png ├── web4.png ├── web5.png └── web6.png ├── tailwind.config.js ├── tsconfig.json ├── types └── interfaces.ts └── utils └── cache.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /DUMMY.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/DUMMY.env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app.json -------------------------------------------------------------------------------- /app/(app)/(authenticated)/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/(app)/(authenticated)/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/(tabs)/_layout.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/(app)/(authenticated)/(tabs)/_layout.web.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/(app)/(authenticated)/(tabs)/index.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/(tabs)/my-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/(app)/(authenticated)/(tabs)/my-content.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/(tabs)/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/(app)/(authenticated)/(tabs)/profile.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/(app)/(authenticated)/_layout.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/_layout.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/(app)/(authenticated)/_layout.web.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/course/[slug]/[lesson]/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/(app)/(authenticated)/course/[slug]/[lesson]/_layout.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/course/[slug]/[lesson]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/(app)/(authenticated)/course/[slug]/[lesson]/index.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/course/[slug]/[lesson]/overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/(app)/(authenticated)/course/[slug]/[lesson]/overview.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/course/[slug]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/(app)/(authenticated)/course/[slug]/index.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/course/[slug]/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/(app)/(authenticated)/course/[slug]/index.web.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/courses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/(app)/(authenticated)/courses.tsx -------------------------------------------------------------------------------- /app/(app)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/(app)/_layout.tsx -------------------------------------------------------------------------------- /app/+html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/+html.tsx -------------------------------------------------------------------------------- /app/+not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/+not-found.tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /app/api/add-user-course+api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/api/add-user-course+api.ts -------------------------------------------------------------------------------- /app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/index.tsx -------------------------------------------------------------------------------- /app/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/login.tsx -------------------------------------------------------------------------------- /app/soon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/soon.tsx -------------------------------------------------------------------------------- /app/wait.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/app/wait.tsx -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/assets/images/intro.png -------------------------------------------------------------------------------- /assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /assets/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/assets/images/react-logo.png -------------------------------------------------------------------------------- /assets/images/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/assets/images/react-logo@2x.png -------------------------------------------------------------------------------- /assets/images/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/assets/images/react-logo@3x.png -------------------------------------------------------------------------------- /assets/images/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/assets/images/splash-icon.png -------------------------------------------------------------------------------- /assets/images/yoga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/assets/images/yoga.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/banner.png -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/bun.lock -------------------------------------------------------------------------------- /components/CourseCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/components/CourseCard.tsx -------------------------------------------------------------------------------- /components/HomeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/components/HomeBlock.tsx -------------------------------------------------------------------------------- /components/RichtTextContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/components/RichtTextContent.tsx -------------------------------------------------------------------------------- /components/TabBarBackground.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/components/TabBarBackground.ios.tsx -------------------------------------------------------------------------------- /eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/eas.json -------------------------------------------------------------------------------- /global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/global.css -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/metro.config.js -------------------------------------------------------------------------------- /nativewind-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/nativewind-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/package.json -------------------------------------------------------------------------------- /providers/RevenueCat.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/providers/RevenueCat.d.ts -------------------------------------------------------------------------------- /providers/RevenueCatProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/providers/RevenueCatProvider.tsx -------------------------------------------------------------------------------- /providers/RevenueCatProvider.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/providers/RevenueCatProvider.web.tsx -------------------------------------------------------------------------------- /providers/StrapiProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/providers/StrapiProvider.tsx -------------------------------------------------------------------------------- /screenshots/app1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/app1.png -------------------------------------------------------------------------------- /screenshots/app2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/app2.png -------------------------------------------------------------------------------- /screenshots/app3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/app3.png -------------------------------------------------------------------------------- /screenshots/app4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/app4.png -------------------------------------------------------------------------------- /screenshots/app5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/app5.png -------------------------------------------------------------------------------- /screenshots/app6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/app6.png -------------------------------------------------------------------------------- /screenshots/app7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/app7.png -------------------------------------------------------------------------------- /screenshots/browse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/browse.gif -------------------------------------------------------------------------------- /screenshots/course.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/course.gif -------------------------------------------------------------------------------- /screenshots/strapi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/strapi1.png -------------------------------------------------------------------------------- /screenshots/strapi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/strapi2.png -------------------------------------------------------------------------------- /screenshots/strapi3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/strapi3.png -------------------------------------------------------------------------------- /screenshots/strapi4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/strapi4.png -------------------------------------------------------------------------------- /screenshots/strapi5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/strapi5.png -------------------------------------------------------------------------------- /screenshots/web1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/web1.png -------------------------------------------------------------------------------- /screenshots/web2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/web2.png -------------------------------------------------------------------------------- /screenshots/web3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/web3.png -------------------------------------------------------------------------------- /screenshots/web4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/web4.png -------------------------------------------------------------------------------- /screenshots/web5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/web5.png -------------------------------------------------------------------------------- /screenshots/web6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/screenshots/web6.png -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/types/interfaces.ts -------------------------------------------------------------------------------- /utils/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/lms-react-native/HEAD/utils/cache.ts --------------------------------------------------------------------------------