https://github.com/tanmayvaij/rntodo
A minimal and efficient To-Do app built using React Native (TypeScript) with support for: 📋 Adding, updating, and deleting tasks 🔐 Firebase authentication with Google sign-in ☁️ Realtime Firestore database for storing tasks 💾 Local storage fallback to persist tasks offline
https://github.com/tanmayvaij/rntodo
firebase firebase-auth firebase-database raect-native react react-native-cli reactjs reactnativeapp rnfirebase todoapp todolist
Last synced: 4 months ago
JSON representation
A minimal and efficient To-Do app built using React Native (TypeScript) with support for: 📋 Adding, updating, and deleting tasks 🔐 Firebase authentication with Google sign-in ☁️ Realtime Firestore database for storing tasks 💾 Local storage fallback to persist tasks offline
- Host: GitHub
- URL: https://github.com/tanmayvaij/rntodo
- Owner: tanmayvaij
- Created: 2025-06-04T08:12:20.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-06-22T14:53:51.000Z (7 months ago)
- Last Synced: 2025-06-22T15:41:55.879Z (7 months ago)
- Topics: firebase, firebase-auth, firebase-database, raect-native, react, react-native-cli, reactjs, reactnativeapp, rnfirebase, todoapp, todolist
- Language: TypeScript
- Homepage:
- Size: 2.09 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ✅ React Native To-Do App
A minimal and efficient **To-Do app** built using **React Native (TypeScript)** with support for:
- 📋 Adding, updating, and deleting tasks
- 🔐 Firebase authentication with Google sign-in
- ☁️ Realtime Firestore database for storing tasks
- 💾 Local storage fallback to persist tasks offline
---
## 🚀 Features
- ✍️ Add new tasks
- 🔁 Update existing tasks
- ❌ Delete tasks
- 🔒 Google Sign-In using Firebase Authentication
- ☁️ Sync tasks to Firebase Firestore
- 💡 Uses local storage as a backup mechanism
---
## 🛠️ Tech Stack
| Technology | Purpose |
|------------------|----------------------------------------|
| React Native | Cross-platform mobile development |
| TypeScript | Static typing for improved DX |
| Firebase Auth | Google Sign-In for authentication |
| Firestore DB | Store and sync tasks in the cloud |
| AsyncStorage | Persist tasks locally |
| React Navigation | Navigation between screens |
---
## 📦 Installation
### 1. Clone the Repo
```bash
git clone https://github.com/tanmayvaij/rntodo.git
cd rntodo
```
### 2. Install Dependencies
```bash
npm install
# or
yarn install
```
### 3. Run the App
```bash
npx react-native run-android
# or for iOS
npx react-native run-ios
```
Make sure Metro is running:
```bash
npx react-native start
```
---
## 🔐 Authentication
* Google Sign-In is handled via Firebase Auth.
* On successful login, user session is stored and tasks are fetched from Firestore.
---
## 🧠 Local Storage
* Tasks are cached using **AsyncStorage** for offline support and faster load times.
* Syncs with Firestore on login and task changes.