├── .coveralls.yml ├── .env.sample ├── .github ├── stale.yml └── workflows │ └── ci.yml ├── .gitignore ├── .metadata ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── CLA.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── bin │ │ └── src │ │ │ ├── main │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── launcher_icon.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── launcher_icon.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── dooboolab │ │ │ │ └── wecount │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-v21 │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values-v31 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── docs └── LOCALIZATION.md ├── firebase.json ├── firestore.indexes.json ├── firestore.rules ├── functions ├── .gitignore ├── package.json ├── src │ └── index.ts ├── tsconfig.json ├── tslint.json └── yarn.lock ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-50x50@1x.png │ │ ├── Icon-App-50x50@2x.png │ │ ├── Icon-App-57x57@1x.png │ │ ├── Icon-App-57x57@2x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-72x72@1x.png │ │ ├── Icon-App-72x72@2x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ ├── LaunchBackground.imageset │ │ ├── Contents.json │ │ └── background.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Runner-Bridging-Header.h │ └── ko.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── l10n.yaml ├── lib ├── l10n │ ├── intl_en.arb │ └── intl_ko.arb ├── main.dart ├── mocks │ ├── home_calendar.mock.dart │ ├── home_statistic.mock.dart │ └── line_graph.mock.dart ├── models │ ├── currency_model.dart │ ├── ledger_item_model.dart │ ├── ledger_model.dart │ ├── photo_model.dart │ ├── user_model.dart │ ├── user_model.freezed.dart │ └── user_model.g.dart ├── navigations │ ├── auth_switch.dart │ └── home_tab.dart ├── providers │ └── current_ledger.dart ├── repositories │ ├── ledger_repository.dart │ └── user_repository.dart ├── screens │ ├── category_add.dart │ ├── find_pw.dart │ ├── home_calendar.dart │ ├── home_list.dart │ ├── home_setting.dart │ ├── home_statistic │ │ ├── functions.dart │ │ └── home_statistic.dart │ ├── intro.dart │ ├── ledger_edit.dart │ ├── ledger_item_edit.dart │ ├── ledger_view.dart │ ├── ledgers.dart │ ├── line_graph.dart │ ├── location_view.dart │ ├── lock_auth.dart │ ├── lock_register.dart │ ├── main_empty.dart │ ├── members.dart │ ├── photo_detail.dart │ ├── profile_my.dart │ ├── profile_peer.dart │ ├── setting.dart │ ├── setting_announcement.dart │ ├── setting_currency.dart │ ├── setting_excel.dart │ ├── setting_faq.dart │ ├── setting_notification.dart │ ├── setting_opinion.dart │ ├── sign_in.dart │ ├── sign_up.dart │ ├── splash.dart │ ├── terms.dart │ └── tutorial.dart ├── services │ ├── database.dart │ └── storage.dart ├── utils │ ├── asset.dart │ ├── colors.dart │ ├── constants.dart │ ├── converter.dart │ ├── db_helper.dart │ ├── exceptions.dart │ ├── firebase_config.dart │ ├── general.dart │ ├── localization.dart │ ├── logger.dart │ ├── navigation.dart │ ├── routes.dart │ ├── service.dart │ ├── styles.dart │ ├── themes.dart │ └── validator.dart └── widgets │ ├── button.dart │ ├── carousel.dart │ ├── category_item.dart │ ├── category_list.dart │ ├── common │ └── loading_indicator.dart │ ├── date_selector.dart │ ├── dialog_spinner.dart │ ├── edit_text.dart │ ├── edit_text_box.dart │ ├── edit_text_search.dart │ ├── gallery.dart │ ├── header.dart │ ├── home_header.dart │ ├── home_header_search.dart │ ├── home_list_item.dart │ ├── ledger_list_item.dart │ ├── line_graph_chart.dart │ ├── member_horizontal_list.dart │ ├── member_list_item.dart │ ├── pin_keyboard.dart │ ├── profile_image_cam.dart │ ├── profile_list_item.dart │ └── setting_list_item.dart ├── pubspec.yaml ├── res └── icons │ ├── 2.0x │ ├── boxAdd.png │ ├── categoryAward.png │ ├── categoryBaby.png │ ├── categoryBonus.png │ ├── categoryCafe.png │ ├── categoryCar.png │ ├── categoryCulture.png │ ├── categoryDate.png │ ├── categoryDrink.png │ ├── categoryEducation.png │ ├── categoryElectric.png │ ├── categoryElectronic.png │ ├── categoryExercise.png │ ├── categoryExtra.png │ ├── categoryFurniture.png │ ├── categoryGift.png │ ├── categoryHospital.png │ ├── categoryInsurance.png │ ├── categoryMaintenance.png │ ├── categoryMeal.png │ ├── categoryMembership.png │ ├── categoryMobileFee.png │ ├── categoryMovie.png │ ├── categoryPet.png │ ├── categoryPresent.png │ ├── categoryProduct.png │ ├── categorySalary.png │ ├── categorySleep.png │ ├── categorySnack.png │ ├── categoryStuffs.png │ ├── categoryTax.png │ ├── categoryTransport.png │ ├── categoryTravel.png │ ├── categoryWallet.png │ ├── categoryWear.png │ ├── icBlue.png │ ├── icCoins.png │ ├── icDusk.png │ ├── icFacebook.png │ ├── icGoogle.png │ ├── icGreen.png │ ├── icMask.png │ ├── icOrange.png │ ├── icPurple.png │ ├── icRed.png │ ├── icYellow.png │ ├── noLedger.png │ ├── picOwner.png │ ├── tutorial1.png │ ├── tutorial2.png │ └── tutorial3.png │ ├── 3.0x │ ├── boxAdd.png │ ├── categoryAward.png │ ├── categoryBaby.png │ ├── categoryBonus.png │ ├── categoryCafe.png │ ├── categoryCar.png │ ├── categoryCulture.png │ ├── categoryDate.png │ ├── categoryDrink.png │ ├── categoryEducation.png │ ├── categoryElectric.png │ ├── categoryElectronic.png │ ├── categoryExercise.png │ ├── categoryExtra.png │ ├── categoryFurniture.png │ ├── categoryGift.png │ ├── categoryInsurance.png │ ├── categoryMaintenance.png │ ├── categoryMeal.png │ ├── categoryMembership.png │ ├── categoryMobileFee.png │ ├── categoryMovie.png │ ├── categoryPet.png │ ├── categoryPresent.png │ ├── categoryProduct.png │ ├── categorySalary.png │ ├── categorySleep.png │ ├── categorySnack.png │ ├── categoryStuffs.png │ ├── categoryTax.png │ ├── categoryTransport.png │ ├── categoryTravel.png │ ├── categoryWallet.png │ ├── categoryWear.png │ ├── cateogoryHospital.png │ ├── icBlue.png │ ├── icCoins.png │ ├── icDusk.png │ ├── icFacebook.png │ ├── icGoogle.png │ ├── icGreen.png │ ├── icMask.png │ ├── icOrange.png │ ├── icPurple.png │ ├── icRed.png │ ├── icYellow.png │ ├── noLedger.png │ ├── picOwner.png │ ├── tutorial1.png │ ├── tutorial2.png │ └── tutorial3.png │ ├── AppIcon.png │ ├── boxAdd.png │ ├── categoryAward.png │ ├── categoryBaby.png │ ├── categoryBonus.png │ ├── categoryCafe.png │ ├── categoryCar.png │ ├── categoryCulture.png │ ├── categoryDate.png │ ├── categoryDrink.png │ ├── categoryEducation.png │ ├── categoryElectric.png │ ├── categoryElectronic.png │ ├── categoryExercise.png │ ├── categoryExtra.png │ ├── categoryFurniture.png │ ├── categoryGift.png │ ├── categoryHospital.png │ ├── categoryInsurance.png │ ├── categoryMaintenance.png │ ├── categoryMeal.png │ ├── categoryMembership.png │ ├── categoryMobileFee.png │ ├── categoryMovie.png │ ├── categoryPet.png │ ├── categoryPresent.png │ ├── categoryProduct.png │ ├── categorySalary.png │ ├── categorySleep.png │ ├── categorySnack.png │ ├── categoryStuffs.png │ ├── categoryTax.png │ ├── categoryTransport.png │ ├── categoryTravel.png │ ├── categoryWallet.png │ ├── categoryWear.png │ ├── icBlue.png │ ├── icCoins.png │ ├── icDusk.png │ ├── icFacebook.png │ ├── icGoogle.png │ ├── icGreen.png │ ├── icMask.png │ ├── icOrange.png │ ├── icPurple.png │ ├── icRed.png │ ├── icYellow.png │ ├── noLedger.png │ ├── picOwner.png │ ├── tutorial1.png │ ├── tutorial2.png │ ├── tutorial3.png │ └── wecount.png ├── storage.rules ├── test ├── screens │ ├── sign_in_test.dart │ ├── sign_up_test.dart │ ├── splash_test.dart │ └── tutorial_test.dart ├── shared │ └── button_test.dart └── test_utils.dart └── web ├── favicon.png ├── icons ├── Icon-192.png ├── Icon-512.png ├── Icon-maskable-192.png └── Icon-maskable-512.png ├── index.html └── manifest.json /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: jmhahkdodE58XTob1UaC2WOvZnptWueKA 2 | -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/.metadata -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/CLA.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/bin/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/bin/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/bin/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/bin/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/bin/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/bin/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/bin/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/bin/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/bin/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/bin/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/bin/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/dooboolab/wecount/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/kotlin/com/dooboolab/wecount/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/drawable-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/drawable-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/drawable-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/drawable-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/drawable-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /docs/LOCALIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/docs/LOCALIZATION.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/firebase.json -------------------------------------------------------------------------------- /firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/firestore.indexes.json -------------------------------------------------------------------------------- /firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/firestore.rules -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/functions/.gitignore -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/functions/src/index.ts -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/functions/tsconfig.json -------------------------------------------------------------------------------- /functions/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/functions/tslint.json -------------------------------------------------------------------------------- /functions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/functions/yarn.lock -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/Runner/ko.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/Runner/ko.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/l10n/intl_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/l10n/intl_en.arb -------------------------------------------------------------------------------- /lib/l10n/intl_ko.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/l10n/intl_ko.arb -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/mocks/home_calendar.mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/mocks/home_calendar.mock.dart -------------------------------------------------------------------------------- /lib/mocks/home_statistic.mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/mocks/home_statistic.mock.dart -------------------------------------------------------------------------------- /lib/mocks/line_graph.mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/mocks/line_graph.mock.dart -------------------------------------------------------------------------------- /lib/models/currency_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/models/currency_model.dart -------------------------------------------------------------------------------- /lib/models/ledger_item_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/models/ledger_item_model.dart -------------------------------------------------------------------------------- /lib/models/ledger_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/models/ledger_model.dart -------------------------------------------------------------------------------- /lib/models/photo_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/models/photo_model.dart -------------------------------------------------------------------------------- /lib/models/user_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/models/user_model.dart -------------------------------------------------------------------------------- /lib/models/user_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/models/user_model.freezed.dart -------------------------------------------------------------------------------- /lib/models/user_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/models/user_model.g.dart -------------------------------------------------------------------------------- /lib/navigations/auth_switch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/navigations/auth_switch.dart -------------------------------------------------------------------------------- /lib/navigations/home_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/navigations/home_tab.dart -------------------------------------------------------------------------------- /lib/providers/current_ledger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/providers/current_ledger.dart -------------------------------------------------------------------------------- /lib/repositories/ledger_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/repositories/ledger_repository.dart -------------------------------------------------------------------------------- /lib/repositories/user_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/repositories/user_repository.dart -------------------------------------------------------------------------------- /lib/screens/category_add.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/category_add.dart -------------------------------------------------------------------------------- /lib/screens/find_pw.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/find_pw.dart -------------------------------------------------------------------------------- /lib/screens/home_calendar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/home_calendar.dart -------------------------------------------------------------------------------- /lib/screens/home_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/home_list.dart -------------------------------------------------------------------------------- /lib/screens/home_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/home_setting.dart -------------------------------------------------------------------------------- /lib/screens/home_statistic/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/home_statistic/functions.dart -------------------------------------------------------------------------------- /lib/screens/home_statistic/home_statistic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/home_statistic/home_statistic.dart -------------------------------------------------------------------------------- /lib/screens/intro.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/intro.dart -------------------------------------------------------------------------------- /lib/screens/ledger_edit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/ledger_edit.dart -------------------------------------------------------------------------------- /lib/screens/ledger_item_edit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/ledger_item_edit.dart -------------------------------------------------------------------------------- /lib/screens/ledger_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/ledger_view.dart -------------------------------------------------------------------------------- /lib/screens/ledgers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/ledgers.dart -------------------------------------------------------------------------------- /lib/screens/line_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/line_graph.dart -------------------------------------------------------------------------------- /lib/screens/location_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/location_view.dart -------------------------------------------------------------------------------- /lib/screens/lock_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/lock_auth.dart -------------------------------------------------------------------------------- /lib/screens/lock_register.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/lock_register.dart -------------------------------------------------------------------------------- /lib/screens/main_empty.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/main_empty.dart -------------------------------------------------------------------------------- /lib/screens/members.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/members.dart -------------------------------------------------------------------------------- /lib/screens/photo_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/photo_detail.dart -------------------------------------------------------------------------------- /lib/screens/profile_my.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/profile_my.dart -------------------------------------------------------------------------------- /lib/screens/profile_peer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/profile_peer.dart -------------------------------------------------------------------------------- /lib/screens/setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/setting.dart -------------------------------------------------------------------------------- /lib/screens/setting_announcement.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/setting_announcement.dart -------------------------------------------------------------------------------- /lib/screens/setting_currency.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/setting_currency.dart -------------------------------------------------------------------------------- /lib/screens/setting_excel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/setting_excel.dart -------------------------------------------------------------------------------- /lib/screens/setting_faq.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/setting_faq.dart -------------------------------------------------------------------------------- /lib/screens/setting_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/setting_notification.dart -------------------------------------------------------------------------------- /lib/screens/setting_opinion.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/setting_opinion.dart -------------------------------------------------------------------------------- /lib/screens/sign_in.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/sign_in.dart -------------------------------------------------------------------------------- /lib/screens/sign_up.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/sign_up.dart -------------------------------------------------------------------------------- /lib/screens/splash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/splash.dart -------------------------------------------------------------------------------- /lib/screens/terms.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/terms.dart -------------------------------------------------------------------------------- /lib/screens/tutorial.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/screens/tutorial.dart -------------------------------------------------------------------------------- /lib/services/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/services/database.dart -------------------------------------------------------------------------------- /lib/services/storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/services/storage.dart -------------------------------------------------------------------------------- /lib/utils/asset.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/asset.dart -------------------------------------------------------------------------------- /lib/utils/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/colors.dart -------------------------------------------------------------------------------- /lib/utils/constants.dart: -------------------------------------------------------------------------------- 1 | const appName = 'WeCount'; 2 | -------------------------------------------------------------------------------- /lib/utils/converter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/converter.dart -------------------------------------------------------------------------------- /lib/utils/db_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/db_helper.dart -------------------------------------------------------------------------------- /lib/utils/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/exceptions.dart -------------------------------------------------------------------------------- /lib/utils/firebase_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/firebase_config.dart -------------------------------------------------------------------------------- /lib/utils/general.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/general.dart -------------------------------------------------------------------------------- /lib/utils/localization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/localization.dart -------------------------------------------------------------------------------- /lib/utils/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/logger.dart -------------------------------------------------------------------------------- /lib/utils/navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/navigation.dart -------------------------------------------------------------------------------- /lib/utils/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/routes.dart -------------------------------------------------------------------------------- /lib/utils/service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/service.dart -------------------------------------------------------------------------------- /lib/utils/styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/styles.dart -------------------------------------------------------------------------------- /lib/utils/themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/themes.dart -------------------------------------------------------------------------------- /lib/utils/validator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/utils/validator.dart -------------------------------------------------------------------------------- /lib/widgets/button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/button.dart -------------------------------------------------------------------------------- /lib/widgets/carousel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/carousel.dart -------------------------------------------------------------------------------- /lib/widgets/category_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/category_item.dart -------------------------------------------------------------------------------- /lib/widgets/category_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/category_list.dart -------------------------------------------------------------------------------- /lib/widgets/common/loading_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/common/loading_indicator.dart -------------------------------------------------------------------------------- /lib/widgets/date_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/date_selector.dart -------------------------------------------------------------------------------- /lib/widgets/dialog_spinner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/dialog_spinner.dart -------------------------------------------------------------------------------- /lib/widgets/edit_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/edit_text.dart -------------------------------------------------------------------------------- /lib/widgets/edit_text_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/edit_text_box.dart -------------------------------------------------------------------------------- /lib/widgets/edit_text_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/edit_text_search.dart -------------------------------------------------------------------------------- /lib/widgets/gallery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/gallery.dart -------------------------------------------------------------------------------- /lib/widgets/header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/header.dart -------------------------------------------------------------------------------- /lib/widgets/home_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/home_header.dart -------------------------------------------------------------------------------- /lib/widgets/home_header_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/home_header_search.dart -------------------------------------------------------------------------------- /lib/widgets/home_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/home_list_item.dart -------------------------------------------------------------------------------- /lib/widgets/ledger_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/ledger_list_item.dart -------------------------------------------------------------------------------- /lib/widgets/line_graph_chart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/line_graph_chart.dart -------------------------------------------------------------------------------- /lib/widgets/member_horizontal_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/member_horizontal_list.dart -------------------------------------------------------------------------------- /lib/widgets/member_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/member_list_item.dart -------------------------------------------------------------------------------- /lib/widgets/pin_keyboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/pin_keyboard.dart -------------------------------------------------------------------------------- /lib/widgets/profile_image_cam.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/profile_image_cam.dart -------------------------------------------------------------------------------- /lib/widgets/profile_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/profile_list_item.dart -------------------------------------------------------------------------------- /lib/widgets/setting_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/lib/widgets/setting_list_item.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /res/icons/2.0x/boxAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/boxAdd.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryAward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryAward.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryBaby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryBaby.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryBonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryBonus.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryCafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryCafe.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryCar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryCar.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryCulture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryCulture.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryDate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryDate.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryDrink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryDrink.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryEducation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryEducation.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryElectric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryElectric.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryElectronic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryElectronic.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryExercise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryExercise.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryExtra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryExtra.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryFurniture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryFurniture.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryGift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryGift.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryHospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryHospital.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryInsurance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryInsurance.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryMaintenance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryMaintenance.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryMeal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryMeal.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryMembership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryMembership.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryMobileFee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryMobileFee.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryMovie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryMovie.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryPet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryPet.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryPresent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryPresent.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryProduct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryProduct.png -------------------------------------------------------------------------------- /res/icons/2.0x/categorySalary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categorySalary.png -------------------------------------------------------------------------------- /res/icons/2.0x/categorySleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categorySleep.png -------------------------------------------------------------------------------- /res/icons/2.0x/categorySnack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categorySnack.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryStuffs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryStuffs.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryTax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryTax.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryTransport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryTransport.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryTravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryTravel.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryWallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryWallet.png -------------------------------------------------------------------------------- /res/icons/2.0x/categoryWear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/categoryWear.png -------------------------------------------------------------------------------- /res/icons/2.0x/icBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/icBlue.png -------------------------------------------------------------------------------- /res/icons/2.0x/icCoins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/icCoins.png -------------------------------------------------------------------------------- /res/icons/2.0x/icDusk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/icDusk.png -------------------------------------------------------------------------------- /res/icons/2.0x/icFacebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/icFacebook.png -------------------------------------------------------------------------------- /res/icons/2.0x/icGoogle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/icGoogle.png -------------------------------------------------------------------------------- /res/icons/2.0x/icGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/icGreen.png -------------------------------------------------------------------------------- /res/icons/2.0x/icMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/icMask.png -------------------------------------------------------------------------------- /res/icons/2.0x/icOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/icOrange.png -------------------------------------------------------------------------------- /res/icons/2.0x/icPurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/icPurple.png -------------------------------------------------------------------------------- /res/icons/2.0x/icRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/icRed.png -------------------------------------------------------------------------------- /res/icons/2.0x/icYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/icYellow.png -------------------------------------------------------------------------------- /res/icons/2.0x/noLedger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/noLedger.png -------------------------------------------------------------------------------- /res/icons/2.0x/picOwner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/picOwner.png -------------------------------------------------------------------------------- /res/icons/2.0x/tutorial1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/tutorial1.png -------------------------------------------------------------------------------- /res/icons/2.0x/tutorial2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/tutorial2.png -------------------------------------------------------------------------------- /res/icons/2.0x/tutorial3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/2.0x/tutorial3.png -------------------------------------------------------------------------------- /res/icons/3.0x/boxAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/boxAdd.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryAward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryAward.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryBaby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryBaby.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryBonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryBonus.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryCafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryCafe.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryCar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryCar.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryCulture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryCulture.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryDate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryDate.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryDrink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryDrink.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryEducation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryEducation.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryElectric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryElectric.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryElectronic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryElectronic.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryExercise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryExercise.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryExtra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryExtra.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryFurniture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryFurniture.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryGift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryGift.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryInsurance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryInsurance.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryMaintenance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryMaintenance.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryMeal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryMeal.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryMembership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryMembership.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryMobileFee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryMobileFee.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryMovie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryMovie.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryPet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryPet.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryPresent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryPresent.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryProduct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryProduct.png -------------------------------------------------------------------------------- /res/icons/3.0x/categorySalary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categorySalary.png -------------------------------------------------------------------------------- /res/icons/3.0x/categorySleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categorySleep.png -------------------------------------------------------------------------------- /res/icons/3.0x/categorySnack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categorySnack.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryStuffs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryStuffs.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryTax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryTax.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryTransport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryTransport.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryTravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryTravel.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryWallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryWallet.png -------------------------------------------------------------------------------- /res/icons/3.0x/categoryWear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/categoryWear.png -------------------------------------------------------------------------------- /res/icons/3.0x/cateogoryHospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/cateogoryHospital.png -------------------------------------------------------------------------------- /res/icons/3.0x/icBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/icBlue.png -------------------------------------------------------------------------------- /res/icons/3.0x/icCoins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/icCoins.png -------------------------------------------------------------------------------- /res/icons/3.0x/icDusk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/icDusk.png -------------------------------------------------------------------------------- /res/icons/3.0x/icFacebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/icFacebook.png -------------------------------------------------------------------------------- /res/icons/3.0x/icGoogle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/icGoogle.png -------------------------------------------------------------------------------- /res/icons/3.0x/icGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/icGreen.png -------------------------------------------------------------------------------- /res/icons/3.0x/icMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/icMask.png -------------------------------------------------------------------------------- /res/icons/3.0x/icOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/icOrange.png -------------------------------------------------------------------------------- /res/icons/3.0x/icPurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/icPurple.png -------------------------------------------------------------------------------- /res/icons/3.0x/icRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/icRed.png -------------------------------------------------------------------------------- /res/icons/3.0x/icYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/icYellow.png -------------------------------------------------------------------------------- /res/icons/3.0x/noLedger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/noLedger.png -------------------------------------------------------------------------------- /res/icons/3.0x/picOwner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/picOwner.png -------------------------------------------------------------------------------- /res/icons/3.0x/tutorial1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/tutorial1.png -------------------------------------------------------------------------------- /res/icons/3.0x/tutorial2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/tutorial2.png -------------------------------------------------------------------------------- /res/icons/3.0x/tutorial3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/3.0x/tutorial3.png -------------------------------------------------------------------------------- /res/icons/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/AppIcon.png -------------------------------------------------------------------------------- /res/icons/boxAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/boxAdd.png -------------------------------------------------------------------------------- /res/icons/categoryAward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryAward.png -------------------------------------------------------------------------------- /res/icons/categoryBaby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryBaby.png -------------------------------------------------------------------------------- /res/icons/categoryBonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryBonus.png -------------------------------------------------------------------------------- /res/icons/categoryCafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryCafe.png -------------------------------------------------------------------------------- /res/icons/categoryCar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryCar.png -------------------------------------------------------------------------------- /res/icons/categoryCulture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryCulture.png -------------------------------------------------------------------------------- /res/icons/categoryDate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryDate.png -------------------------------------------------------------------------------- /res/icons/categoryDrink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryDrink.png -------------------------------------------------------------------------------- /res/icons/categoryEducation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryEducation.png -------------------------------------------------------------------------------- /res/icons/categoryElectric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryElectric.png -------------------------------------------------------------------------------- /res/icons/categoryElectronic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryElectronic.png -------------------------------------------------------------------------------- /res/icons/categoryExercise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryExercise.png -------------------------------------------------------------------------------- /res/icons/categoryExtra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryExtra.png -------------------------------------------------------------------------------- /res/icons/categoryFurniture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryFurniture.png -------------------------------------------------------------------------------- /res/icons/categoryGift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryGift.png -------------------------------------------------------------------------------- /res/icons/categoryHospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryHospital.png -------------------------------------------------------------------------------- /res/icons/categoryInsurance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryInsurance.png -------------------------------------------------------------------------------- /res/icons/categoryMaintenance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryMaintenance.png -------------------------------------------------------------------------------- /res/icons/categoryMeal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryMeal.png -------------------------------------------------------------------------------- /res/icons/categoryMembership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryMembership.png -------------------------------------------------------------------------------- /res/icons/categoryMobileFee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryMobileFee.png -------------------------------------------------------------------------------- /res/icons/categoryMovie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryMovie.png -------------------------------------------------------------------------------- /res/icons/categoryPet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryPet.png -------------------------------------------------------------------------------- /res/icons/categoryPresent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryPresent.png -------------------------------------------------------------------------------- /res/icons/categoryProduct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryProduct.png -------------------------------------------------------------------------------- /res/icons/categorySalary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categorySalary.png -------------------------------------------------------------------------------- /res/icons/categorySleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categorySleep.png -------------------------------------------------------------------------------- /res/icons/categorySnack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categorySnack.png -------------------------------------------------------------------------------- /res/icons/categoryStuffs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryStuffs.png -------------------------------------------------------------------------------- /res/icons/categoryTax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryTax.png -------------------------------------------------------------------------------- /res/icons/categoryTransport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryTransport.png -------------------------------------------------------------------------------- /res/icons/categoryTravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryTravel.png -------------------------------------------------------------------------------- /res/icons/categoryWallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryWallet.png -------------------------------------------------------------------------------- /res/icons/categoryWear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/categoryWear.png -------------------------------------------------------------------------------- /res/icons/icBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/icBlue.png -------------------------------------------------------------------------------- /res/icons/icCoins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/icCoins.png -------------------------------------------------------------------------------- /res/icons/icDusk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/icDusk.png -------------------------------------------------------------------------------- /res/icons/icFacebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/icFacebook.png -------------------------------------------------------------------------------- /res/icons/icGoogle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/icGoogle.png -------------------------------------------------------------------------------- /res/icons/icGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/icGreen.png -------------------------------------------------------------------------------- /res/icons/icMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/icMask.png -------------------------------------------------------------------------------- /res/icons/icOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/icOrange.png -------------------------------------------------------------------------------- /res/icons/icPurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/icPurple.png -------------------------------------------------------------------------------- /res/icons/icRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/icRed.png -------------------------------------------------------------------------------- /res/icons/icYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/icYellow.png -------------------------------------------------------------------------------- /res/icons/noLedger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/noLedger.png -------------------------------------------------------------------------------- /res/icons/picOwner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/picOwner.png -------------------------------------------------------------------------------- /res/icons/tutorial1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/tutorial1.png -------------------------------------------------------------------------------- /res/icons/tutorial2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/tutorial2.png -------------------------------------------------------------------------------- /res/icons/tutorial3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/tutorial3.png -------------------------------------------------------------------------------- /res/icons/wecount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/res/icons/wecount.png -------------------------------------------------------------------------------- /storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/storage.rules -------------------------------------------------------------------------------- /test/screens/sign_in_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/test/screens/sign_in_test.dart -------------------------------------------------------------------------------- /test/screens/sign_up_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/test/screens/sign_up_test.dart -------------------------------------------------------------------------------- /test/screens/splash_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/test/screens/splash_test.dart -------------------------------------------------------------------------------- /test/screens/tutorial_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/test/screens/tutorial_test.dart -------------------------------------------------------------------------------- /test/shared/button_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/test/shared/button_test.dart -------------------------------------------------------------------------------- /test/test_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/test/test_utils.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/BooKooX/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------