├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── README.md ├── __tests__ └── App.test.tsx ├── _bundle └── config ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── expensetracker │ │ │ └── ReactNativeFlipper.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Roboto-Black.ttf │ │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ │ ├── Roboto-Italic.ttf │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ ├── Roboto-LightItalic.ttf │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ ├── Roboto-ThinItalic.ttf │ │ │ │ ├── RobotoCondensed-Bold.ttf │ │ │ │ ├── RobotoCondensed-BoldItalic.ttf │ │ │ │ ├── RobotoCondensed-Italic.ttf │ │ │ │ ├── RobotoCondensed-Light.ttf │ │ │ │ ├── RobotoCondensed-LightItalic.ttf │ │ │ │ └── RobotoCondensed-Regular.ttf │ │ ├── java │ │ │ └── com │ │ │ │ └── expensetracker │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── release │ │ └── java │ │ └── com │ │ └── expensetracker │ │ └── ReactNativeFlipper.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── link-assets-manifest.json └── settings.gradle ├── app.json ├── assets ├── fonts │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-ThinItalic.ttf │ ├── RobotoCondensed-Bold.ttf │ ├── RobotoCondensed-BoldItalic.ttf │ ├── RobotoCondensed-Italic.ttf │ ├── RobotoCondensed-Light.ttf │ ├── RobotoCondensed-LightItalic.ttf │ └── RobotoCondensed-Regular.ttf └── icons │ ├── baby_car_icon.png │ ├── back_arrow_icon.png │ ├── calendar_icon.png │ ├── chart_icon.png │ ├── cloth_icon.png │ ├── down_arrow.png │ ├── education_icon.png │ ├── food_icon.png │ ├── healthcare_icon.png │ ├── menu_icon.png │ ├── more_icon.png │ ├── pin.png │ ├── sports_icon.png │ └── up_arrow.png ├── babel.config.js ├── constants ├── icons.js ├── images.js ├── index.js └── theme.js ├── index.js ├── ios ├── .xcode.env ├── ExpenseTracker.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── ExpenseTracker.xcscheme ├── ExpenseTracker.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ExpenseTracker │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── ExpenseTrackerTests │ ├── ExpenseTrackerTests.m │ └── Info.plist ├── Podfile ├── Podfile.lock ├── _xcode.env └── link-assets-manifest.json ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js ├── screens ├── Home.js └── index.js ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/__tests__/App.test.tsx -------------------------------------------------------------------------------- /_bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/_bundle/config -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/expensetracker/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/debug/java/com/expensetracker/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/RobotoCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/RobotoCondensed-Italic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/RobotoCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/assets/fonts/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/expensetracker/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/java/com/expensetracker/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/expensetracker/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/java/com/expensetracker/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/release/java/com/expensetracker/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/app/src/release/java/com/expensetracker/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/link-assets-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/link-assets-manifest.json -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/app.json -------------------------------------------------------------------------------- /assets/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/RobotoCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/RobotoCondensed-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/RobotoCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/fonts/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /assets/icons/baby_car_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/icons/baby_car_icon.png -------------------------------------------------------------------------------- /assets/icons/back_arrow_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/icons/back_arrow_icon.png -------------------------------------------------------------------------------- /assets/icons/calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/icons/calendar_icon.png -------------------------------------------------------------------------------- /assets/icons/chart_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/icons/chart_icon.png -------------------------------------------------------------------------------- /assets/icons/cloth_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/icons/cloth_icon.png -------------------------------------------------------------------------------- /assets/icons/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/icons/down_arrow.png -------------------------------------------------------------------------------- /assets/icons/education_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/icons/education_icon.png -------------------------------------------------------------------------------- /assets/icons/food_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/icons/food_icon.png -------------------------------------------------------------------------------- /assets/icons/healthcare_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/icons/healthcare_icon.png -------------------------------------------------------------------------------- /assets/icons/menu_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/icons/menu_icon.png -------------------------------------------------------------------------------- /assets/icons/more_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/icons/more_icon.png -------------------------------------------------------------------------------- /assets/icons/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/icons/pin.png -------------------------------------------------------------------------------- /assets/icons/sports_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/icons/sports_icon.png -------------------------------------------------------------------------------- /assets/icons/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/assets/icons/up_arrow.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /constants/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/constants/icons.js -------------------------------------------------------------------------------- /constants/images.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/constants/index.js -------------------------------------------------------------------------------- /constants/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/constants/theme.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- 1 | export NODE_BINARY=$(command -v node) 2 | -------------------------------------------------------------------------------- /ios/ExpenseTracker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/ExpenseTracker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ExpenseTracker.xcodeproj/xcshareddata/xcschemes/ExpenseTracker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/ExpenseTracker.xcodeproj/xcshareddata/xcschemes/ExpenseTracker.xcscheme -------------------------------------------------------------------------------- /ios/ExpenseTracker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/ExpenseTracker.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/ExpenseTracker.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/ExpenseTracker.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/ExpenseTracker/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/ExpenseTracker/AppDelegate.h -------------------------------------------------------------------------------- /ios/ExpenseTracker/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/ExpenseTracker/AppDelegate.mm -------------------------------------------------------------------------------- /ios/ExpenseTracker/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/ExpenseTracker/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ExpenseTracker/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/ExpenseTracker/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/ExpenseTracker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/ExpenseTracker/Info.plist -------------------------------------------------------------------------------- /ios/ExpenseTracker/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/ExpenseTracker/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/ExpenseTracker/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/ExpenseTracker/main.m -------------------------------------------------------------------------------- /ios/ExpenseTrackerTests/ExpenseTrackerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/ExpenseTrackerTests/ExpenseTrackerTests.m -------------------------------------------------------------------------------- /ios/ExpenseTrackerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/ExpenseTrackerTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/_xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/_xcode.env -------------------------------------------------------------------------------- /ios/link-assets-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/ios/link-assets-manifest.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/react-native.config.js -------------------------------------------------------------------------------- /screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/screens/Home.js -------------------------------------------------------------------------------- /screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/screens/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN07-expense-tracker-app/HEAD/yarn.lock --------------------------------------------------------------------------------