Giter Site home page Giter Site logo

justlaunch-app / expo-router-starter-kit Goto Github PK

View Code? Open in Web Editor NEW
129.0 129.0 18.0 1.97 MB

Opiniated expo-router starter to boost development.

JavaScript 14.95% TypeScript 84.77% CSS 0.28%
boilerplate boilerplate-application boilerplate-template cross-platform expo expo-router expo-starter expo-starter-kit mobile-development nativewind nativewind-reactnative react-native react-native-app react-native-web reactnative template-app zustand

expo-router-starter-kit's People

Contributors

bazhan4ik avatar kewinzaq1 avatar ritmillio avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

expo-router-starter-kit's Issues

Start web not working

Web Bundling failed 488ms
Unable to resolve "react-hook-form" from "src\app\(auth)\sign-in.tsx"

Gettting this error on yarn web

Adding support to socketi

Hi, have you considered to add support to soketi, an open source messaging framework, a good alternative to oneSignal to deliver push messages? It's running on cloudflare but also on premise (railway has added support on their VMs/VPS).
Their twitter https://twitter.com/soketirealtime

you maybe like using alias path import

in this line for ex: https://github.com/ritmillio/expo-starter-kit/blob/main/src/app/modal.tsx#L6

you can change this:
import { Text, View } from './../context/Themed
for this ->
import { Text, View } from '_context/Themed

with this config:

// babel.config.js
process.env.EXPO_ROUTER_APP_ROOT = '../../src/app';

module.exports = function (api) {
  api.cache(true);
  return {
   ...
    plugins: [
    ...
      [
        'module-resolver',
        {
          root: ['./'],
          extensions: ['.js', '.ts', '.tsx', '.json'],
          alias: {
            _context: './src/context',
          },
        },
      ],
    ],
  };
};

and:

tsconfig.json
{
  "compilerOptions": {
    // for alias import
    "baseUrl": "./",
    "paths": {
      "_context": ["src/context/index.ts"],
    },
    "plugins": [
      ...
    ]
  },
  "extends": "expo/tsconfig.base",
  "typeRoots": ["./src/types"],
}

and yarn add -D babel-plugin-module-resolver

3rd party libraries compatibility with expo-router

hello

stumbled upon your repo looking for an answer to this question...

is flashlist incompatible with expo-router? his is the only place where I can find some evidence that it is! it's been breaking in my iOS simulator whenever I try to use it...

do you happen to know why exactly it isn't compatible?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.