├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── feature-request.yml │ └── user-experience.yml ├── PULL_REQUEST_TEMPLATE.md ├── copilot-instructions.md ├── issue-label-bot.yaml ├── no-response.yaml ├── settings.yaml ├── stale.yaml └── workflows │ ├── deploy-to-playstore.yaml │ ├── github-page.yaml │ ├── release-candidate.yaml │ ├── release.yaml │ ├── semgrep.yml │ └── test.yaml ├── .gitignore ├── .vscode ├── arb.schema.json ├── launch.json └── settings.json ├── LICENSE ├── Makefile ├── Pipfile ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── Gemfile ├── README.md ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── evanlu │ │ │ │ └── possystem │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-v21 │ │ │ ├── background.png │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-b+zh │ │ │ └── strings.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values-v31 │ │ │ └── styles.xml │ │ │ ├── values-v35 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── fastlane │ ├── Appfile │ ├── Fastfile │ ├── README.md │ ├── metadata │ │ └── android │ │ │ ├── en-US │ │ │ ├── changelogs │ │ │ │ ├── 20900007.txt │ │ │ │ ├── 20901004.txt │ │ │ │ ├── 21000003.txt │ │ │ │ ├── 21001002.txt │ │ │ │ ├── 21002004.txt │ │ │ │ ├── 21003003.txt │ │ │ │ ├── 21004002.txt │ │ │ │ ├── 21005002.txt │ │ │ │ ├── 21100003.txt │ │ │ │ ├── 21100004.txt │ │ │ │ ├── 21101002.txt │ │ │ │ ├── 21102002.txt │ │ │ │ └── default.txt │ │ │ ├── full_description.txt │ │ │ ├── images │ │ │ │ ├── featureGraphic.jpeg │ │ │ │ ├── icon.png │ │ │ │ └── phoneScreenshots │ │ │ │ │ ├── 1_analysis_chart.png │ │ │ │ │ ├── 2_analysis_chart_dark.png │ │ │ │ │ ├── 3_menu_product.png │ │ │ │ │ ├── 4_order_action.png │ │ │ │ │ ├── 5_order_details.png │ │ │ │ │ ├── 6_more.png │ │ │ │ │ ├── 7_inventory.png │ │ │ │ │ └── 8_printer.png │ │ │ ├── short_description.txt │ │ │ ├── title.txt │ │ │ └── video.txt │ │ │ └── zh-TW │ │ │ ├── changelogs │ │ │ ├── 10104.txt │ │ │ ├── 20000006.txt │ │ │ ├── 20100010.txt │ │ │ ├── 20200002.txt │ │ │ ├── 20201002.txt │ │ │ ├── 20300004.txt │ │ │ ├── 20301002.txt │ │ │ ├── 20400003.txt │ │ │ ├── 20400005.txt │ │ │ ├── 20401004.txt │ │ │ ├── 20401006.txt │ │ │ ├── 20402002.txt │ │ │ ├── 20403002.txt │ │ │ ├── 20404004.txt │ │ │ ├── 20405002.txt │ │ │ ├── 20500016.txt │ │ │ ├── 20501002.txt │ │ │ ├── 20502002.txt │ │ │ ├── 20503003.txt │ │ │ ├── 20504003.txt │ │ │ ├── 20505002.txt │ │ │ ├── 20506002.txt │ │ │ ├── 20600003.txt │ │ │ ├── 20601002.txt │ │ │ ├── 20602002.txt │ │ │ ├── 20603003.txt │ │ │ ├── 20700008.txt │ │ │ ├── 20701002.txt │ │ │ ├── 20702005.txt │ │ │ ├── 20703002.txt │ │ │ ├── 20800005.txt │ │ │ ├── 20801004.txt │ │ │ ├── 20900007.txt │ │ │ ├── 20901004.txt │ │ │ ├── 21000003.txt │ │ │ ├── 21001002.txt │ │ │ ├── 21002004.txt │ │ │ ├── 21003003.txt │ │ │ ├── 21004002.txt │ │ │ ├── 21005002.txt │ │ │ ├── 21100003.txt │ │ │ ├── 21100004.txt │ │ │ ├── 21101002.txt │ │ │ ├── 21102002.txt │ │ │ └── default.txt │ │ │ ├── full_description.txt │ │ │ ├── images │ │ │ ├── featureGraphic.jpeg │ │ │ ├── icon.png │ │ │ └── phoneScreenshots │ │ │ │ ├── 1_analysis_chart.png │ │ │ │ ├── 2_analysis_chart_dark.png │ │ │ │ ├── 3_menu_product.png │ │ │ │ ├── 4_order_action.png │ │ │ │ ├── 5_order_details.png │ │ │ │ ├── 6_more.png │ │ │ │ ├── 7_inventory.png │ │ │ │ └── 8_printer.png │ │ │ ├── short_description.txt │ │ │ ├── title.txt │ │ │ └── video.txt │ ├── translate-changelog.sh │ └── translate-prompt.txt ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── settings_aar.gradle ├── assets ├── excel_icon.svg ├── feature_request_please.gif ├── food_placeholder.png ├── google_sheet_icon.svg ├── google_signin_button.svg ├── l10n │ ├── en │ │ ├── analysis.yaml │ │ ├── cashier.yaml │ │ ├── global.yaml │ │ ├── menu.yaml │ │ ├── order.yaml │ │ ├── order_attribute.yaml │ │ ├── printer.yaml │ │ ├── setting.yaml │ │ ├── stock.yaml │ │ └── transit.yaml │ └── zh │ │ ├── analysis.yaml │ │ ├── cashier.yaml │ │ ├── global.yaml │ │ ├── menu.yaml │ │ ├── order.yaml │ │ ├── order_attribute.yaml │ │ ├── printer.yaml │ │ ├── setting.yaml │ │ ├── stock.yaml │ │ └── transit.yaml ├── logo.png └── web │ └── tutorial-gs-copy-url.gif ├── devtools_options.yaml ├── docs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── PRIVACY_POLICY.md ├── README.md ├── README.zh.md ├── SECURITY.md ├── SUPPORT.md ├── about │ ├── contribute.md │ ├── contribute.zh.md │ ├── structure.md │ └── structure.zh.md ├── images │ ├── cheese-burger.png │ ├── favicon.ico │ ├── ham-burger.jpg │ ├── index-introduction.png │ ├── index-introduction.zh.png │ ├── lang │ │ ├── en-US │ │ │ └── rwd.png │ │ └── zh-TW │ │ │ └── rwd.png │ ├── logo.png │ └── veggie-burger.webp ├── maintenance │ ├── bump-dependencies.md │ ├── bump-dependencies.zh.md │ ├── deployment.md │ ├── deployment.zh.md │ ├── development.md │ └── development.zh.md ├── overrides │ └── partials │ │ └── comments.html ├── untranslated.json └── unused.txt ├── firebase.json ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── ephemeral │ │ ├── flutter_lldb_helper.py │ │ └── flutter_lldbinit ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── 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-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.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 └── fastlane │ └── Fastfile ├── l10n.yaml ├── lib ├── app.dart ├── components │ ├── choice_chip_with_help.dart │ ├── dialog │ │ ├── confirm_dialog.dart │ │ ├── delete_dialog.dart │ │ ├── dialog_page.dart │ │ ├── responsive_dialog.dart │ │ ├── single_text_dialog.dart │ │ └── slider_text_dialog.dart │ ├── imageable_container.dart │ ├── item_loader.dart │ ├── linkify.dart │ ├── loading_wrapper.dart │ ├── menu_actions.dart │ ├── meta_block.dart │ ├── models │ │ ├── order_attribute_value_widget.dart │ │ └── order_loader.dart │ ├── scaffold │ │ ├── item_modal.dart │ │ └── reorderable_scaffold.dart │ ├── scrollable_draggable_sheet.dart │ ├── search_bar_wrapper.dart │ ├── sign_in_button.dart │ ├── slidable_item_list.dart │ ├── slivers │ │ └── sliver_image_app_bar.dart │ ├── style │ │ ├── buttons.dart │ │ ├── card_info_text.dart │ │ ├── circular_loading.dart │ │ ├── date_range_picker.dart │ │ ├── empty_body.dart │ │ ├── footer.dart │ │ ├── gradient_button.dart │ │ ├── gradient_scroll_hint.dart │ │ ├── head_tail_tile.dart │ │ ├── highlight_text.dart │ │ ├── hint_text.dart │ │ ├── image_holder.dart │ │ ├── info_popup.dart │ │ ├── outlined_text.dart │ │ ├── percentile_bar.dart │ │ ├── pop_button.dart │ │ ├── route_buttons.dart │ │ ├── search_bar_inline.dart │ │ ├── single_row_warp.dart │ │ ├── slide_to_delete.dart │ │ ├── snackbar.dart │ │ ├── snackbar_actions.dart │ │ └── text_divider.dart │ └── tutorial.dart ├── constants │ ├── app_themes.dart │ ├── constant.dart │ └── icons.dart ├── debug │ ├── debug_page.dart │ ├── random_gen_order.dart │ └── rerun_migration.dart ├── firebase_compatible_options.dart ├── helpers │ ├── analysis │ │ └── ema_calculator.dart │ ├── breakpoint.dart │ ├── launcher.dart │ ├── logger.dart │ ├── setup_example.dart │ ├── util.dart │ └── validator.dart ├── l10n │ ├── app_en.arb │ ├── app_zh.arb │ └── gen │ │ └── .gitignore ├── main.dart ├── models │ ├── analysis │ │ ├── analysis.dart │ │ ├── chart.dart │ │ └── chart_object.dart │ ├── menu │ │ ├── catalog.dart │ │ ├── product.dart │ │ ├── product_ingredient.dart │ │ └── product_quantity.dart │ ├── model.dart │ ├── model_object.dart │ ├── objects │ │ ├── cashier_object.dart │ │ ├── menu_object.dart │ │ ├── order_attribute_object.dart │ │ ├── order_object.dart │ │ └── stock_object.dart │ ├── order │ │ ├── cart_product.dart │ │ ├── order_attribute.dart │ │ └── order_attribute_option.dart │ ├── printer.dart │ ├── repository.dart │ ├── repository │ │ ├── cart.dart │ │ ├── cashier.dart │ │ ├── menu.dart │ │ ├── order_attributes.dart │ │ ├── quantities.dart │ │ ├── replenisher.dart │ │ ├── seller.dart │ │ ├── stashed_orders.dart │ │ └── stock.dart │ ├── stock │ │ ├── ingredient.dart │ │ ├── quantity.dart │ │ └── replenishment.dart │ └── xfile.dart ├── routes.dart ├── services │ ├── auth.dart │ ├── bluetooth.dart │ ├── cache.dart │ ├── database.dart │ ├── database_migration_actions.dart │ ├── database_migrations.dart │ ├── image_dumper.dart │ └── storage.dart ├── settings │ ├── checkout_warning.dart │ ├── collect_events_setting.dart │ ├── currency_setting.dart │ ├── language_setting.dart │ ├── order_awakening_setting.dart │ ├── setting.dart │ ├── settings_provider.dart │ └── theme_setting.dart ├── translator.dart └── ui │ ├── analysis │ ├── analysis_view.dart │ ├── history_page.dart │ └── widgets │ │ ├── chart_card_view.dart │ │ ├── chart_modal.dart │ │ ├── chart_range_page.dart │ │ ├── chart_reorder.dart │ │ ├── goals_card_view.dart │ │ ├── history_actions.dart │ │ ├── history_calendar_view.dart │ │ ├── history_order_list.dart │ │ ├── history_order_modal.dart │ │ └── reloadable_card.dart │ ├── cashier │ ├── cashier_view.dart │ ├── changer_modal.dart │ ├── surplus_page.dart │ └── widgets │ │ ├── changer_custom_view.dart │ │ ├── changer_favorite_view.dart │ │ └── unit_list_tile.dart │ ├── home │ ├── elf_page.dart │ ├── home_page.dart │ ├── mobile_more_view.dart │ └── settings_page.dart │ ├── image_gallery_page.dart │ ├── menu │ ├── menu_page.dart │ ├── product_page.dart │ └── widgets │ │ ├── catalog_modal.dart │ │ ├── catalog_reorder.dart │ │ ├── menu_catalog_list.dart │ │ ├── menu_product_list.dart │ │ ├── product_ingredient_modal.dart │ │ ├── product_ingredient_reorder.dart │ │ ├── product_ingredient_view.dart │ │ ├── product_modal.dart │ │ ├── product_quantity_modal.dart │ │ └── product_reorder.dart │ ├── order │ ├── cart │ │ ├── cart_actions.dart │ │ ├── cart_metadata_view.dart │ │ ├── cart_product_list.dart │ │ ├── cart_product_selector.dart │ │ ├── cart_product_state_selector.dart │ │ └── cart_snapshot.dart │ ├── checkout │ │ ├── checkout_attribute_view.dart │ │ ├── checkout_cashier_calculator.dart │ │ ├── checkout_cashier_snapshot.dart │ │ └── stashed_order_list_view.dart │ ├── order_checkout_page.dart │ ├── order_page.dart │ └── widgets │ │ ├── checkout_receipt_dialog.dart │ │ ├── draggable_sheet_view.dart │ │ ├── order_catalog_list_view.dart │ │ ├── order_object_view.dart │ │ ├── order_product_list_view.dart │ │ ├── orientated_view.dart │ │ └── printer_button_view.dart │ ├── order_attr │ ├── order_attribute_page.dart │ └── widgets │ │ ├── order_attribute_modal.dart │ │ ├── order_attribute_option_modal.dart │ │ ├── order_attribute_option_reorder.dart │ │ ├── order_attribute_reorder.dart │ │ └── order_attribute_tile.dart │ ├── printer │ ├── printer_modal.dart │ ├── printer_page.dart │ ├── printer_settings_modal.dart │ └── widgets │ │ ├── printer_info_dialog.dart │ │ ├── printer_receipt_view.dart │ │ └── printer_view.dart │ ├── stock │ ├── quantities_page.dart │ ├── replenishment_page.dart │ ├── stock_view.dart │ └── widgets │ │ ├── replenishment_apply.dart │ │ ├── replenishment_modal.dart │ │ ├── stock_ingredient_list_tile.dart │ │ ├── stock_ingredient_modal.dart │ │ ├── stock_ingredient_restock_modal.dart │ │ ├── stock_quantity_list.dart │ │ └── stock_quantity_modal.dart │ └── transit │ ├── csv │ ├── export_basic_view.dart │ ├── export_order_view.dart │ ├── import_basic_view.dart │ └── views.dart │ ├── excel │ ├── export_basic_view.dart │ ├── export_order_view.dart │ ├── import_basic_view.dart │ └── views.dart │ ├── exporter │ ├── csv_exporter.dart │ ├── data_exporter.dart │ ├── excel_exporter.dart │ ├── google_sheet_exporter.dart │ └── plain_text_exporter.dart │ ├── formatter │ ├── field_formatter.dart │ ├── formatter.dart │ ├── model_parser.dart │ ├── order_formatter.dart │ └── plain_text_formatter.dart │ ├── google_sheet │ ├── export_basic_view.dart │ ├── export_order_view.dart │ ├── import_basic_view.dart │ ├── spreadsheet_dialog.dart │ └── views.dart │ ├── order_widgets.dart │ ├── plain_text │ ├── export_basic_view.dart │ ├── export_order_view.dart │ ├── import_basic_view.dart │ └── views.dart │ ├── previews │ ├── ingredient_preview_page.dart │ ├── order_attribute_preview_page.dart │ ├── preview_page.dart │ ├── product_preview_page.dart │ ├── quantity_preview_page.dart │ └── replenishment_preview_page.dart │ ├── transit_page.dart │ ├── transit_station.dart │ └── widgets.dart ├── mkdocs.yaml ├── pubspec.lock ├── pubspec.yaml ├── release.config.json ├── scripts ├── Tra-Chi.ttf ├── bump-after.sh ├── check-unused-lang.sh └── paint_introduce.py └── test ├── app_test.dart ├── components ├── analysis_card_test.dart ├── highlight_text_test.dart ├── imageable_container_test.dart ├── linkify_test.dart ├── loading_wrapper_test.dart ├── scrollable_draggable_sheet_test.dart ├── slidable_item_list_test.dart ├── snackbar_test.dart └── tutorial_test.dart ├── debug ├── random_gen_order_test.dart └── rerun_migration_test.dart ├── helpers ├── logger_test.dart ├── setup_example_test.dart ├── util_test.dart └── validator_test.dart ├── image_gallery_page_test.dart ├── mocks ├── mock_auth.dart ├── mock_auth.mocks.dart ├── mock_bluetooth.dart ├── mock_bluetooth.mocks.dart ├── mock_cache.dart ├── mock_cache.mocks.dart ├── mock_database.dart ├── mock_database.mocks.dart ├── mock_google_api.dart ├── mock_google_api.mocks.dart ├── mock_helpers.dart ├── mock_helpers.mocks.dart ├── mock_storage.dart └── mock_storage.mocks.dart ├── models ├── initialize_test.dart ├── model_test.dart ├── object_test.dart ├── repository_test.dart └── xfile_test.dart ├── services ├── auth_test.dart ├── auth_test.mocks.dart ├── cache_test.dart ├── cache_test.mocks.dart ├── database_migration_actions_test.dart ├── database_test.dart ├── database_test.mocks.dart └── storage_test.dart ├── settings ├── currency_settting_test.dart └── language_setting_test.dart ├── test_helpers ├── breakpoint_mocker.dart ├── file_mocker.dart ├── file_mocker.mocks.dart ├── firebase_mocker.dart ├── order_setter.dart └── translator.dart └── ui ├── analysis ├── analysis_view_test.dart ├── history_page_test.dart └── widgets │ ├── chart_card_view_test.dart │ ├── chart_range_page_test.dart │ ├── goals_card_view_test.dart │ └── history_order_list_test.dart ├── cashier ├── cashier_view_test.dart └── changer_modal_test.dart ├── home ├── home_page_test.dart └── settings_page_test.dart ├── menu ├── catalog_view_test.dart ├── menu_page_test.dart └── product_page_test.dart ├── order ├── order_actions_test.dart ├── order_checkout_page_test.dart ├── order_page_test.dart ├── order_with_printer_test.dart └── stashed_order_test.dart ├── order_attr └── order_attribute_page_test.dart ├── printer └── printer_page_test.dart ├── stock ├── quantities_page_test.dart ├── replenishment_page_test.dart └── stock_view_test.dart └── transit ├── csv ├── export_basic_test.dart ├── export_order_test.dart └── import_basic_test.dart ├── excel ├── export_basic_test.dart ├── export_order_test.dart └── import_basic_test.dart ├── exporter ├── csv_exporter_test.dart └── google_sheet_exporter_test.dart ├── formatter ├── field_formatter_test.dart └── plain_text_formatter_test.dart ├── google_sheet ├── export_basic_test.dart ├── export_order_test.dart ├── import_basic_test.dart └── spreadsheet_dialog_test.dart ├── order_widgets_test.dart ├── plain_text ├── export_basic_test.dart ├── export_order_test.dart └── import_basic_test.dart ├── preview_page_test.dart └── transit_page_test.dart /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/user-experience.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/ISSUE_TEMPLATE/user-experience.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/issue-label-bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/issue-label-bot.yaml -------------------------------------------------------------------------------- /.github/no-response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/no-response.yaml -------------------------------------------------------------------------------- /.github/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/settings.yaml -------------------------------------------------------------------------------- /.github/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/stale.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy-to-playstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/workflows/deploy-to-playstore.yaml -------------------------------------------------------------------------------- /.github/workflows/github-page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/workflows/github-page.yaml -------------------------------------------------------------------------------- /.github/workflows/release-candidate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/workflows/release-candidate.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/arb.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.vscode/arb.schema.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane", ">= 2.220.0" 4 | -------------------------------------------------------------------------------- /android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/README.md -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/evanlu/possystem/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/kotlin/com/evanlu/possystem/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/drawable-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/drawable-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/drawable-v21/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/drawable-v21/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/drawable-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/drawable-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/drawable-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-b+zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/values-b+zh/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v35/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/values-v35/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/fastlane/Appfile: -------------------------------------------------------------------------------- 1 | package_name("com.evanlu.possystem") # e.g. com.krausefx.app 2 | -------------------------------------------------------------------------------- /android/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/Fastfile -------------------------------------------------------------------------------- /android/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/README.md -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/changelogs/20900007.txt: -------------------------------------------------------------------------------- 1 | 🚀 Features 2 | 3 | • Allow drawing chart to analysis orders #204 : evan361425 4 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/changelogs/20901004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/changelogs/20901004.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/changelogs/21000003.txt: -------------------------------------------------------------------------------- 1 | 🚀 Features 2 | 3 | • Responsible width design #211 : evan361425 4 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/changelogs/21001002.txt: -------------------------------------------------------------------------------- 1 | Caught some bugs, time to clean up! 2 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/changelogs/21002004.txt: -------------------------------------------------------------------------------- 1 | ## 🚀 Features 2 | 3 | - Support bluetooth printers #212 : evan361425 -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/changelogs/21003003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/changelogs/21003003.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/changelogs/21004002.txt: -------------------------------------------------------------------------------- 1 | 🐛 Fixes 2 | 3 | - Correct analytics -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/changelogs/21005002.txt: -------------------------------------------------------------------------------- 1 | Caught some bugs, time to clean up! -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/changelogs/21100003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/changelogs/21100003.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/changelogs/21100004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/changelogs/21100004.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/changelogs/21101002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/changelogs/21101002.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/changelogs/21102002.txt: -------------------------------------------------------------------------------- 1 | 🚀 Features 2 | 3 | - Enable xPrinter : evan361425 -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/changelogs/default.txt: -------------------------------------------------------------------------------- 1 | Caught some bugs, time to clean up! 2 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/featureGraphic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/images/featureGraphic.jpeg -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/phoneScreenshots/1_analysis_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/images/phoneScreenshots/1_analysis_chart.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/phoneScreenshots/2_analysis_chart_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/images/phoneScreenshots/2_analysis_chart_dark.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/phoneScreenshots/3_menu_product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/images/phoneScreenshots/3_menu_product.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/phoneScreenshots/4_order_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/images/phoneScreenshots/4_order_action.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/phoneScreenshots/5_order_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/images/phoneScreenshots/5_order_details.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/phoneScreenshots/6_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/images/phoneScreenshots/6_more.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/phoneScreenshots/7_inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/images/phoneScreenshots/7_inventory.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/phoneScreenshots/8_printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/images/phoneScreenshots/8_printer.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | POS System - Order & Checkout 2 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/10104.txt: -------------------------------------------------------------------------------- 1 | 修正部分錯誤 -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20000006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20000006.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20100010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20100010.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20200002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20200002.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20201002.txt: -------------------------------------------------------------------------------- 1 | ## 🚀 功能 2 | 3 | - 把提示另外包一個套件,並整合進本專案中 #101 : evan361425 4 | 5 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20300004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20300004.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20301002.txt: -------------------------------------------------------------------------------- 1 | ## 🐛 修正 2 | 3 | - 點餐時,成分的錯誤狀態 #125 : evan361425 4 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20400003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20400003.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20400005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20400005.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20401004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20401004.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20401006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20401006.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20402002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20402002.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20403002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20403002.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20404004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20404004.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20405002.txt: -------------------------------------------------------------------------------- 1 | 修正點餐頁面的型別轉換錯誤 2 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20500016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20500016.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20501002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20501002.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20502002.txt: -------------------------------------------------------------------------------- 1 | 🚀 功能 2 | 3 | • 提供搜集錯誤資訊時的不同處理方式 : evan361425 4 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20503003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20503003.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20504003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20504003.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20505002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20505002.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20506002.txt: -------------------------------------------------------------------------------- 1 | 🐛 修正 2 | 3 | • 在產品中顯示更多訂單細節 #170 : evan361425 4 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20600003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20600003.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20601002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20601002.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20602002.txt: -------------------------------------------------------------------------------- 1 | • 修正小蟲 🐛 2 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20603003.txt: -------------------------------------------------------------------------------- 1 | 🚀 功能 2 | 3 | • 允許管理圖片 #185 : evan361425 4 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20700008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20700008.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20701002.txt: -------------------------------------------------------------------------------- 1 | 🚀 功能 2 | 3 | • 允許發布佈告欄 4 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20702005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20702005.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20703002.txt: -------------------------------------------------------------------------------- 1 | 2 | 🐛 修正 3 | 4 | • 調整 link 的位置 5 | • 升級依賴 6 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20800005.txt: -------------------------------------------------------------------------------- 1 | 🚀 功能 2 | 3 | • 允許管理暫存訂單 #198 : evan361425 4 | • 使用滑動來刪除資料 5 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20801004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/20801004.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20900007.txt: -------------------------------------------------------------------------------- 1 | 🚀 功能 2 | 3 | • 允許使用者畫圖分析訂單 #204 : evan361425 4 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/20901004.txt: -------------------------------------------------------------------------------- 1 | 好的 2 | 3 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/21000003.txt: -------------------------------------------------------------------------------- 1 | 🚀 功能 2 | 3 | • 回應式寬度設計 #211 : evan361425 4 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/21001002.txt: -------------------------------------------------------------------------------- 1 | 抓到一些害蟲,是時候修理一下了! 2 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/21002004.txt: -------------------------------------------------------------------------------- 1 | 🚀 新功能 2 | 3 | • 支援藍牙出單機 #212 : evan361425 -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/21003003.txt: -------------------------------------------------------------------------------- 1 | 🚀 新增功能 2 | 3 | • 點餐時允許備注。 4 | • 用 ID 標注每筆訂單。 5 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/21004002.txt: -------------------------------------------------------------------------------- 1 | 🐛 修正 2 | 3 | - 確保統計資料正確 -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/21005002.txt: -------------------------------------------------------------------------------- 1 | 修復了一些錯誤,進行了整理! 2 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/21100003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/21100003.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/21100004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/changelogs/21100004.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/21101002.txt: -------------------------------------------------------------------------------- 1 | 📦 Others 2 | 3 | • 允許批量重置訂單序列號和清除訂單 #222:evan361425 -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/21102002.txt: -------------------------------------------------------------------------------- 1 | 🚀 功能 2 | 3 | • 開啟 xPrinter:evan361425 -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/changelogs/default.txt: -------------------------------------------------------------------------------- 1 | 抓了一些臭蟲,打掃一下! 2 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/full_description.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/images/featureGraphic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/images/featureGraphic.jpeg -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/images/icon.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/1_analysis_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/1_analysis_chart.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/2_analysis_chart_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/2_analysis_chart_dark.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/3_menu_product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/3_menu_product.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/4_order_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/4_order_action.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/5_order_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/5_order_details.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/6_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/6_more.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/7_inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/7_inventory.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/8_printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/metadata/android/zh-TW/images/phoneScreenshots/8_printer.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/short_description.txt: -------------------------------------------------------------------------------- 1 | 用來點餐結帳的開源程式,並且不需要網路連線即可操作。 2 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/title.txt: -------------------------------------------------------------------------------- 1 | POS 系統 - 點餐結帳 2 | -------------------------------------------------------------------------------- /android/fastlane/metadata/android/zh-TW/video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/fastlane/translate-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/translate-changelog.sh -------------------------------------------------------------------------------- /android/fastlane/translate-prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/fastlane/translate-prompt.txt -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /assets/excel_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/excel_icon.svg -------------------------------------------------------------------------------- /assets/feature_request_please.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/feature_request_please.gif -------------------------------------------------------------------------------- /assets/food_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/food_placeholder.png -------------------------------------------------------------------------------- /assets/google_sheet_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/google_sheet_icon.svg -------------------------------------------------------------------------------- /assets/google_signin_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/google_signin_button.svg -------------------------------------------------------------------------------- /assets/l10n/en/analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/en/analysis.yaml -------------------------------------------------------------------------------- /assets/l10n/en/cashier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/en/cashier.yaml -------------------------------------------------------------------------------- /assets/l10n/en/global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/en/global.yaml -------------------------------------------------------------------------------- /assets/l10n/en/menu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/en/menu.yaml -------------------------------------------------------------------------------- /assets/l10n/en/order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/en/order.yaml -------------------------------------------------------------------------------- /assets/l10n/en/order_attribute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/en/order_attribute.yaml -------------------------------------------------------------------------------- /assets/l10n/en/printer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/en/printer.yaml -------------------------------------------------------------------------------- /assets/l10n/en/setting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/en/setting.yaml -------------------------------------------------------------------------------- /assets/l10n/en/stock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/en/stock.yaml -------------------------------------------------------------------------------- /assets/l10n/en/transit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/en/transit.yaml -------------------------------------------------------------------------------- /assets/l10n/zh/analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/zh/analysis.yaml -------------------------------------------------------------------------------- /assets/l10n/zh/cashier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/zh/cashier.yaml -------------------------------------------------------------------------------- /assets/l10n/zh/global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/zh/global.yaml -------------------------------------------------------------------------------- /assets/l10n/zh/menu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/zh/menu.yaml -------------------------------------------------------------------------------- /assets/l10n/zh/order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/zh/order.yaml -------------------------------------------------------------------------------- /assets/l10n/zh/order_attribute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/zh/order_attribute.yaml -------------------------------------------------------------------------------- /assets/l10n/zh/printer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/zh/printer.yaml -------------------------------------------------------------------------------- /assets/l10n/zh/setting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/zh/setting.yaml -------------------------------------------------------------------------------- /assets/l10n/zh/stock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/zh/stock.yaml -------------------------------------------------------------------------------- /assets/l10n/zh/transit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/l10n/zh/transit.yaml -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/web/tutorial-gs-copy-url.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/assets/web/tutorial-gs-copy-url.gif -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/devtools_options.yaml -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/LICENSE.md -------------------------------------------------------------------------------- /docs/PRIVACY_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/PRIVACY_POLICY.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/README.zh.md -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/SECURITY.md -------------------------------------------------------------------------------- /docs/SUPPORT.md: -------------------------------------------------------------------------------- 1 | 相關說明請[至此](https://evan361425.github.io/flutter-pos-system/docs/contribute#你需要任何幫助嗎)查看 2 | -------------------------------------------------------------------------------- /docs/about/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/about/contribute.md -------------------------------------------------------------------------------- /docs/about/contribute.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/about/contribute.zh.md -------------------------------------------------------------------------------- /docs/about/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/about/structure.md -------------------------------------------------------------------------------- /docs/about/structure.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/about/structure.zh.md -------------------------------------------------------------------------------- /docs/images/cheese-burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/images/cheese-burger.png -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /docs/images/ham-burger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/images/ham-burger.jpg -------------------------------------------------------------------------------- /docs/images/index-introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/images/index-introduction.png -------------------------------------------------------------------------------- /docs/images/index-introduction.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/images/index-introduction.zh.png -------------------------------------------------------------------------------- /docs/images/lang/en-US/rwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/images/lang/en-US/rwd.png -------------------------------------------------------------------------------- /docs/images/lang/zh-TW/rwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/images/lang/zh-TW/rwd.png -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/images/veggie-burger.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/images/veggie-burger.webp -------------------------------------------------------------------------------- /docs/maintenance/bump-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/maintenance/bump-dependencies.md -------------------------------------------------------------------------------- /docs/maintenance/bump-dependencies.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/maintenance/bump-dependencies.zh.md -------------------------------------------------------------------------------- /docs/maintenance/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/maintenance/deployment.md -------------------------------------------------------------------------------- /docs/maintenance/deployment.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/maintenance/deployment.zh.md -------------------------------------------------------------------------------- /docs/maintenance/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/maintenance/development.md -------------------------------------------------------------------------------- /docs/maintenance/development.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/maintenance/development.zh.md -------------------------------------------------------------------------------- /docs/overrides/partials/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/overrides/partials/comments.html -------------------------------------------------------------------------------- /docs/untranslated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/docs/untranslated.json -------------------------------------------------------------------------------- /docs/unused.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/firebase.json -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/ephemeral/flutter_lldb_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Flutter/ephemeral/flutter_lldb_helper.py -------------------------------------------------------------------------------- /ios/Flutter/ephemeral/flutter_lldbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Flutter/ephemeral/flutter_lldbinit -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/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/evan361425/flutter-pos-system/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/evan361425/flutter-pos-system/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/evan361425/flutter-pos-system/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/evan361425/flutter-pos-system/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/evan361425/flutter-pos-system/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/evan361425/flutter-pos-system/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/evan361425/flutter-pos-system/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/evan361425/flutter-pos-system/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/evan361425/flutter-pos-system/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/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/evan361425/flutter-pos-system/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/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/evan361425/flutter-pos-system/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/evan361425/flutter-pos-system/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/evan361425/flutter-pos-system/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/ios/fastlane/Fastfile -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/app.dart -------------------------------------------------------------------------------- /lib/components/choice_chip_with_help.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/choice_chip_with_help.dart -------------------------------------------------------------------------------- /lib/components/dialog/confirm_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/dialog/confirm_dialog.dart -------------------------------------------------------------------------------- /lib/components/dialog/delete_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/dialog/delete_dialog.dart -------------------------------------------------------------------------------- /lib/components/dialog/dialog_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/dialog/dialog_page.dart -------------------------------------------------------------------------------- /lib/components/dialog/responsive_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/dialog/responsive_dialog.dart -------------------------------------------------------------------------------- /lib/components/dialog/single_text_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/dialog/single_text_dialog.dart -------------------------------------------------------------------------------- /lib/components/dialog/slider_text_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/dialog/slider_text_dialog.dart -------------------------------------------------------------------------------- /lib/components/imageable_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/imageable_container.dart -------------------------------------------------------------------------------- /lib/components/item_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/item_loader.dart -------------------------------------------------------------------------------- /lib/components/linkify.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/linkify.dart -------------------------------------------------------------------------------- /lib/components/loading_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/loading_wrapper.dart -------------------------------------------------------------------------------- /lib/components/menu_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/menu_actions.dart -------------------------------------------------------------------------------- /lib/components/meta_block.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/meta_block.dart -------------------------------------------------------------------------------- /lib/components/models/order_attribute_value_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/models/order_attribute_value_widget.dart -------------------------------------------------------------------------------- /lib/components/models/order_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/models/order_loader.dart -------------------------------------------------------------------------------- /lib/components/scaffold/item_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/scaffold/item_modal.dart -------------------------------------------------------------------------------- /lib/components/scaffold/reorderable_scaffold.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/scaffold/reorderable_scaffold.dart -------------------------------------------------------------------------------- /lib/components/scrollable_draggable_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/scrollable_draggable_sheet.dart -------------------------------------------------------------------------------- /lib/components/search_bar_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/search_bar_wrapper.dart -------------------------------------------------------------------------------- /lib/components/sign_in_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/sign_in_button.dart -------------------------------------------------------------------------------- /lib/components/slidable_item_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/slidable_item_list.dart -------------------------------------------------------------------------------- /lib/components/slivers/sliver_image_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/slivers/sliver_image_app_bar.dart -------------------------------------------------------------------------------- /lib/components/style/buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/buttons.dart -------------------------------------------------------------------------------- /lib/components/style/card_info_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/card_info_text.dart -------------------------------------------------------------------------------- /lib/components/style/circular_loading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/circular_loading.dart -------------------------------------------------------------------------------- /lib/components/style/date_range_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/date_range_picker.dart -------------------------------------------------------------------------------- /lib/components/style/empty_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/empty_body.dart -------------------------------------------------------------------------------- /lib/components/style/footer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/footer.dart -------------------------------------------------------------------------------- /lib/components/style/gradient_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/gradient_button.dart -------------------------------------------------------------------------------- /lib/components/style/gradient_scroll_hint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/gradient_scroll_hint.dart -------------------------------------------------------------------------------- /lib/components/style/head_tail_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/head_tail_tile.dart -------------------------------------------------------------------------------- /lib/components/style/highlight_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/highlight_text.dart -------------------------------------------------------------------------------- /lib/components/style/hint_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/hint_text.dart -------------------------------------------------------------------------------- /lib/components/style/image_holder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/image_holder.dart -------------------------------------------------------------------------------- /lib/components/style/info_popup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/info_popup.dart -------------------------------------------------------------------------------- /lib/components/style/outlined_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/outlined_text.dart -------------------------------------------------------------------------------- /lib/components/style/percentile_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/percentile_bar.dart -------------------------------------------------------------------------------- /lib/components/style/pop_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/pop_button.dart -------------------------------------------------------------------------------- /lib/components/style/route_buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/route_buttons.dart -------------------------------------------------------------------------------- /lib/components/style/search_bar_inline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/search_bar_inline.dart -------------------------------------------------------------------------------- /lib/components/style/single_row_warp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/single_row_warp.dart -------------------------------------------------------------------------------- /lib/components/style/slide_to_delete.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/slide_to_delete.dart -------------------------------------------------------------------------------- /lib/components/style/snackbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/snackbar.dart -------------------------------------------------------------------------------- /lib/components/style/snackbar_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/snackbar_actions.dart -------------------------------------------------------------------------------- /lib/components/style/text_divider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/style/text_divider.dart -------------------------------------------------------------------------------- /lib/components/tutorial.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/components/tutorial.dart -------------------------------------------------------------------------------- /lib/constants/app_themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/constants/app_themes.dart -------------------------------------------------------------------------------- /lib/constants/constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/constants/constant.dart -------------------------------------------------------------------------------- /lib/constants/icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/constants/icons.dart -------------------------------------------------------------------------------- /lib/debug/debug_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/debug/debug_page.dart -------------------------------------------------------------------------------- /lib/debug/random_gen_order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/debug/random_gen_order.dart -------------------------------------------------------------------------------- /lib/debug/rerun_migration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/debug/rerun_migration.dart -------------------------------------------------------------------------------- /lib/firebase_compatible_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/firebase_compatible_options.dart -------------------------------------------------------------------------------- /lib/helpers/analysis/ema_calculator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/helpers/analysis/ema_calculator.dart -------------------------------------------------------------------------------- /lib/helpers/breakpoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/helpers/breakpoint.dart -------------------------------------------------------------------------------- /lib/helpers/launcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/helpers/launcher.dart -------------------------------------------------------------------------------- /lib/helpers/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/helpers/logger.dart -------------------------------------------------------------------------------- /lib/helpers/setup_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/helpers/setup_example.dart -------------------------------------------------------------------------------- /lib/helpers/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/helpers/util.dart -------------------------------------------------------------------------------- /lib/helpers/validator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/helpers/validator.dart -------------------------------------------------------------------------------- /lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /lib/l10n/app_zh.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/l10n/app_zh.arb -------------------------------------------------------------------------------- /lib/l10n/gen/.gitignore: -------------------------------------------------------------------------------- 1 | *.dart 2 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/analysis/analysis.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/analysis/analysis.dart -------------------------------------------------------------------------------- /lib/models/analysis/chart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/analysis/chart.dart -------------------------------------------------------------------------------- /lib/models/analysis/chart_object.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/analysis/chart_object.dart -------------------------------------------------------------------------------- /lib/models/menu/catalog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/menu/catalog.dart -------------------------------------------------------------------------------- /lib/models/menu/product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/menu/product.dart -------------------------------------------------------------------------------- /lib/models/menu/product_ingredient.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/menu/product_ingredient.dart -------------------------------------------------------------------------------- /lib/models/menu/product_quantity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/menu/product_quantity.dart -------------------------------------------------------------------------------- /lib/models/model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/model.dart -------------------------------------------------------------------------------- /lib/models/model_object.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/model_object.dart -------------------------------------------------------------------------------- /lib/models/objects/cashier_object.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/objects/cashier_object.dart -------------------------------------------------------------------------------- /lib/models/objects/menu_object.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/objects/menu_object.dart -------------------------------------------------------------------------------- /lib/models/objects/order_attribute_object.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/objects/order_attribute_object.dart -------------------------------------------------------------------------------- /lib/models/objects/order_object.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/objects/order_object.dart -------------------------------------------------------------------------------- /lib/models/objects/stock_object.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/objects/stock_object.dart -------------------------------------------------------------------------------- /lib/models/order/cart_product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/order/cart_product.dart -------------------------------------------------------------------------------- /lib/models/order/order_attribute.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/order/order_attribute.dart -------------------------------------------------------------------------------- /lib/models/order/order_attribute_option.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/order/order_attribute_option.dart -------------------------------------------------------------------------------- /lib/models/printer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/printer.dart -------------------------------------------------------------------------------- /lib/models/repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/repository.dart -------------------------------------------------------------------------------- /lib/models/repository/cart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/repository/cart.dart -------------------------------------------------------------------------------- /lib/models/repository/cashier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/repository/cashier.dart -------------------------------------------------------------------------------- /lib/models/repository/menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/repository/menu.dart -------------------------------------------------------------------------------- /lib/models/repository/order_attributes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/repository/order_attributes.dart -------------------------------------------------------------------------------- /lib/models/repository/quantities.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/repository/quantities.dart -------------------------------------------------------------------------------- /lib/models/repository/replenisher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/repository/replenisher.dart -------------------------------------------------------------------------------- /lib/models/repository/seller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/repository/seller.dart -------------------------------------------------------------------------------- /lib/models/repository/stashed_orders.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/repository/stashed_orders.dart -------------------------------------------------------------------------------- /lib/models/repository/stock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/repository/stock.dart -------------------------------------------------------------------------------- /lib/models/stock/ingredient.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/stock/ingredient.dart -------------------------------------------------------------------------------- /lib/models/stock/quantity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/stock/quantity.dart -------------------------------------------------------------------------------- /lib/models/stock/replenishment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/stock/replenishment.dart -------------------------------------------------------------------------------- /lib/models/xfile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/models/xfile.dart -------------------------------------------------------------------------------- /lib/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/routes.dart -------------------------------------------------------------------------------- /lib/services/auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/services/auth.dart -------------------------------------------------------------------------------- /lib/services/bluetooth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/services/bluetooth.dart -------------------------------------------------------------------------------- /lib/services/cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/services/cache.dart -------------------------------------------------------------------------------- /lib/services/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/services/database.dart -------------------------------------------------------------------------------- /lib/services/database_migration_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/services/database_migration_actions.dart -------------------------------------------------------------------------------- /lib/services/database_migrations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/services/database_migrations.dart -------------------------------------------------------------------------------- /lib/services/image_dumper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/services/image_dumper.dart -------------------------------------------------------------------------------- /lib/services/storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/services/storage.dart -------------------------------------------------------------------------------- /lib/settings/checkout_warning.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/settings/checkout_warning.dart -------------------------------------------------------------------------------- /lib/settings/collect_events_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/settings/collect_events_setting.dart -------------------------------------------------------------------------------- /lib/settings/currency_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/settings/currency_setting.dart -------------------------------------------------------------------------------- /lib/settings/language_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/settings/language_setting.dart -------------------------------------------------------------------------------- /lib/settings/order_awakening_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/settings/order_awakening_setting.dart -------------------------------------------------------------------------------- /lib/settings/setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/settings/setting.dart -------------------------------------------------------------------------------- /lib/settings/settings_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/settings/settings_provider.dart -------------------------------------------------------------------------------- /lib/settings/theme_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/settings/theme_setting.dart -------------------------------------------------------------------------------- /lib/translator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/translator.dart -------------------------------------------------------------------------------- /lib/ui/analysis/analysis_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/analysis/analysis_view.dart -------------------------------------------------------------------------------- /lib/ui/analysis/history_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/analysis/history_page.dart -------------------------------------------------------------------------------- /lib/ui/analysis/widgets/chart_card_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/analysis/widgets/chart_card_view.dart -------------------------------------------------------------------------------- /lib/ui/analysis/widgets/chart_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/analysis/widgets/chart_modal.dart -------------------------------------------------------------------------------- /lib/ui/analysis/widgets/chart_range_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/analysis/widgets/chart_range_page.dart -------------------------------------------------------------------------------- /lib/ui/analysis/widgets/chart_reorder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/analysis/widgets/chart_reorder.dart -------------------------------------------------------------------------------- /lib/ui/analysis/widgets/goals_card_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/analysis/widgets/goals_card_view.dart -------------------------------------------------------------------------------- /lib/ui/analysis/widgets/history_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/analysis/widgets/history_actions.dart -------------------------------------------------------------------------------- /lib/ui/analysis/widgets/history_calendar_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/analysis/widgets/history_calendar_view.dart -------------------------------------------------------------------------------- /lib/ui/analysis/widgets/history_order_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/analysis/widgets/history_order_list.dart -------------------------------------------------------------------------------- /lib/ui/analysis/widgets/history_order_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/analysis/widgets/history_order_modal.dart -------------------------------------------------------------------------------- /lib/ui/analysis/widgets/reloadable_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/analysis/widgets/reloadable_card.dart -------------------------------------------------------------------------------- /lib/ui/cashier/cashier_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/cashier/cashier_view.dart -------------------------------------------------------------------------------- /lib/ui/cashier/changer_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/cashier/changer_modal.dart -------------------------------------------------------------------------------- /lib/ui/cashier/surplus_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/cashier/surplus_page.dart -------------------------------------------------------------------------------- /lib/ui/cashier/widgets/changer_custom_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/cashier/widgets/changer_custom_view.dart -------------------------------------------------------------------------------- /lib/ui/cashier/widgets/changer_favorite_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/cashier/widgets/changer_favorite_view.dart -------------------------------------------------------------------------------- /lib/ui/cashier/widgets/unit_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/cashier/widgets/unit_list_tile.dart -------------------------------------------------------------------------------- /lib/ui/home/elf_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/home/elf_page.dart -------------------------------------------------------------------------------- /lib/ui/home/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/home/home_page.dart -------------------------------------------------------------------------------- /lib/ui/home/mobile_more_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/home/mobile_more_view.dart -------------------------------------------------------------------------------- /lib/ui/home/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/home/settings_page.dart -------------------------------------------------------------------------------- /lib/ui/image_gallery_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/image_gallery_page.dart -------------------------------------------------------------------------------- /lib/ui/menu/menu_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/menu/menu_page.dart -------------------------------------------------------------------------------- /lib/ui/menu/product_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/menu/product_page.dart -------------------------------------------------------------------------------- /lib/ui/menu/widgets/catalog_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/menu/widgets/catalog_modal.dart -------------------------------------------------------------------------------- /lib/ui/menu/widgets/catalog_reorder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/menu/widgets/catalog_reorder.dart -------------------------------------------------------------------------------- /lib/ui/menu/widgets/menu_catalog_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/menu/widgets/menu_catalog_list.dart -------------------------------------------------------------------------------- /lib/ui/menu/widgets/menu_product_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/menu/widgets/menu_product_list.dart -------------------------------------------------------------------------------- /lib/ui/menu/widgets/product_ingredient_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/menu/widgets/product_ingredient_modal.dart -------------------------------------------------------------------------------- /lib/ui/menu/widgets/product_ingredient_reorder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/menu/widgets/product_ingredient_reorder.dart -------------------------------------------------------------------------------- /lib/ui/menu/widgets/product_ingredient_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/menu/widgets/product_ingredient_view.dart -------------------------------------------------------------------------------- /lib/ui/menu/widgets/product_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/menu/widgets/product_modal.dart -------------------------------------------------------------------------------- /lib/ui/menu/widgets/product_quantity_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/menu/widgets/product_quantity_modal.dart -------------------------------------------------------------------------------- /lib/ui/menu/widgets/product_reorder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/menu/widgets/product_reorder.dart -------------------------------------------------------------------------------- /lib/ui/order/cart/cart_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/cart/cart_actions.dart -------------------------------------------------------------------------------- /lib/ui/order/cart/cart_metadata_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/cart/cart_metadata_view.dart -------------------------------------------------------------------------------- /lib/ui/order/cart/cart_product_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/cart/cart_product_list.dart -------------------------------------------------------------------------------- /lib/ui/order/cart/cart_product_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/cart/cart_product_selector.dart -------------------------------------------------------------------------------- /lib/ui/order/cart/cart_product_state_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/cart/cart_product_state_selector.dart -------------------------------------------------------------------------------- /lib/ui/order/cart/cart_snapshot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/cart/cart_snapshot.dart -------------------------------------------------------------------------------- /lib/ui/order/checkout/checkout_attribute_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/checkout/checkout_attribute_view.dart -------------------------------------------------------------------------------- /lib/ui/order/checkout/checkout_cashier_calculator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/checkout/checkout_cashier_calculator.dart -------------------------------------------------------------------------------- /lib/ui/order/checkout/checkout_cashier_snapshot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/checkout/checkout_cashier_snapshot.dart -------------------------------------------------------------------------------- /lib/ui/order/checkout/stashed_order_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/checkout/stashed_order_list_view.dart -------------------------------------------------------------------------------- /lib/ui/order/order_checkout_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/order_checkout_page.dart -------------------------------------------------------------------------------- /lib/ui/order/order_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/order_page.dart -------------------------------------------------------------------------------- /lib/ui/order/widgets/checkout_receipt_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/widgets/checkout_receipt_dialog.dart -------------------------------------------------------------------------------- /lib/ui/order/widgets/draggable_sheet_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/widgets/draggable_sheet_view.dart -------------------------------------------------------------------------------- /lib/ui/order/widgets/order_catalog_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/widgets/order_catalog_list_view.dart -------------------------------------------------------------------------------- /lib/ui/order/widgets/order_object_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/widgets/order_object_view.dart -------------------------------------------------------------------------------- /lib/ui/order/widgets/order_product_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/widgets/order_product_list_view.dart -------------------------------------------------------------------------------- /lib/ui/order/widgets/orientated_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/widgets/orientated_view.dart -------------------------------------------------------------------------------- /lib/ui/order/widgets/printer_button_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order/widgets/printer_button_view.dart -------------------------------------------------------------------------------- /lib/ui/order_attr/order_attribute_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order_attr/order_attribute_page.dart -------------------------------------------------------------------------------- /lib/ui/order_attr/widgets/order_attribute_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order_attr/widgets/order_attribute_modal.dart -------------------------------------------------------------------------------- /lib/ui/order_attr/widgets/order_attribute_option_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order_attr/widgets/order_attribute_option_modal.dart -------------------------------------------------------------------------------- /lib/ui/order_attr/widgets/order_attribute_option_reorder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order_attr/widgets/order_attribute_option_reorder.dart -------------------------------------------------------------------------------- /lib/ui/order_attr/widgets/order_attribute_reorder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order_attr/widgets/order_attribute_reorder.dart -------------------------------------------------------------------------------- /lib/ui/order_attr/widgets/order_attribute_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/order_attr/widgets/order_attribute_tile.dart -------------------------------------------------------------------------------- /lib/ui/printer/printer_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/printer/printer_modal.dart -------------------------------------------------------------------------------- /lib/ui/printer/printer_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/printer/printer_page.dart -------------------------------------------------------------------------------- /lib/ui/printer/printer_settings_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/printer/printer_settings_modal.dart -------------------------------------------------------------------------------- /lib/ui/printer/widgets/printer_info_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/printer/widgets/printer_info_dialog.dart -------------------------------------------------------------------------------- /lib/ui/printer/widgets/printer_receipt_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/printer/widgets/printer_receipt_view.dart -------------------------------------------------------------------------------- /lib/ui/printer/widgets/printer_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/printer/widgets/printer_view.dart -------------------------------------------------------------------------------- /lib/ui/stock/quantities_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/stock/quantities_page.dart -------------------------------------------------------------------------------- /lib/ui/stock/replenishment_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/stock/replenishment_page.dart -------------------------------------------------------------------------------- /lib/ui/stock/stock_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/stock/stock_view.dart -------------------------------------------------------------------------------- /lib/ui/stock/widgets/replenishment_apply.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/stock/widgets/replenishment_apply.dart -------------------------------------------------------------------------------- /lib/ui/stock/widgets/replenishment_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/stock/widgets/replenishment_modal.dart -------------------------------------------------------------------------------- /lib/ui/stock/widgets/stock_ingredient_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/stock/widgets/stock_ingredient_list_tile.dart -------------------------------------------------------------------------------- /lib/ui/stock/widgets/stock_ingredient_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/stock/widgets/stock_ingredient_modal.dart -------------------------------------------------------------------------------- /lib/ui/stock/widgets/stock_ingredient_restock_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/stock/widgets/stock_ingredient_restock_modal.dart -------------------------------------------------------------------------------- /lib/ui/stock/widgets/stock_quantity_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/stock/widgets/stock_quantity_list.dart -------------------------------------------------------------------------------- /lib/ui/stock/widgets/stock_quantity_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/stock/widgets/stock_quantity_modal.dart -------------------------------------------------------------------------------- /lib/ui/transit/csv/export_basic_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/csv/export_basic_view.dart -------------------------------------------------------------------------------- /lib/ui/transit/csv/export_order_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/csv/export_order_view.dart -------------------------------------------------------------------------------- /lib/ui/transit/csv/import_basic_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/csv/import_basic_view.dart -------------------------------------------------------------------------------- /lib/ui/transit/csv/views.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/csv/views.dart -------------------------------------------------------------------------------- /lib/ui/transit/excel/export_basic_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/excel/export_basic_view.dart -------------------------------------------------------------------------------- /lib/ui/transit/excel/export_order_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/excel/export_order_view.dart -------------------------------------------------------------------------------- /lib/ui/transit/excel/import_basic_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/excel/import_basic_view.dart -------------------------------------------------------------------------------- /lib/ui/transit/excel/views.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/excel/views.dart -------------------------------------------------------------------------------- /lib/ui/transit/exporter/csv_exporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/exporter/csv_exporter.dart -------------------------------------------------------------------------------- /lib/ui/transit/exporter/data_exporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/exporter/data_exporter.dart -------------------------------------------------------------------------------- /lib/ui/transit/exporter/excel_exporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/exporter/excel_exporter.dart -------------------------------------------------------------------------------- /lib/ui/transit/exporter/google_sheet_exporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/exporter/google_sheet_exporter.dart -------------------------------------------------------------------------------- /lib/ui/transit/exporter/plain_text_exporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/exporter/plain_text_exporter.dart -------------------------------------------------------------------------------- /lib/ui/transit/formatter/field_formatter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/formatter/field_formatter.dart -------------------------------------------------------------------------------- /lib/ui/transit/formatter/formatter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/formatter/formatter.dart -------------------------------------------------------------------------------- /lib/ui/transit/formatter/model_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/formatter/model_parser.dart -------------------------------------------------------------------------------- /lib/ui/transit/formatter/order_formatter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/formatter/order_formatter.dart -------------------------------------------------------------------------------- /lib/ui/transit/formatter/plain_text_formatter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/formatter/plain_text_formatter.dart -------------------------------------------------------------------------------- /lib/ui/transit/google_sheet/export_basic_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/google_sheet/export_basic_view.dart -------------------------------------------------------------------------------- /lib/ui/transit/google_sheet/export_order_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/google_sheet/export_order_view.dart -------------------------------------------------------------------------------- /lib/ui/transit/google_sheet/import_basic_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/google_sheet/import_basic_view.dart -------------------------------------------------------------------------------- /lib/ui/transit/google_sheet/spreadsheet_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/google_sheet/spreadsheet_dialog.dart -------------------------------------------------------------------------------- /lib/ui/transit/google_sheet/views.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/google_sheet/views.dart -------------------------------------------------------------------------------- /lib/ui/transit/order_widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/order_widgets.dart -------------------------------------------------------------------------------- /lib/ui/transit/plain_text/export_basic_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/plain_text/export_basic_view.dart -------------------------------------------------------------------------------- /lib/ui/transit/plain_text/export_order_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/plain_text/export_order_view.dart -------------------------------------------------------------------------------- /lib/ui/transit/plain_text/import_basic_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/plain_text/import_basic_view.dart -------------------------------------------------------------------------------- /lib/ui/transit/plain_text/views.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/plain_text/views.dart -------------------------------------------------------------------------------- /lib/ui/transit/previews/ingredient_preview_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/previews/ingredient_preview_page.dart -------------------------------------------------------------------------------- /lib/ui/transit/previews/order_attribute_preview_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/previews/order_attribute_preview_page.dart -------------------------------------------------------------------------------- /lib/ui/transit/previews/preview_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/previews/preview_page.dart -------------------------------------------------------------------------------- /lib/ui/transit/previews/product_preview_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/previews/product_preview_page.dart -------------------------------------------------------------------------------- /lib/ui/transit/previews/quantity_preview_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/previews/quantity_preview_page.dart -------------------------------------------------------------------------------- /lib/ui/transit/previews/replenishment_preview_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/previews/replenishment_preview_page.dart -------------------------------------------------------------------------------- /lib/ui/transit/transit_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/transit_page.dart -------------------------------------------------------------------------------- /lib/ui/transit/transit_station.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/transit_station.dart -------------------------------------------------------------------------------- /lib/ui/transit/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/lib/ui/transit/widgets.dart -------------------------------------------------------------------------------- /mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/mkdocs.yaml -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /release.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/release.config.json -------------------------------------------------------------------------------- /scripts/Tra-Chi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/scripts/Tra-Chi.ttf -------------------------------------------------------------------------------- /scripts/bump-after.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/scripts/bump-after.sh -------------------------------------------------------------------------------- /scripts/check-unused-lang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/scripts/check-unused-lang.sh -------------------------------------------------------------------------------- /scripts/paint_introduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/scripts/paint_introduce.py -------------------------------------------------------------------------------- /test/app_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/app_test.dart -------------------------------------------------------------------------------- /test/components/analysis_card_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/components/analysis_card_test.dart -------------------------------------------------------------------------------- /test/components/highlight_text_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/components/highlight_text_test.dart -------------------------------------------------------------------------------- /test/components/imageable_container_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/components/imageable_container_test.dart -------------------------------------------------------------------------------- /test/components/linkify_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/components/linkify_test.dart -------------------------------------------------------------------------------- /test/components/loading_wrapper_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/components/loading_wrapper_test.dart -------------------------------------------------------------------------------- /test/components/scrollable_draggable_sheet_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/components/scrollable_draggable_sheet_test.dart -------------------------------------------------------------------------------- /test/components/slidable_item_list_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/components/slidable_item_list_test.dart -------------------------------------------------------------------------------- /test/components/snackbar_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/components/snackbar_test.dart -------------------------------------------------------------------------------- /test/components/tutorial_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/components/tutorial_test.dart -------------------------------------------------------------------------------- /test/debug/random_gen_order_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/debug/random_gen_order_test.dart -------------------------------------------------------------------------------- /test/debug/rerun_migration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/debug/rerun_migration_test.dart -------------------------------------------------------------------------------- /test/helpers/logger_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/helpers/logger_test.dart -------------------------------------------------------------------------------- /test/helpers/setup_example_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/helpers/setup_example_test.dart -------------------------------------------------------------------------------- /test/helpers/util_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/helpers/util_test.dart -------------------------------------------------------------------------------- /test/helpers/validator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/helpers/validator_test.dart -------------------------------------------------------------------------------- /test/image_gallery_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/image_gallery_page_test.dart -------------------------------------------------------------------------------- /test/mocks/mock_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/mocks/mock_auth.dart -------------------------------------------------------------------------------- /test/mocks/mock_auth.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/mocks/mock_auth.mocks.dart -------------------------------------------------------------------------------- /test/mocks/mock_bluetooth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/mocks/mock_bluetooth.dart -------------------------------------------------------------------------------- /test/mocks/mock_bluetooth.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/mocks/mock_bluetooth.mocks.dart -------------------------------------------------------------------------------- /test/mocks/mock_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/mocks/mock_cache.dart -------------------------------------------------------------------------------- /test/mocks/mock_cache.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/mocks/mock_cache.mocks.dart -------------------------------------------------------------------------------- /test/mocks/mock_database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/mocks/mock_database.dart -------------------------------------------------------------------------------- /test/mocks/mock_database.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/mocks/mock_database.mocks.dart -------------------------------------------------------------------------------- /test/mocks/mock_google_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/mocks/mock_google_api.dart -------------------------------------------------------------------------------- /test/mocks/mock_google_api.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/mocks/mock_google_api.mocks.dart -------------------------------------------------------------------------------- /test/mocks/mock_helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/mocks/mock_helpers.dart -------------------------------------------------------------------------------- /test/mocks/mock_helpers.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/mocks/mock_helpers.mocks.dart -------------------------------------------------------------------------------- /test/mocks/mock_storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/mocks/mock_storage.dart -------------------------------------------------------------------------------- /test/mocks/mock_storage.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/mocks/mock_storage.mocks.dart -------------------------------------------------------------------------------- /test/models/initialize_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/models/initialize_test.dart -------------------------------------------------------------------------------- /test/models/model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/models/model_test.dart -------------------------------------------------------------------------------- /test/models/object_test.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /test/models/repository_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/models/repository_test.dart -------------------------------------------------------------------------------- /test/models/xfile_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/models/xfile_test.dart -------------------------------------------------------------------------------- /test/services/auth_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/services/auth_test.dart -------------------------------------------------------------------------------- /test/services/auth_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/services/auth_test.mocks.dart -------------------------------------------------------------------------------- /test/services/cache_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/services/cache_test.dart -------------------------------------------------------------------------------- /test/services/cache_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/services/cache_test.mocks.dart -------------------------------------------------------------------------------- /test/services/database_migration_actions_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/services/database_migration_actions_test.dart -------------------------------------------------------------------------------- /test/services/database_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/services/database_test.dart -------------------------------------------------------------------------------- /test/services/database_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/services/database_test.mocks.dart -------------------------------------------------------------------------------- /test/services/storage_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/services/storage_test.dart -------------------------------------------------------------------------------- /test/settings/currency_settting_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/settings/currency_settting_test.dart -------------------------------------------------------------------------------- /test/settings/language_setting_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/settings/language_setting_test.dart -------------------------------------------------------------------------------- /test/test_helpers/breakpoint_mocker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/test_helpers/breakpoint_mocker.dart -------------------------------------------------------------------------------- /test/test_helpers/file_mocker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/test_helpers/file_mocker.dart -------------------------------------------------------------------------------- /test/test_helpers/file_mocker.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/test_helpers/file_mocker.mocks.dart -------------------------------------------------------------------------------- /test/test_helpers/firebase_mocker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/test_helpers/firebase_mocker.dart -------------------------------------------------------------------------------- /test/test_helpers/order_setter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/test_helpers/order_setter.dart -------------------------------------------------------------------------------- /test/test_helpers/translator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/test_helpers/translator.dart -------------------------------------------------------------------------------- /test/ui/analysis/analysis_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/analysis/analysis_view_test.dart -------------------------------------------------------------------------------- /test/ui/analysis/history_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/analysis/history_page_test.dart -------------------------------------------------------------------------------- /test/ui/analysis/widgets/chart_card_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/analysis/widgets/chart_card_view_test.dart -------------------------------------------------------------------------------- /test/ui/analysis/widgets/chart_range_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/analysis/widgets/chart_range_page_test.dart -------------------------------------------------------------------------------- /test/ui/analysis/widgets/goals_card_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/analysis/widgets/goals_card_view_test.dart -------------------------------------------------------------------------------- /test/ui/analysis/widgets/history_order_list_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/analysis/widgets/history_order_list_test.dart -------------------------------------------------------------------------------- /test/ui/cashier/cashier_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/cashier/cashier_view_test.dart -------------------------------------------------------------------------------- /test/ui/cashier/changer_modal_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/cashier/changer_modal_test.dart -------------------------------------------------------------------------------- /test/ui/home/home_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/home/home_page_test.dart -------------------------------------------------------------------------------- /test/ui/home/settings_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/home/settings_page_test.dart -------------------------------------------------------------------------------- /test/ui/menu/catalog_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/menu/catalog_view_test.dart -------------------------------------------------------------------------------- /test/ui/menu/menu_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/menu/menu_page_test.dart -------------------------------------------------------------------------------- /test/ui/menu/product_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/menu/product_page_test.dart -------------------------------------------------------------------------------- /test/ui/order/order_actions_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/order/order_actions_test.dart -------------------------------------------------------------------------------- /test/ui/order/order_checkout_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/order/order_checkout_page_test.dart -------------------------------------------------------------------------------- /test/ui/order/order_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/order/order_page_test.dart -------------------------------------------------------------------------------- /test/ui/order/order_with_printer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/order/order_with_printer_test.dart -------------------------------------------------------------------------------- /test/ui/order/stashed_order_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/order/stashed_order_test.dart -------------------------------------------------------------------------------- /test/ui/order_attr/order_attribute_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/order_attr/order_attribute_page_test.dart -------------------------------------------------------------------------------- /test/ui/printer/printer_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/printer/printer_page_test.dart -------------------------------------------------------------------------------- /test/ui/stock/quantities_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/stock/quantities_page_test.dart -------------------------------------------------------------------------------- /test/ui/stock/replenishment_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/stock/replenishment_page_test.dart -------------------------------------------------------------------------------- /test/ui/stock/stock_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/stock/stock_view_test.dart -------------------------------------------------------------------------------- /test/ui/transit/csv/export_basic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/csv/export_basic_test.dart -------------------------------------------------------------------------------- /test/ui/transit/csv/export_order_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/csv/export_order_test.dart -------------------------------------------------------------------------------- /test/ui/transit/csv/import_basic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/csv/import_basic_test.dart -------------------------------------------------------------------------------- /test/ui/transit/excel/export_basic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/excel/export_basic_test.dart -------------------------------------------------------------------------------- /test/ui/transit/excel/export_order_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/excel/export_order_test.dart -------------------------------------------------------------------------------- /test/ui/transit/excel/import_basic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/excel/import_basic_test.dart -------------------------------------------------------------------------------- /test/ui/transit/exporter/csv_exporter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/exporter/csv_exporter_test.dart -------------------------------------------------------------------------------- /test/ui/transit/exporter/google_sheet_exporter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/exporter/google_sheet_exporter_test.dart -------------------------------------------------------------------------------- /test/ui/transit/formatter/field_formatter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/formatter/field_formatter_test.dart -------------------------------------------------------------------------------- /test/ui/transit/formatter/plain_text_formatter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/formatter/plain_text_formatter_test.dart -------------------------------------------------------------------------------- /test/ui/transit/google_sheet/export_basic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/google_sheet/export_basic_test.dart -------------------------------------------------------------------------------- /test/ui/transit/google_sheet/export_order_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/google_sheet/export_order_test.dart -------------------------------------------------------------------------------- /test/ui/transit/google_sheet/import_basic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/google_sheet/import_basic_test.dart -------------------------------------------------------------------------------- /test/ui/transit/google_sheet/spreadsheet_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/google_sheet/spreadsheet_dialog_test.dart -------------------------------------------------------------------------------- /test/ui/transit/order_widgets_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/order_widgets_test.dart -------------------------------------------------------------------------------- /test/ui/transit/plain_text/export_basic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/plain_text/export_basic_test.dart -------------------------------------------------------------------------------- /test/ui/transit/plain_text/export_order_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/plain_text/export_order_test.dart -------------------------------------------------------------------------------- /test/ui/transit/plain_text/import_basic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/plain_text/import_basic_test.dart -------------------------------------------------------------------------------- /test/ui/transit/preview_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/preview_page_test.dart -------------------------------------------------------------------------------- /test/ui/transit/transit_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evan361425/flutter-pos-system/HEAD/test/ui/transit/transit_page_test.dart --------------------------------------------------------------------------------