ax-at / plfx-stack

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PLFX Stack

Made by plfx.dev
If you find this template fruitful, I would appreciate your support!

Monorepo for Web + Mobile

πŸ“¦ Included packages

  • solito for cross-platform navigation
  • moti for animations
  • nativewind v4 for universal theming/design
  • Next.js 14
  • Expo SDK 50
  • Expo Router 3
  • Storybook 7 for documentation and testing of components

πŸ—‚ Folder layout

  • apps entry points for each app

    • expo
    • app you'll be creating files inside of apps/expo/app to use file system routing on iOS and Android.
    • next
  • packages shared packages across apps

    • app you'll be importing most files from app/
      • config shared configuration files, such as tailwind config.
      • ui the shared components for web + native. These are the building blocks of the app.
      • features (I'm told not to organize by screens, but this folder feels alot like screens. idk I like the name features anyway).
      • provider (all the providers that wrap the app, and some no-ops for Web.)

🏁 Start the app

  • Prerequisites:

    • Node v20
  • Install dependencies: npm i

  • Next.js local dev: npm run web

  • Expo local dev:

    • First, build a dev client onto your device or simulator
      • cd apps/expo
      • Then, either expo run:ios, or eas build
    • After building the dev client, from the root of the monorepo...
    • yarn native (This runs expo start --dev-client)

      Make sure npm run web is running first, and then run the mobile app in another shell session.

Testing

  • Running Storybook
    • Storybook local server: npm run web:sb

> The rest of this is from the starter I started from

πŸ‘“ How NativeWind works with Solito

Fast on every platform

NativeWind lets you use Tailwind while reducing runtime work on every platform.

iOS and Android

Most approaches to using Tailwind in React Native do something like this at runtime:

const styles = props.className
  .split(' ')
  .map((className) => makeStyle(className))

return <View style={styles} />

This means that every component ends up parsing strings to construct predictable style objects.

NativeWind takes a new approach by doing this work upfront with a Babel plugin.

NativeWind turns className strings into cached StyleSheet.create objects at build time, avoiding the slow string parsing problem of libraries like styled-components/native.

Keep in mind that the Babel plugin will get used on iOS/Android only; on Web, we don't need the plugin since we are using className.

Web

On Web, NativeWind uses Next.js' PostCSS feature to output CSS StyleSheets.

Which means that on Web, you're using CSS class names.

Yes, that's right. We aren't parsing className strings into objects for React Native Web to use. Instead, we're actually forwarding CSS classnames to the DOM. That means you can get responsive styles, dark mode support, & pseudo-selectors with server-side rendering support.

This is finally possible with the release of React Native Web 0.18.

As a result, using NativeWind with React Native doesn't have significant overhead compared to plain old Tailwind CSS in a regular React app.

If you're planning on making a website with Tailwind, why not use Solito with NativeWind?

You might accidentally make a great native app when you thought you were just making a website.

πŸ†• Add new dependencies

Pure JS dependencies

If you're installing a JavaScript-only dependency that will be used across platforms, install it in packages/app:

cd packages/app
yarn add date-fns
cd ../..
yarn

Native dependencies

If you're installing a library with any native code, you must install it in apps/expo:

cd apps/expo
yarn add react-native-reanimated

cd ../..
yarn

You can also install the native library inside of packages/app if you want to get autoimport for that package inside of the app folder. However, you need to be careful and install the exact same version in both packages. If the versions mismatch at all, you'll potentially get terrible bugs. This is a classic monorepo issue. I use lerna-update-wizard to help with this (you don't need to use Lerna to use that lib).

πŸŽ™ About the creator

Fernando Rojo

Follow Fernando Rojo, creator of solito, on Twitter: @FernandoTheRojo

Mark Lawlor

Follow Mark Lawlor, creator of NativeWind, on Twitter: @mark__lawlor

🧐 Why use Expo + Next.js?

See my talk about this topic at Next.js Conf 2021:

image

About


Languages

Language:TypeScript 72.6%Language:JavaScript 15.5%Language:CSS 10.9%Language:MDX 0.9%