Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ahmedsomaa/blaze
Blaze is an all-encompassing React Native boilerplate, meticulously crafted to ignite your development process.
https://github.com/ahmedsomaa/blaze
expo react-native react-native-paper react-navigation typescript
Last synced: 6 days ago
JSON representation
Blaze is an all-encompassing React Native boilerplate, meticulously crafted to ignite your development process.
- Host: GitHub
- URL: https://github.com/ahmedsomaa/blaze
- Owner: ahmedsomaa
- License: mit
- Created: 2023-06-05T14:28:03.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-05T17:07:29.000Z (over 1 year ago)
- Last Synced: 2024-05-21T03:01:01.654Z (7 months ago)
- Topics: expo, react-native, react-native-paper, react-navigation, typescript
- Language: TypeScript
- Homepage:
- Size: 322 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# π₯Blaze ![language](https://img.shields.io/badge/language-typescript-blue.svg)
> React-Native boilerplate
Blaze is an `all-encompassing` React Native boilerplate, meticulously crafted to ignite your development process.
## π Table of Contents
- [Integrations](#integrations)
- [Installation](#package-installation)
- [Usage](#rocket-usage)
- [Support](#hammer_and_wrench-support)
- [Contributing](#memo-contributing)
- [License](#scroll-license)## π¦ Integrations
This boilerplate is powered by:
- [React Navigation](https://reactnavigation.org/).
- [React Native Paper](https://callstack.github.io/react-native-paper/).## βοΈ Installation
Before using this boilerplate, you need to check if you have `Node.js` and `NPM` installed on your computer.
To check if you have `Node.js` installed, run this command in your terminal:
```sh
node -v
```If you get an answer like this, it means that `Node.js` is installed and you may go to the [next section](#scaffolding-your-app).
```sh
v18.16.0
```To confirm that you have `NPM` installed you can run this command in your terminal:
```sh
npm -v
```If you get an answer like this, it means that `Node.js` is installed and you may go to the [next section](#scaffolding-your-app).
```sh
9.5.1
```If `Node.js` or `NPM` is not installed you can install them on [this link](https://nodejs.org/en/) or use [Node Version Manager](https://github.com/nvm-sh/nvm).
Don't forget to update `NPM` after installing `Node.js`:
```sh
npm install npm@latest -g
```### Scaffolding your app
Install [degit](https://github.com/Rich-Harris/degit).
```sh
npm install -g degit
```Scaffold your project into a new folder
```sh
degit https://github.com/som3aware/blaze my-app-folder
```Install project dependencies
```sh
cd my-app-foler
npm install
```## π Usage
### Theming
The colors follow the react native paper `MD2Colors` and react navigation `Theme.colors` interfaces. To add your app colors, open [/themes/index.ts](./src/theme/index.ts) and change the values of the colors.
#### MD2Colors
- `primary` - primary color for your app, usually your brand color.
- `accent` - secondary color for your app which complements the primary color.
- `background` - background color for pages, such as lists.
- `surface` - background color for elements containing content, such as cards.
- `text` - text color for content.
- `disabled` - color for disabled elements.
- `placeholder` - color for placeholder text, such as input placeholder.
- `backdrop` - color for backdrops of various components such as modals.
- `onSurface` - background color for snackbars
- `notification` - background color for badges#### Theme.colors
- `primary` - primary color of the app used to tint various elements. Usually you'll want to use your brand color for this.
- `background`: color of various backgrounds, such as background color for the screens.
- `card`: background color of card-like elements, such as headers, tab bars etc.
- `text`: text color of various elements.
- `border`: color of borders, e.g. header border, tab bar border etc.
- `notification`: color of Tab Navigator badge.### Screens
- Define your screens under [/screens](./src/screens/).
- Follow the screen structure in [One.tsx](./src/screens/One.tsx).
- Export your screen from [/screens/index.ts](./src/screens/index.ts).### Navigation
Add your application stack navigation screens in [AppStackNavigator.tsx](./src/navigation/AppStackNavigator.tsx)
## π οΈ Support
Please [open an issue](https://github.com/som3aware/blaze/issues/new) for support.
## π Contributing
Clone the repo and reate a branch, add commits, and [open a pull request](https://github.com/som3aware/blaze/compare/).
## π License
[MIT](./LICENSE) Β© [Ahmed Ismail](https://github.com/som3aware)