Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Route #2

Merged
merged 3 commits into from
Mar 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 15 additions & 42 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,50 +1,23 @@
# Welcome to your Expo app 👋
Tracker app

This is an [Expo](https://expo.dev) project created with [`create-expo-app`](https://www.npmjs.com/package/create-expo-app).
1. react-native
2. Firebase
3. Google Auth

## Get started
Build locally and test

1. Install dependencies

```bash
npm install
```

2. Start the app
Build for device (apk)
- expo always has googleservices.json issue for local as well as remote
cd android

```bash
npx expo start
```
# Create debug APK
./gradlew assembleRelease

In the output, you'll find options to open the app in a
APK file will be in
android/app/build/outputs/apk/debug/app-debug.apk

- [development build](https://docs.expo.dev/develop/development-builds/introduction/)
- [Android emulator](https://docs.expo.dev/workflow/android-studio-emulator/)
- [iOS simulator](https://docs.expo.dev/workflow/ios-simulator/)
- [Expo Go](https://expo.dev/go), a limited sandbox for trying out app development with Expo

You can start developing by editing the files inside the **app** directory. This project uses [file-based routing](https://docs.expo.dev/router/introduction).

## Get a fresh project

When you're ready, run:

```bash
npm run reset-project
```

This command will move the starter code to the **app-example** directory and create a blank **app** directory where you can start developing.

## Learn more

To learn more about developing your project with Expo, look at the following resources:

- [Expo documentation](https://docs.expo.dev/): Learn fundamentals, or go into advanced topics with our [guides](https://docs.expo.dev/guides).
- [Learn Expo tutorial](https://docs.expo.dev/tutorial/introduction/): Follow a step-by-step tutorial where you'll create a project that runs on Android, iOS, and the web.

## Join the community

Join our community of developers creating universal apps.

- [Expo on GitHub](https://github.com/expo/expo): View our open source platform and contribute.
- [Discord community](https://chat.expo.dev): Chat with Expo users and ask questions.
Pair mac with Android and then use
Bluetooth File Exchange
app to transfer the apk to phone
4 changes: 2 additions & 2 deletions app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
autoVerify: true,
data: [
{
scheme: "com.hiteshjoshi.tracker",
host: "oauth2redirect"
scheme: "tracker",
host: "*"
}
],
category: ["BROWSABLE", "DEFAULT"]
Expand Down
10 changes: 7 additions & 3 deletions app/(tabs)/habits.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//app/(tabs)/habits.tsx
import React, { useState } from 'react';
import {
View,
Expand Down Expand Up @@ -254,15 +255,17 @@ const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
padding: 16,
padding: 0,
},
addButton: {
backgroundColor: '#2c3e50',
padding: 16,
borderRadius: 12,
alignItems: 'center',
marginHorizontal: 16, // Added horizontal margin
marginTop: 16, // Added top margin to create space after DateHeader
marginBottom: 16,
},
},
addButtonText: {
color: '#fff',
fontSize: 16,
Expand Down Expand Up @@ -323,7 +326,8 @@ const styles = StyleSheet.create({
},
habitsList: {
gap: 12,
},
paddingHorizontal: 16, // Added horizontal padding
},
habitCard: {
backgroundColor: '#f8f9fa',
padding: 16,
Expand Down
Loading