From ac5b512632e95f52f6c86fdcc82017beb4900b40 Mon Sep 17 00:00:00 2001 From: yogesh968 Date: Mon, 29 Sep 2025 22:42:22 +0530 Subject: [PATCH 1/3] hello i am commiting something --- .gitignore | 1 + App.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..3c3629e64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/App.js b/App.js index 1fed0daf7..d55df1df2 100644 --- a/App.js +++ b/App.js @@ -20,6 +20,7 @@ const Tab = createBottomTabNavigator(); const Stack = createNativeStackNavigator(); function Tabs() { + const { theme } = useTheme(); return ( - + From a89dd3b023496ad304c16d87f8ad1c6f84470151 Mon Sep 17 00:00:00 2001 From: yogesh968 Date: Tue, 30 Sep 2025 21:56:20 +0530 Subject: [PATCH 2/3] gelo --- App.js | 2 +- screens/HomeScreen.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/App.js b/App.js index d55df1df2..9b86c3620 100644 --- a/App.js +++ b/App.js @@ -70,4 +70,4 @@ export default function App() { ); -} +} \ No newline at end of file diff --git a/screens/HomeScreen.js b/screens/HomeScreen.js index f94ee9861..3d49af8d9 100644 --- a/screens/HomeScreen.js +++ b/screens/HomeScreen.js @@ -6,7 +6,7 @@ import { useExpenses } from '../context/ExpensesContext'; import { isThisMonth } from '../utils/dateRange'; import tw from 'twrnc'; -const categories = ['Food', 'Travel', 'Shopping', 'Bills', 'Others']; +const categories = ['Food', 'Travel', 'Shopping', 'Bills', 'Other']; export default function HomeScreen() { const nav = useNavigation(); From 5a51e6e014ac35eb23f5bf1d87da07718e05bbc6 Mon Sep 17 00:00:00 2001 From: yogesh968 Date: Tue, 30 Sep 2025 22:12:12 +0530 Subject: [PATCH 3/3] I have made a readme file that tell something about my project --- README | 1 + screens/SettingsScreen.js | 1 + 2 files changed, 2 insertions(+) create mode 100644 README diff --git a/README b/README new file mode 100644 index 000000000..337ad0686 --- /dev/null +++ b/README @@ -0,0 +1 @@ +I am making an app that tracks your daily expenses , You can add the expenses into categories . This ensures that where you have spend and how much you have spend also this ensures your daily expenses to control the expenses . \ No newline at end of file diff --git a/screens/SettingsScreen.js b/screens/SettingsScreen.js index 061d54fb2..4acaf5b60 100644 --- a/screens/SettingsScreen.js +++ b/screens/SettingsScreen.js @@ -4,6 +4,7 @@ import { useTheme } from '../context/ThemeContext'; import { clearExpenses, getExpenses } from '../utils/storage'; import tw from 'twrnc'; + function toCSV(rows) { if (!rows || rows.length === 0) return 'id,title,amount,category,date\n'; const header = Object.keys(rows[0]).join(',');