Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 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
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
32 changes: 31 additions & 1 deletion blotztask-mobile/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,34 @@ expo-env.d.ts
.expo/

# misc
.DS_Store
.DS_Store

# vscode
.vscode/
.vscode/settings.json


# ========== iOS-specific ignores ==========

# 1. Xcode build artifacts
ios/build/
ios/DerivedData/

# 2. CocoaPods dependencies
ios/Pods/

# 3. Xcode workspace data
ios/*.xcworkspace/
ios/*.xcodeproj/project.xcworkspace/
ios/*.xcodeproj/xcuserdata/
ios/*.xcodeproj/xcshareddata/
ios/*.xcodeproj/xcshareddata/xcschemes/
ios/*.xcodeproj/xcuserdata/

# 4. iOS metadata
ios/.DS_Store
ios/.idea/
ios/.vscode/
ios/.xcode.env.local


3 changes: 3 additions & 0 deletions blotztask-mobile/app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,22 @@ import NotificationsScreen from "@/src/feature/notification/notification-screen"
import ProfileScreen from "@/src/feature/profile/profile-screen";
import { useState } from "react";
import { BottomNavigation } from "react-native-paper";
import CalendarPage from "@/src/feature/calendars/calendar-screen";

const routes = [
{ key: "home", title: "Home", focusedIcon: "home", unfocusedIcon: "home-outline" },
{ key: "ai", title: "AI Tasks", focusedIcon: "robot", unfocusedIcon: "robot-outline" },
{ key: "notifications", title: "Settings", focusedIcon: "bell", unfocusedIcon: "bell-outline" },
{ key: "profile", title: "Profile", focusedIcon: "account", unfocusedIcon: "account-outline" },
{ key: "calendar", title: "Calendar", focusedIcon: "calendar", unfocusedIcon: "calendar-outline" },
];

const renderScene = BottomNavigation.SceneMap({
home: HomeScreen,
ai: AIScreen,
notifications: NotificationsScreen,
profile: ProfileScreen,
calendar: CalendarPage,
});

export default function Index() {
Expand Down
Loading
Loading