gitextract_w8uwwxwu/ ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android/ │ ├── .gitignore │ ├── app/ │ │ ├── build.gradle │ │ └── src/ │ │ ├── debug/ │ │ │ └── AndroidManifest.xml │ │ ├── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin/ │ │ │ │ └── com/ │ │ │ │ └── sinasys/ │ │ │ │ └── e_commerce_flutter/ │ │ │ │ └── MainActivity.kt │ │ │ └── res/ │ │ │ ├── drawable/ │ │ │ │ └── launch_background.xml │ │ │ ├── drawable-v21/ │ │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26/ │ │ │ │ └── launcher_icon.xml │ │ │ ├── values/ │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ └── values-night/ │ │ │ └── styles.xml │ │ └── profile/ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ └── settings.gradle ├── ios/ │ ├── .gitignore │ ├── Flutter/ │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.imageset/ │ │ │ ├── Contents.json │ │ │ └── README.md │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── 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 ├── lib/ │ ├── core/ │ │ ├── app_color.dart │ │ ├── app_data.dart │ │ ├── app_theme.dart │ │ └── extensions.dart │ ├── main.dart │ └── src/ │ ├── controller/ │ │ └── product_controller.dart │ ├── model/ │ │ ├── bottom_nav_bar_item.dart │ │ ├── categorical.dart │ │ ├── numerical.dart │ │ ├── product.dart │ │ ├── product_category.dart │ │ ├── product_size_type.dart │ │ └── recommended_product.dart │ └── view/ │ ├── animation/ │ │ ├── animated_switcher_wrapper.dart │ │ ├── open_container_wrapper.dart │ │ └── page_transition_switcher_wrapper.dart │ ├── screen/ │ │ ├── cart_screen.dart │ │ ├── favorite_screen.dart │ │ ├── home_screen.dart │ │ ├── product_detail_screen.dart │ │ ├── product_list_screen.dart │ │ └── profile_screen.dart │ └── widget/ │ ├── carousel_slider.dart │ ├── empty_cart.dart │ ├── list_item_selector.dart │ └── product_grid_view.dart ├── pubspec.yaml └── web/ ├── index.html └── manifest.json