https://github.com/triple-ade/sticker-smash
https://github.com/triple-ade/sticker-smash
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/triple-ade/sticker-smash
- Owner: TRIPLE-ADE
- Created: 2024-10-04T11:43:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-22T19:51:51.000Z (over 1 year ago)
- Last Synced: 2025-11-15T19:35:40.071Z (7 months ago)
- Language: TypeScript
- Size: 2.04 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sticker-smash React Native Project
A **React Native** application built to smash stickers
## Table of Contents
- [Installation](#installation)
- [Running the Application](#running-the-application)
- [Project Structure](#project-structure)
- [Dependencies](#dependencies)
## Installation
To get started with this project, follow the steps below:
### Prerequisites
Ensure you have the following installed on your machine:
- [Node.js](https://nodejs.org/) (v14+)
- [React Native CLI](https://reactnative.dev/docs/environment-setup) (Optional, if using Expo, install [Expo CLI](https://docs.expo.dev/get-started/installation/))
- [Android Studio](https://developer.android.com/studio) or [Xcode](https://developer.apple.com/xcode/) (for running on Android/iOS simulators)
- A mobile device or emulator for testing.
### Steps
1. Clone this repository:
```bash
git clone https://github.com/TRIPLE-ADE/sticker-smash.git
cd sticker-smash
```
2. Install the dependencies:
```bash
npm install
```
or
```bash
yarn install
```
## Running the Application
### For Android
1. Start the Metro bundler:
```bash
npm start
```
or
```bash
yarn start
```
2. Run the application on an Android emulator or connected device:
```bash
npm run android
```
or
```bash
yarn android
```
### For iOS
1. Start the Metro bundler:
```bash
npm start
```
or
```bash
yarn start
```
2. Run the application on an iOS simulator or connected device:
```bash
npm run ios
```
or
```bash
yarn ios
```
## Project Structure
overview of the project structure:
```
├── components # Reusable components
├── assets # Images, fonts, etc.
├── App.js # Root of the app
├── package.json # Project dependencies and scripts
└── README.md # Guidelines
```
## Dependencies
This project uses the following major dependencies:
- **React Native**: Core framework for building mobile apps
- **React**: React library
- **React Dom**: React DOM
Check `package.json` for a full list of dependencies.