├── .fvm ├── flutter_sdk └── fvm_config.json ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .metadata ├── .vscode ├── launch.json └── settings.json ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── thepos │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── svg │ ├── Icon-material-dashboard.svg │ ├── barcode.svg │ ├── dashboard.svg │ ├── delet.svg │ ├── delete.svg │ ├── dots.svg │ ├── edit.svg │ ├── go_cart.svg │ ├── menu.svg │ ├── search.svg │ └── user.svg ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── 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 │ └── 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 ├── lib ├── core │ ├── auth_manager.dart │ ├── config.dart │ ├── init_app.dart │ ├── login_composer │ │ ├── login_use_case_factory.dart │ │ └── login_use_case_output_composer.dart │ ├── navigator │ │ ├── app_navigator_factory.dart │ │ └── navigator_factory.dart │ └── preferences_utils.dart ├── features │ ├── carts │ │ ├── data │ │ │ └── models │ │ │ │ ├── cart.dart │ │ │ │ ├── cart.g.dart │ │ │ │ ├── cart_item.dart │ │ │ │ └── cart_item.g.dart │ │ └── presentation │ │ │ ├── controllers │ │ │ └── carts_controller.dart │ │ │ ├── views │ │ │ ├── mobile │ │ │ │ ├── cart_list_view.dart │ │ │ │ ├── cart_view.dart │ │ │ │ └── edit_cart_item_view.dart │ │ │ └── web │ │ │ │ ├── cart_view.dart │ │ │ │ └── edit_cart.dart │ │ │ └── widgets │ │ │ ├── common │ │ │ └── key_pad.dart │ │ │ ├── mobile │ │ │ ├── cartItems │ │ │ │ ├── cart_item_widget.dart │ │ │ │ └── cart_items_widget.dart │ │ │ ├── cart_app_bar.dart │ │ │ ├── cart_list_floating_action_button.dart │ │ │ ├── editCart │ │ │ │ ├── edit_cart_product_item_widget.dart │ │ │ │ └── edit_cart_segmented_control.dart │ │ │ └── pay_button.dart │ │ │ └── web │ │ │ ├── cart_item_product_widget.dart │ │ │ └── cart_item_widget.dart │ ├── customer │ │ ├── customer_cache_policy.dart │ │ ├── data │ │ │ ├── models │ │ │ │ ├── Customers.dart │ │ │ │ ├── customer.dart │ │ │ │ └── customer.g.dart │ │ │ ├── repositories │ │ │ │ └── customer_repository.dart │ │ │ └── serives │ │ │ │ ├── data_sources │ │ │ │ ├── api_customer │ │ │ │ │ ├── customer_remote_data_source.dart │ │ │ │ │ └── remote_store_cutomer_error.dart │ │ │ │ ├── local_store_customer.dart │ │ │ │ └── remote_customer.dart │ │ │ │ └── forbiden_operation.dart │ │ └── presentation │ │ │ ├── controllers │ │ │ └── customer_controller.dart │ │ │ └── widgets │ │ │ ├── common │ │ │ └── add_customer_widget.dart │ │ │ └── model │ │ │ ├── footer.dart │ │ │ └── item_dropdown_list.dart │ ├── home │ │ ├── data │ │ │ ├── datasources │ │ │ │ ├── home_faker_data_source.dart │ │ │ │ ├── home_local_data_source.dart │ │ │ │ └── home_remote_data_source.dart │ │ │ ├── models │ │ │ │ ├── category.dart │ │ │ │ ├── category.g.dart │ │ │ │ ├── product.dart │ │ │ │ └── product.g.dart │ │ │ └── repositories │ │ │ │ └── home_repository.dart │ │ └── presentation │ │ │ ├── controllers │ │ │ └── home_controller.dart │ │ │ ├── views │ │ │ ├── mobile │ │ │ │ └── home_view.dart │ │ │ └── web │ │ │ │ └── home_view.dart │ │ │ └── widgets │ │ │ ├── common │ │ │ ├── barcode_widget.dart │ │ │ └── popup_choice_barcode.dart │ │ │ ├── mobile │ │ │ ├── cart_floating_action_button.dart │ │ │ ├── categories_widget.dart │ │ │ ├── home_silver_app_bar.dart │ │ │ └── products │ │ │ │ ├── product_item_widget.dart │ │ │ │ └── products_widget.dart │ │ │ └── web │ │ │ ├── category_widget.dart │ │ │ ├── header_home.dart │ │ │ ├── product_widget.dart │ │ │ └── search_widget.dart │ ├── invoice │ │ ├── data │ │ │ ├── data_sources │ │ │ │ ├── api_invoice │ │ │ │ │ ├── remote_store_invoice.dart │ │ │ │ │ └── remote_store_invoice_error.dart │ │ │ │ ├── invoice_loader.dart │ │ │ │ ├── invoice_loader_remote_store_decorator.dart │ │ │ │ ├── local_store_invoice.dart │ │ │ │ └── store_invoice.dart │ │ │ ├── models │ │ │ │ ├── invoice.dart │ │ │ │ └── invoice_item.dart │ │ │ └── repositories │ │ │ │ └── invoice_repository.dart │ │ └── helper │ │ │ └── cart_invoice_mapper.dart │ ├── login │ │ ├── data │ │ │ ├── login_service │ │ │ │ ├── api_login │ │ │ │ │ └── api_login_service.dart │ │ │ │ ├── login_errors.dart │ │ │ │ └── login_service.dart │ │ │ ├── login_use_case │ │ │ │ ├── login_use_case.dart │ │ │ │ └── login_use_case_output.dart │ │ │ └── models │ │ │ │ └── login_result.dart │ │ └── presentation │ │ │ ├── controller │ │ │ └── login_controller.dart │ │ │ ├── login_router.dart │ │ │ └── views │ │ │ └── login_view.dart │ ├── products │ │ ├── product.dart │ │ ├── product_cache_policy.dart │ │ ├── products_api │ │ │ ├── api_products_model.dart │ │ │ ├── remote_products_loader.dart │ │ │ └── remote_products_loader_errors.dart │ │ └── products_loader.dart │ └── splash │ │ └── presentation │ │ ├── controllers │ │ └── splash_controller.dart │ │ ├── splash_router.dart │ │ └── views │ │ └── splash_view.dart ├── localization │ ├── lang │ │ └── en_us.dart │ └── localization_service.dart ├── main.dart └── routes │ ├── app_pages.dart │ ├── mobile_app_pages.dart │ └── web_app_pages.dart ├── pubspec.lock ├── pubspec.yaml ├── test ├── core │ ├── auth_manager_tests.dart │ └── navigator_factory │ │ ├── helpers.dart │ │ ├── login_composer │ │ ├── helpers │ │ │ ├── dummy_login_service.dart │ │ │ └── login_use_case_output_spy.dart │ │ ├── login_use_case_factory_test.dart │ │ └── login_use_case_output_composer_test.dart │ │ └── navigator_factory_test.dart ├── create_invoice_from_cart_items_test.dart ├── customer │ ├── helper │ │ ├── customer_test_helper.dart │ │ ├── remote_store_customer_sut.dart │ │ └── store_customer_stub.dart │ ├── local_store_customer_test.dart │ └── remote_store_customer_test.dart ├── helpers │ ├── mock_client_stub.dart │ └── navigator │ │ ├── navigator_factory_spy.dart │ │ └── navigator_shared_helper.dart ├── invoice │ ├── helpers │ │ ├── invoice_loader_stub_spy.dart │ │ ├── remote_store_invoice_sut.dart │ │ ├── shared_test_helper.dart │ │ ├── store_invoice_spy.dart │ │ └── store_invoice_stub.dart │ ├── invoice_loader_remote_store_decorator_test.dart │ ├── invoice_repository_test.dart │ ├── local_store_invoice_test.dart │ └── remote_store_invoice_test.dart ├── login │ ├── data │ │ ├── api_login │ │ │ ├── api_login_service_test.dart │ │ │ └── helpers │ │ │ │ └── api_login_service_sut.dart │ │ ├── helpers │ │ │ └── shared_test_helper.dart │ │ └── login_use_case │ │ │ ├── helpers │ │ │ ├── login_service_output_spy.dart │ │ │ ├── login_service_stub.dart │ │ │ └── login_use_case_sut.dart │ │ │ └── login_use_case_test.dart │ └── presentation │ │ ├── helpers │ │ └── shared_helpers.dart │ │ ├── login_controller_test.dart │ │ └── login_router_test.dart ├── products │ ├── products_api │ │ ├── helpers │ │ │ └── remote_loader_sut.dart │ │ └── remote_load_products_test.dart │ └── products_cache │ │ └── validate_product_cache_test.dart └── splash │ └── splash_router_test.dart └── web ├── favicon.png ├── icons ├── Icon-192.png ├── Icon-512.png ├── Icon-maskable-192.png └── Icon-maskable-512.png ├── index.html └── manifest.json /.fvm/flutter_sdk: -------------------------------------------------------------------------------- 1 | C:/Users/M.S.I/fvm/versions/2.5.2 -------------------------------------------------------------------------------- /.fvm/fvm_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/.fvm/fvm_config.json -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/thepos/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/app/src/main/kotlin/com/example/thepos/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/svg/Icon-material-dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/assets/svg/Icon-material-dashboard.svg -------------------------------------------------------------------------------- /assets/svg/barcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/assets/svg/barcode.svg -------------------------------------------------------------------------------- /assets/svg/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/assets/svg/dashboard.svg -------------------------------------------------------------------------------- /assets/svg/delet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/assets/svg/delet.svg -------------------------------------------------------------------------------- /assets/svg/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/assets/svg/delete.svg -------------------------------------------------------------------------------- /assets/svg/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/assets/svg/dots.svg -------------------------------------------------------------------------------- /assets/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/assets/svg/edit.svg -------------------------------------------------------------------------------- /assets/svg/go_cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/assets/svg/go_cart.svg -------------------------------------------------------------------------------- /assets/svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/assets/svg/menu.svg -------------------------------------------------------------------------------- /assets/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/assets/svg/search.svg -------------------------------------------------------------------------------- /assets/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/assets/svg/user.svg -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/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/The-POS/The-POS-Flutter/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/The-POS/The-POS-Flutter/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/The-POS/The-POS-Flutter/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/The-POS/The-POS-Flutter/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/The-POS/The-POS-Flutter/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/The-POS/The-POS-Flutter/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/The-POS/The-POS-Flutter/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/The-POS/The-POS-Flutter/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/The-POS/The-POS-Flutter/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/The-POS/The-POS-Flutter/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/The-POS/The-POS-Flutter/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/The-POS/The-POS-Flutter/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/The-POS/The-POS-Flutter/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/The-POS/The-POS-Flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/core/auth_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/core/auth_manager.dart -------------------------------------------------------------------------------- /lib/core/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/core/config.dart -------------------------------------------------------------------------------- /lib/core/init_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/core/init_app.dart -------------------------------------------------------------------------------- /lib/core/login_composer/login_use_case_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/core/login_composer/login_use_case_factory.dart -------------------------------------------------------------------------------- /lib/core/login_composer/login_use_case_output_composer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/core/login_composer/login_use_case_output_composer.dart -------------------------------------------------------------------------------- /lib/core/navigator/app_navigator_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/core/navigator/app_navigator_factory.dart -------------------------------------------------------------------------------- /lib/core/navigator/navigator_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/core/navigator/navigator_factory.dart -------------------------------------------------------------------------------- /lib/core/preferences_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/core/preferences_utils.dart -------------------------------------------------------------------------------- /lib/features/carts/data/models/cart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/data/models/cart.dart -------------------------------------------------------------------------------- /lib/features/carts/data/models/cart.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/data/models/cart.g.dart -------------------------------------------------------------------------------- /lib/features/carts/data/models/cart_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/data/models/cart_item.dart -------------------------------------------------------------------------------- /lib/features/carts/data/models/cart_item.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/data/models/cart_item.g.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/controllers/carts_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/controllers/carts_controller.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/views/mobile/cart_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/views/mobile/cart_list_view.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/views/mobile/cart_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/views/mobile/cart_view.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/views/mobile/edit_cart_item_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/views/mobile/edit_cart_item_view.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/views/web/cart_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/views/web/cart_view.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/views/web/edit_cart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/views/web/edit_cart.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/widgets/common/key_pad.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/widgets/common/key_pad.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/widgets/mobile/cartItems/cart_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/widgets/mobile/cartItems/cart_item_widget.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/widgets/mobile/cartItems/cart_items_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/widgets/mobile/cartItems/cart_items_widget.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/widgets/mobile/cart_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/widgets/mobile/cart_app_bar.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/widgets/mobile/cart_list_floating_action_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/widgets/mobile/cart_list_floating_action_button.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/widgets/mobile/editCart/edit_cart_product_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/widgets/mobile/editCart/edit_cart_product_item_widget.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/widgets/mobile/editCart/edit_cart_segmented_control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/widgets/mobile/editCart/edit_cart_segmented_control.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/widgets/mobile/pay_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/widgets/mobile/pay_button.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/widgets/web/cart_item_product_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/widgets/web/cart_item_product_widget.dart -------------------------------------------------------------------------------- /lib/features/carts/presentation/widgets/web/cart_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/carts/presentation/widgets/web/cart_item_widget.dart -------------------------------------------------------------------------------- /lib/features/customer/customer_cache_policy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/customer/customer_cache_policy.dart -------------------------------------------------------------------------------- /lib/features/customer/data/models/Customers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/customer/data/models/Customers.dart -------------------------------------------------------------------------------- /lib/features/customer/data/models/customer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/customer/data/models/customer.dart -------------------------------------------------------------------------------- /lib/features/customer/data/models/customer.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/customer/data/models/customer.g.dart -------------------------------------------------------------------------------- /lib/features/customer/data/repositories/customer_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/customer/data/repositories/customer_repository.dart -------------------------------------------------------------------------------- /lib/features/customer/data/serives/data_sources/api_customer/customer_remote_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/customer/data/serives/data_sources/api_customer/customer_remote_data_source.dart -------------------------------------------------------------------------------- /lib/features/customer/data/serives/data_sources/api_customer/remote_store_cutomer_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/customer/data/serives/data_sources/api_customer/remote_store_cutomer_error.dart -------------------------------------------------------------------------------- /lib/features/customer/data/serives/data_sources/local_store_customer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/customer/data/serives/data_sources/local_store_customer.dart -------------------------------------------------------------------------------- /lib/features/customer/data/serives/data_sources/remote_customer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/customer/data/serives/data_sources/remote_customer.dart -------------------------------------------------------------------------------- /lib/features/customer/data/serives/forbiden_operation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/customer/data/serives/forbiden_operation.dart -------------------------------------------------------------------------------- /lib/features/customer/presentation/controllers/customer_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/customer/presentation/controllers/customer_controller.dart -------------------------------------------------------------------------------- /lib/features/customer/presentation/widgets/common/add_customer_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/customer/presentation/widgets/common/add_customer_widget.dart -------------------------------------------------------------------------------- /lib/features/customer/presentation/widgets/model/footer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/customer/presentation/widgets/model/footer.dart -------------------------------------------------------------------------------- /lib/features/customer/presentation/widgets/model/item_dropdown_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/customer/presentation/widgets/model/item_dropdown_list.dart -------------------------------------------------------------------------------- /lib/features/home/data/datasources/home_faker_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/data/datasources/home_faker_data_source.dart -------------------------------------------------------------------------------- /lib/features/home/data/datasources/home_local_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/data/datasources/home_local_data_source.dart -------------------------------------------------------------------------------- /lib/features/home/data/datasources/home_remote_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/data/datasources/home_remote_data_source.dart -------------------------------------------------------------------------------- /lib/features/home/data/models/category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/data/models/category.dart -------------------------------------------------------------------------------- /lib/features/home/data/models/category.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/data/models/category.g.dart -------------------------------------------------------------------------------- /lib/features/home/data/models/product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/data/models/product.dart -------------------------------------------------------------------------------- /lib/features/home/data/models/product.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/data/models/product.g.dart -------------------------------------------------------------------------------- /lib/features/home/data/repositories/home_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/data/repositories/home_repository.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/controllers/home_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/presentation/controllers/home_controller.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/views/mobile/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/presentation/views/mobile/home_view.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/views/web/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/presentation/views/web/home_view.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/common/barcode_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/presentation/widgets/common/barcode_widget.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/common/popup_choice_barcode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/presentation/widgets/common/popup_choice_barcode.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/mobile/cart_floating_action_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/presentation/widgets/mobile/cart_floating_action_button.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/mobile/categories_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/presentation/widgets/mobile/categories_widget.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/mobile/home_silver_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/presentation/widgets/mobile/home_silver_app_bar.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/mobile/products/product_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/presentation/widgets/mobile/products/product_item_widget.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/mobile/products/products_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/presentation/widgets/mobile/products/products_widget.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/web/category_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/presentation/widgets/web/category_widget.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/web/header_home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/presentation/widgets/web/header_home.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/web/product_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/presentation/widgets/web/product_widget.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/web/search_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/home/presentation/widgets/web/search_widget.dart -------------------------------------------------------------------------------- /lib/features/invoice/data/data_sources/api_invoice/remote_store_invoice.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/invoice/data/data_sources/api_invoice/remote_store_invoice.dart -------------------------------------------------------------------------------- /lib/features/invoice/data/data_sources/api_invoice/remote_store_invoice_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/invoice/data/data_sources/api_invoice/remote_store_invoice_error.dart -------------------------------------------------------------------------------- /lib/features/invoice/data/data_sources/invoice_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/invoice/data/data_sources/invoice_loader.dart -------------------------------------------------------------------------------- /lib/features/invoice/data/data_sources/invoice_loader_remote_store_decorator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/invoice/data/data_sources/invoice_loader_remote_store_decorator.dart -------------------------------------------------------------------------------- /lib/features/invoice/data/data_sources/local_store_invoice.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/invoice/data/data_sources/local_store_invoice.dart -------------------------------------------------------------------------------- /lib/features/invoice/data/data_sources/store_invoice.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/invoice/data/data_sources/store_invoice.dart -------------------------------------------------------------------------------- /lib/features/invoice/data/models/invoice.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/invoice/data/models/invoice.dart -------------------------------------------------------------------------------- /lib/features/invoice/data/models/invoice_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/invoice/data/models/invoice_item.dart -------------------------------------------------------------------------------- /lib/features/invoice/data/repositories/invoice_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/invoice/data/repositories/invoice_repository.dart -------------------------------------------------------------------------------- /lib/features/invoice/helper/cart_invoice_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/invoice/helper/cart_invoice_mapper.dart -------------------------------------------------------------------------------- /lib/features/login/data/login_service/api_login/api_login_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/login/data/login_service/api_login/api_login_service.dart -------------------------------------------------------------------------------- /lib/features/login/data/login_service/login_errors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/login/data/login_service/login_errors.dart -------------------------------------------------------------------------------- /lib/features/login/data/login_service/login_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/login/data/login_service/login_service.dart -------------------------------------------------------------------------------- /lib/features/login/data/login_use_case/login_use_case.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/login/data/login_use_case/login_use_case.dart -------------------------------------------------------------------------------- /lib/features/login/data/login_use_case/login_use_case_output.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/login/data/login_use_case/login_use_case_output.dart -------------------------------------------------------------------------------- /lib/features/login/data/models/login_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/login/data/models/login_result.dart -------------------------------------------------------------------------------- /lib/features/login/presentation/controller/login_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/login/presentation/controller/login_controller.dart -------------------------------------------------------------------------------- /lib/features/login/presentation/login_router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/login/presentation/login_router.dart -------------------------------------------------------------------------------- /lib/features/login/presentation/views/login_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/login/presentation/views/login_view.dart -------------------------------------------------------------------------------- /lib/features/products/product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/products/product.dart -------------------------------------------------------------------------------- /lib/features/products/product_cache_policy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/products/product_cache_policy.dart -------------------------------------------------------------------------------- /lib/features/products/products_api/api_products_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/products/products_api/api_products_model.dart -------------------------------------------------------------------------------- /lib/features/products/products_api/remote_products_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/products/products_api/remote_products_loader.dart -------------------------------------------------------------------------------- /lib/features/products/products_api/remote_products_loader_errors.dart: -------------------------------------------------------------------------------- 1 | enum RemoteProductsLoaderErrors { connectivity, invalidData } 2 | -------------------------------------------------------------------------------- /lib/features/products/products_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/products/products_loader.dart -------------------------------------------------------------------------------- /lib/features/splash/presentation/controllers/splash_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/splash/presentation/controllers/splash_controller.dart -------------------------------------------------------------------------------- /lib/features/splash/presentation/splash_router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/splash/presentation/splash_router.dart -------------------------------------------------------------------------------- /lib/features/splash/presentation/views/splash_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/features/splash/presentation/views/splash_view.dart -------------------------------------------------------------------------------- /lib/localization/lang/en_us.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/localization/lang/en_us.dart -------------------------------------------------------------------------------- /lib/localization/localization_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/localization/localization_service.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/routes/app_pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/routes/app_pages.dart -------------------------------------------------------------------------------- /lib/routes/mobile_app_pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/routes/mobile_app_pages.dart -------------------------------------------------------------------------------- /lib/routes/web_app_pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/lib/routes/web_app_pages.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/core/auth_manager_tests.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/core/auth_manager_tests.dart -------------------------------------------------------------------------------- /test/core/navigator_factory/helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/core/navigator_factory/helpers.dart -------------------------------------------------------------------------------- /test/core/navigator_factory/login_composer/helpers/dummy_login_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/core/navigator_factory/login_composer/helpers/dummy_login_service.dart -------------------------------------------------------------------------------- /test/core/navigator_factory/login_composer/helpers/login_use_case_output_spy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/core/navigator_factory/login_composer/helpers/login_use_case_output_spy.dart -------------------------------------------------------------------------------- /test/core/navigator_factory/login_composer/login_use_case_factory_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/core/navigator_factory/login_composer/login_use_case_factory_test.dart -------------------------------------------------------------------------------- /test/core/navigator_factory/login_composer/login_use_case_output_composer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/core/navigator_factory/login_composer/login_use_case_output_composer_test.dart -------------------------------------------------------------------------------- /test/core/navigator_factory/navigator_factory_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/core/navigator_factory/navigator_factory_test.dart -------------------------------------------------------------------------------- /test/create_invoice_from_cart_items_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/create_invoice_from_cart_items_test.dart -------------------------------------------------------------------------------- /test/customer/helper/customer_test_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/customer/helper/customer_test_helper.dart -------------------------------------------------------------------------------- /test/customer/helper/remote_store_customer_sut.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/customer/helper/remote_store_customer_sut.dart -------------------------------------------------------------------------------- /test/customer/helper/store_customer_stub.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/customer/helper/store_customer_stub.dart -------------------------------------------------------------------------------- /test/customer/local_store_customer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/customer/local_store_customer_test.dart -------------------------------------------------------------------------------- /test/customer/remote_store_customer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/customer/remote_store_customer_test.dart -------------------------------------------------------------------------------- /test/helpers/mock_client_stub.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/helpers/mock_client_stub.dart -------------------------------------------------------------------------------- /test/helpers/navigator/navigator_factory_spy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/helpers/navigator/navigator_factory_spy.dart -------------------------------------------------------------------------------- /test/helpers/navigator/navigator_shared_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/helpers/navigator/navigator_shared_helper.dart -------------------------------------------------------------------------------- /test/invoice/helpers/invoice_loader_stub_spy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/invoice/helpers/invoice_loader_stub_spy.dart -------------------------------------------------------------------------------- /test/invoice/helpers/remote_store_invoice_sut.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/invoice/helpers/remote_store_invoice_sut.dart -------------------------------------------------------------------------------- /test/invoice/helpers/shared_test_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/invoice/helpers/shared_test_helper.dart -------------------------------------------------------------------------------- /test/invoice/helpers/store_invoice_spy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/invoice/helpers/store_invoice_spy.dart -------------------------------------------------------------------------------- /test/invoice/helpers/store_invoice_stub.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/invoice/helpers/store_invoice_stub.dart -------------------------------------------------------------------------------- /test/invoice/invoice_loader_remote_store_decorator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/invoice/invoice_loader_remote_store_decorator_test.dart -------------------------------------------------------------------------------- /test/invoice/invoice_repository_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/invoice/invoice_repository_test.dart -------------------------------------------------------------------------------- /test/invoice/local_store_invoice_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/invoice/local_store_invoice_test.dart -------------------------------------------------------------------------------- /test/invoice/remote_store_invoice_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/invoice/remote_store_invoice_test.dart -------------------------------------------------------------------------------- /test/login/data/api_login/api_login_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/login/data/api_login/api_login_service_test.dart -------------------------------------------------------------------------------- /test/login/data/api_login/helpers/api_login_service_sut.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/login/data/api_login/helpers/api_login_service_sut.dart -------------------------------------------------------------------------------- /test/login/data/helpers/shared_test_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/login/data/helpers/shared_test_helper.dart -------------------------------------------------------------------------------- /test/login/data/login_use_case/helpers/login_service_output_spy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/login/data/login_use_case/helpers/login_service_output_spy.dart -------------------------------------------------------------------------------- /test/login/data/login_use_case/helpers/login_service_stub.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/login/data/login_use_case/helpers/login_service_stub.dart -------------------------------------------------------------------------------- /test/login/data/login_use_case/helpers/login_use_case_sut.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/login/data/login_use_case/helpers/login_use_case_sut.dart -------------------------------------------------------------------------------- /test/login/data/login_use_case/login_use_case_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/login/data/login_use_case/login_use_case_test.dart -------------------------------------------------------------------------------- /test/login/presentation/helpers/shared_helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/login/presentation/helpers/shared_helpers.dart -------------------------------------------------------------------------------- /test/login/presentation/login_controller_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/login/presentation/login_controller_test.dart -------------------------------------------------------------------------------- /test/login/presentation/login_router_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/login/presentation/login_router_test.dart -------------------------------------------------------------------------------- /test/products/products_api/helpers/remote_loader_sut.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/products/products_api/helpers/remote_loader_sut.dart -------------------------------------------------------------------------------- /test/products/products_api/remote_load_products_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/products/products_api/remote_load_products_test.dart -------------------------------------------------------------------------------- /test/products/products_cache/validate_product_cache_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/products/products_cache/validate_product_cache_test.dart -------------------------------------------------------------------------------- /test/splash/splash_router_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/test/splash/splash_router_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-POS/The-POS-Flutter/HEAD/web/manifest.json --------------------------------------------------------------------------------