├── .bundle └── config ├── .eslintrc.js ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── .gitignore ├── .gitlab-ci.yml ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── LICENSE ├── README.md ├── __tests__ └── App.test.tsx ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── keystore.properties │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── FontAwesome6_Brands.ttf │ │ │ ├── FontAwesome6_Regular.ttf │ │ │ ├── FontAwesome6_Solid.ttf │ │ │ ├── Fontisto.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── cashbok_app │ │ │ ├── MainActivity.kt │ │ │ └── MainApplication.kt │ │ └── 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 │ │ └── xml │ │ └── network_security_config.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── http ├── cashbook-analytics.http ├── cashbook-auth.http ├── cashbook-book.http ├── cashbook-budget.http ├── cashbook-flow.http └── http-client.env.json ├── index.js ├── ios ├── .xcode.env ├── Podfile ├── YourAppName │ └── Info.plist ├── cashbok_app.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── cashbok_app.xcscheme └── cashbok_app │ ├── AppDelegate.swift │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── PrivacyInfo.xcprivacy ├── jest.config.js ├── logo ├── web_hi_res_512.png └── web_hi_res_512_round.png ├── metro.config.js ├── package.json ├── react-native.config.js ├── screenshots ├── calendar.png ├── statistics.png └── statistics2.png ├── src ├── assets │ └── logo.png ├── components │ ├── BookSelector.tsx │ ├── ErrorBoundary.tsx │ └── OfflineModeOverlay.tsx ├── context │ ├── AuthContext.tsx │ ├── BookContext.tsx │ ├── BookkeepingContext.tsx │ └── ThemeContext.tsx ├── navigation │ ├── index.tsx │ └── types.ts ├── screens │ ├── SyncManagementScreen.tsx │ ├── auth │ │ ├── ServerFormScreen.tsx │ │ └── ServerListScreen.tsx │ └── main │ │ ├── BookFormScreen.tsx │ │ ├── BookListScreen.tsx │ │ ├── BudgetScreen.tsx │ │ ├── CalendarScreen.tsx │ │ ├── FlowFormScreen.tsx │ │ ├── LogsScreen.tsx │ │ ├── SettingsScreen.tsx │ │ ├── StatisticsScreen.tsx │ │ └── YearMonthPicker.tsx ├── services │ ├── ImageCacheService.ts │ ├── LocalCacheService.ts │ ├── LocalDataService.ts │ ├── LogService.ts │ ├── api.ts │ ├── auth.ts │ ├── serverConfig.ts │ └── updateService.ts ├── types │ └── index.ts └── utils │ ├── errorHandler.ts │ └── formatters.ts ├── tsconfig.json └── yarn.lock /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/.bundle/config -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/__tests__/App.test.tsx -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/keystore.properties -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome6_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/FontAwesome6_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome6_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/FontAwesome6_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome6_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/FontAwesome6_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/cashbok_app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/java/com/cashbok_app/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/cashbok_app/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/java/com/cashbok_app/MainApplication.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_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/houxiaoyi0722/cashbook_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/houxiaoyi0722/cashbook_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/houxiaoyi0722/cashbook_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/houxiaoyi0722/cashbook_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/houxiaoyi0722/cashbook_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/houxiaoyi0722/cashbook_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/houxiaoyi0722/cashbook_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/houxiaoyi0722/cashbook_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/houxiaoyi0722/cashbook_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/houxiaoyi0722/cashbook_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/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/babel.config.js -------------------------------------------------------------------------------- /http/cashbook-analytics.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/http/cashbook-analytics.http -------------------------------------------------------------------------------- /http/cashbook-auth.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/http/cashbook-auth.http -------------------------------------------------------------------------------- /http/cashbook-book.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/http/cashbook-book.http -------------------------------------------------------------------------------- /http/cashbook-budget.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/http/cashbook-budget.http -------------------------------------------------------------------------------- /http/cashbook-flow.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/http/cashbook-flow.http -------------------------------------------------------------------------------- /http/http-client.env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/http/http-client.env.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/YourAppName/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/ios/YourAppName/Info.plist -------------------------------------------------------------------------------- /ios/cashbok_app.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/ios/cashbok_app.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/cashbok_app.xcodeproj/xcshareddata/xcschemes/cashbok_app.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/ios/cashbok_app.xcodeproj/xcshareddata/xcschemes/cashbok_app.xcscheme -------------------------------------------------------------------------------- /ios/cashbok_app/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/ios/cashbok_app/AppDelegate.swift -------------------------------------------------------------------------------- /ios/cashbok_app/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/ios/cashbok_app/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/cashbok_app/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/ios/cashbok_app/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/cashbok_app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/ios/cashbok_app/Info.plist -------------------------------------------------------------------------------- /ios/cashbok_app/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/ios/cashbok_app/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/cashbok_app/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/ios/cashbok_app/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /logo/web_hi_res_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/logo/web_hi_res_512.png -------------------------------------------------------------------------------- /logo/web_hi_res_512_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/logo/web_hi_res_512_round.png -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/react-native.config.js -------------------------------------------------------------------------------- /screenshots/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/screenshots/calendar.png -------------------------------------------------------------------------------- /screenshots/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/screenshots/statistics.png -------------------------------------------------------------------------------- /screenshots/statistics2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/screenshots/statistics2.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/BookSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/components/BookSelector.tsx -------------------------------------------------------------------------------- /src/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/components/OfflineModeOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/components/OfflineModeOverlay.tsx -------------------------------------------------------------------------------- /src/context/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/context/AuthContext.tsx -------------------------------------------------------------------------------- /src/context/BookContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/context/BookContext.tsx -------------------------------------------------------------------------------- /src/context/BookkeepingContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/context/BookkeepingContext.tsx -------------------------------------------------------------------------------- /src/context/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/context/ThemeContext.tsx -------------------------------------------------------------------------------- /src/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/navigation/index.tsx -------------------------------------------------------------------------------- /src/navigation/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/navigation/types.ts -------------------------------------------------------------------------------- /src/screens/SyncManagementScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/screens/SyncManagementScreen.tsx -------------------------------------------------------------------------------- /src/screens/auth/ServerFormScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/screens/auth/ServerFormScreen.tsx -------------------------------------------------------------------------------- /src/screens/auth/ServerListScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/screens/auth/ServerListScreen.tsx -------------------------------------------------------------------------------- /src/screens/main/BookFormScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/screens/main/BookFormScreen.tsx -------------------------------------------------------------------------------- /src/screens/main/BookListScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/screens/main/BookListScreen.tsx -------------------------------------------------------------------------------- /src/screens/main/BudgetScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/screens/main/BudgetScreen.tsx -------------------------------------------------------------------------------- /src/screens/main/CalendarScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/screens/main/CalendarScreen.tsx -------------------------------------------------------------------------------- /src/screens/main/FlowFormScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/screens/main/FlowFormScreen.tsx -------------------------------------------------------------------------------- /src/screens/main/LogsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/screens/main/LogsScreen.tsx -------------------------------------------------------------------------------- /src/screens/main/SettingsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/screens/main/SettingsScreen.tsx -------------------------------------------------------------------------------- /src/screens/main/StatisticsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/screens/main/StatisticsScreen.tsx -------------------------------------------------------------------------------- /src/screens/main/YearMonthPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/screens/main/YearMonthPicker.tsx -------------------------------------------------------------------------------- /src/services/ImageCacheService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/services/ImageCacheService.ts -------------------------------------------------------------------------------- /src/services/LocalCacheService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/services/LocalCacheService.ts -------------------------------------------------------------------------------- /src/services/LocalDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/services/LocalDataService.ts -------------------------------------------------------------------------------- /src/services/LogService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/services/LogService.ts -------------------------------------------------------------------------------- /src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/services/api.ts -------------------------------------------------------------------------------- /src/services/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/services/auth.ts -------------------------------------------------------------------------------- /src/services/serverConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/services/serverConfig.ts -------------------------------------------------------------------------------- /src/services/updateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/services/updateService.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/utils/errorHandler.ts -------------------------------------------------------------------------------- /src/utils/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/src/utils/formatters.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/houxiaoyi0722/cashbook_app/HEAD/yarn.lock --------------------------------------------------------------------------------