GithubHelp home page GithubHelp logo

irontony / react-native-redux-toolkit-starter-app Goto Github PK

View Code? Open in Web Editor NEW
354.0 6.0 58.0 12.44 MB

๐Ÿ“ฑ๐Ÿš€A POWERFUL React Native starter kit to bootstrap the start of your mobile app development

License: Mozilla Public License 2.0

JavaScript 6.10% Java 10.37% Ruby 3.33% Objective-C 3.18% Starlark 2.66% TypeScript 72.37% Shell 0.20% Objective-C++ 1.77%
react-native redux redux-saga reselect i18next splashscreen starter-kit redux-toolkit

react-native-redux-toolkit-starter-app's Introduction

React Native Redux Toolkit Start App

A React Native boilerplate app to bootstrap your next app with Redux Toolkit and Saga!

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ Upgraded to the latest React-Native (> 0.72.x) with brand New Architecture (Fabric) ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ


๐Ÿ”ฅ๐Ÿ”ฅ Checkout also my brand new React Native React-Query (no redux toolkit) here ๐Ÿ”ฅ๐Ÿ”ฅ

License All Contributors

Issues

Build

Build Build

Buy Me A Coffee

Table of Contents


Installation ๐Ÿ“ฅ

# Setup your project
> npx degit IronTony/react-native-redux-toolkit-starter-app your-new-app

> cd your-new-app

# Install dependencies
> yarn

# if needed, setup iOS development environment
yarn setup:ios

See environment section for how to configure env variables.

See scripts section for how to run the app.


Rename project and bundles ๐Ÿ“ ๐Ÿ“ฆ

To rename the project and bundles, just follow these steps:

iOS & Android

Run npx react-native-rename [name] -b [bundle-identifier] from the project root

Example: npx react-native-rename "Test New App" -b com.testnewapp


Environment Setup ๐ŸŒ

React Native Starter App environments variables management is based on a custom script and the app.json config file.

Define your environment variables inside app.json inside the environments object under the desired environment key (such as development, staging or production) and then run the app for the required env using one of the available run scripts (e.g. ios:dev).

If you want to use IDEs such Xcode or Android Studio, you have to set up the ENV variables with these commands:

  • yarn env:dev, to set the development ENV variables
  • yarn env:stage, to set the staging ENV variables
  • yarn env:prod, to set the production ENV variables

If you want to use this in any file, just:

import env from '@env';

and use like this:

env.API_URL


Scripts ๐Ÿ”ง

Run the app

To run the app use one of the following scripts:

  • yarn android:dev, to start the app on Android with the development environment variables.

  • yarn android:stage, to start the app on Android with the staging environment variables.

  • yarn android:prod, to start the app on Android with the production environment variables.

  • yarn ios:dev, to start the app on iOS with the development environment variables.

  • yarn ios:stage, to start the app on iOS with the staging environment variables.

  • yarn ios:prod, to start the app on iOS with the production environment variables.

If using the ios commands you will receive an error like this:

Just do the following steps:

  • Launch Xcode
  • Settings
  • Locations

Make sure there's a dropdown option selected for the command line tools NOTE: Even if you're seeing Command Line Tools dropdown being selected with proper version, you might want to re-select it again. It will ask for login password.

REMEMBER: The Command Line Tools should be the latest one or the one matching your Xcode version

Generate app icons

To setup the app icons:

  • create an image at least 1024x1024px
  • place it under /assets folder as icon.png
  • run
yarn assets:icons

Generate Splashscreen

To setup the iOS app splashscreen:

  • create an image at least 1242x2208px
  • place it under /assets folder as ios_splashscreen.png
  • run
yarn assets:splashscreen:ios

To setup the Android app splashscreen:

  • create an image at least 150x134px
  • place it under /assets folder as android_splashscreen.png
  • run
yarn assets:splashscreen:android

If you want to customize the output icon, open the package.json file and customized the backgtound color, size, ..... in the following command assets:splashscreen:android

To enabled React-Native (Fabric) new architecture

Check the official documentation here

Setup iOS

To setup the environment to run on iOS, run

yarn setup:ios

this will run cocoapods to install all the required dependencies.

Typescript (optional)

The use of Typescript in the project is not mandatory. You can just write all your code using plain Javascript. Our hint is to create all files as below:

  • files with logic and Views with tsx extension
  • files with Stylesheet and others with ts extension

To enable full Typescript checks, just open the tsconfig.json file and chage as below:

"noImplicitAny": true, // set to true to be explicit and declare all types now<br/>
"strict": true,  // enable it to use fully Typescript set of invasive rules<br/>

REMEMBER: the entry point file in the root of the project MUST be index.js


ATTENTION Circular dependencies script checker

If running this script dependencies:graph, you get this error: Error: Graphviz could not be found. Ensure that "gvpr" is in your $PATH

If you are on a Mac: brew install graphviz On Windows, after installation, do this:

Roadmap ๐Ÿƒ

โœ… Initial Setup
โœ… react-native-bootsplash (https://github.com/zoontek/react-native-bootsplash)
โœ… react-native-toolbox to generate Splashscreen and icons automagically (https://github.com/Forward-Software/react-native-toolbox)
โœ… Standard tree folders structure
โœ… React-Native 0.72.6
โœ… redux-toolkit
โœ… redux-persist (https://github.com/rt2zz/redux-persist)
โœ… React Native Debugger
โœ… redux-saga
โœ… i18next
โœ… react-navigation v6 โค๏ธ
โœ… Tamagui as design system
โœ… Env variables selection experimental way โš—๏ธโš—๏ธโš—๏ธ
โœ… Typescript (optional use. Read the DOC above)


Screenshots


Contributors โœจ

Thanks goes to these wonderful people (emoji key):


IronTony

๐Ÿค” ๐Ÿ’ป ๐Ÿ“– ๐Ÿ› ๐Ÿšง ๐Ÿ“ฆ ๐Ÿ’ฌ ๐Ÿ‘€ โš ๏ธ ๐Ÿ’ก

This project follows the all-contributors specification. Contributions of any kind welcome!


License ๐Ÿ“œ

Licensed under Mozilla Public License Version 2.0

react-native-redux-toolkit-starter-app's People

Contributors

dependabot-preview[bot] avatar dependabot[bot] avatar irontony avatar panz3r 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  avatar  avatar

react-native-redux-toolkit-starter-app's Issues

Switch Redux setup to use Redux Toolkit

Hi, I'm a Redux maintainer. I'd strongly recommend switching the Redux setup and logic in this project to use our new official Redux Toolkit package. It includes utilities to simplify several common Redux use cases, including store setup, defining reducers, immutable update logic, and even creating entire "slices" of state at once:

https://redux-toolkit.js.org

edit

Actually, now that I look further, it seems that the utils/redux.ts file has copy-pasted some of the types and functions from Redux Toolkit. Why not just use Redux Toolkit directly? Also, why not use the createSlice() function from RTK instead of createReducer + createAction ?

Add Screenshots

This repo needs screenshots and especially the sharable screenshot (set in repo settings). I want to share this repo with React Native Newsletter, but screenshots are key.

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.