├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── swiggy_ui │ │ │ │ └── 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 ├── icons │ ├── blaze.png │ ├── bread.png │ ├── coffee.png │ ├── courier.png │ ├── delivery.png │ ├── documents.png │ ├── food.png │ ├── home.png │ ├── kawaii-sushi.png │ ├── milkshake.png │ ├── more.png │ ├── natural-food.png │ ├── offer.png │ ├── only-on-swiggy.png │ ├── pocket.png │ ├── spark.png │ ├── thunder.png │ └── world-cup.png └── images │ ├── banner1.jpg │ ├── banner2.jpg │ ├── banner3.jpg │ ├── banner4.jpg │ ├── burger.png │ ├── delivery-boy.png │ ├── delivery-man.png │ ├── food1.jpg │ ├── food10.jpg │ ├── food2.jpg │ ├── food3.jpg │ ├── food4.jpg │ ├── food5.jpg │ ├── food6.jpg │ ├── food7.jpg │ ├── food8.jpg │ ├── food9.jpg │ ├── grocery.png │ ├── meat.png │ ├── pizza-delivery-boy.png │ ├── plate-food.jpg │ ├── plate-food1.jpg │ └── user.jpg ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── 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 │ └── 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 ├── main.dart ├── models │ ├── all_restaurant.dart │ ├── available_coupon.dart │ ├── genie.dart │ ├── indian_food.dart │ ├── popular_brands.dart │ ├── popular_category.dart │ ├── restaurant_detail.dart │ ├── spotlight_best_top_food.dart │ ├── tab_desktop │ │ ├── menu.dart │ │ └── order_menu.dart │ └── top_picks_food.dart ├── shared │ └── app_theme.dart ├── utils │ ├── app_colors.dart │ └── ui_helper.dart ├── views │ ├── mobile │ │ ├── account │ │ │ └── account_screen.dart │ │ ├── cart │ │ │ └── cart_screen.dart │ │ ├── home_bottom_navigation_screen.dart │ │ ├── mobile_screen.dart │ │ ├── search │ │ │ └── search_screen.dart │ │ └── swiggy │ │ │ ├── all_restaurants │ │ │ └── all_restaurants_screen.dart │ │ │ ├── best_in_safety_view.dart │ │ │ ├── food_groceries_availability_view.dart │ │ │ ├── genie │ │ │ ├── genie_grocery_card_view.dart │ │ │ ├── genie_screen.dart │ │ │ └── genie_view.dart │ │ │ ├── groceries │ │ │ └── grocery_screen.dart │ │ │ ├── in_the_spotlight_view.dart │ │ │ ├── indian_food │ │ │ ├── indian_delight_screen.dart │ │ │ └── indian_food_view.dart │ │ │ ├── meat │ │ │ └── meat_screen.dart │ │ │ ├── offers │ │ │ ├── offer_banner_view.dart │ │ │ └── offer_screen.dart │ │ │ ├── popular_brand_view.dart │ │ │ ├── popular_categories_view.dart │ │ │ ├── restaurants │ │ │ ├── restaurant_detail_screen.dart │ │ │ └── restaurant_vertical_list_view.dart │ │ │ ├── swiggy_safety_banner_view.dart │ │ │ ├── swiggy_screen.dart │ │ │ ├── top_offer_view.dart │ │ │ └── top_picks_for_you_view.dart │ └── tab_desktop │ │ ├── cart_view.dart │ │ ├── desktop_screen.dart │ │ ├── home_view.dart │ │ ├── menu_view.dart │ │ └── tab_screen.dart └── widgets │ ├── custom_divider_view.dart │ ├── dotted_seperator_view.dart │ ├── mobile │ ├── food_list_item_view.dart │ ├── search_food_list_item_view.dart │ └── spotlight_best_top_food_item.dart │ ├── responsive.dart │ └── veg_badge_view.dart ├── pubspec.lock ├── pubspec.yaml ├── screenshots ├── account1.jpg ├── account2.jpg ├── all-restaurant1.jpg ├── all-restaurant2.jpg ├── all-restaurant3.jpg ├── all-restaurant4.jpg ├── cart1.jpg ├── cart2.jpg ├── genie.jpg ├── grocery.jpg ├── indian-food.jpg ├── meat.jpg ├── offers1.jpg ├── offers2.jpg ├── restaurant-detail1.jpg ├── restaurant-detail2.jpg ├── search.jpg ├── swiggy1.jpg ├── swiggy2.jpg ├── swiggy3.jpg ├── swiggy4.jpg ├── swiggy5.jpg ├── swiggy6.jpg ├── swiggy7.jpg ├── swiggy8.jpg ├── swiggy_tablet_ui.png └── swiggy_web_ui.png ├── test └── widget_test.dart └── web ├── favicon.png ├── icons ├── Icon-192.png └── Icon-512.png ├── index.html └── manifest.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/swiggy_ui/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/android/app/src/main/kotlin/com/example/swiggy_ui/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/icons/blaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/blaze.png -------------------------------------------------------------------------------- /assets/icons/bread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/bread.png -------------------------------------------------------------------------------- /assets/icons/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/coffee.png -------------------------------------------------------------------------------- /assets/icons/courier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/courier.png -------------------------------------------------------------------------------- /assets/icons/delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/delivery.png -------------------------------------------------------------------------------- /assets/icons/documents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/documents.png -------------------------------------------------------------------------------- /assets/icons/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/food.png -------------------------------------------------------------------------------- /assets/icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/home.png -------------------------------------------------------------------------------- /assets/icons/kawaii-sushi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/kawaii-sushi.png -------------------------------------------------------------------------------- /assets/icons/milkshake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/milkshake.png -------------------------------------------------------------------------------- /assets/icons/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/more.png -------------------------------------------------------------------------------- /assets/icons/natural-food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/natural-food.png -------------------------------------------------------------------------------- /assets/icons/offer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/offer.png -------------------------------------------------------------------------------- /assets/icons/only-on-swiggy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/only-on-swiggy.png -------------------------------------------------------------------------------- /assets/icons/pocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/pocket.png -------------------------------------------------------------------------------- /assets/icons/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/spark.png -------------------------------------------------------------------------------- /assets/icons/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/thunder.png -------------------------------------------------------------------------------- /assets/icons/world-cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/icons/world-cup.png -------------------------------------------------------------------------------- /assets/images/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/banner1.jpg -------------------------------------------------------------------------------- /assets/images/banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/banner2.jpg -------------------------------------------------------------------------------- /assets/images/banner3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/banner3.jpg -------------------------------------------------------------------------------- /assets/images/banner4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/banner4.jpg -------------------------------------------------------------------------------- /assets/images/burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/burger.png -------------------------------------------------------------------------------- /assets/images/delivery-boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/delivery-boy.png -------------------------------------------------------------------------------- /assets/images/delivery-man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/delivery-man.png -------------------------------------------------------------------------------- /assets/images/food1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/food1.jpg -------------------------------------------------------------------------------- /assets/images/food10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/food10.jpg -------------------------------------------------------------------------------- /assets/images/food2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/food2.jpg -------------------------------------------------------------------------------- /assets/images/food3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/food3.jpg -------------------------------------------------------------------------------- /assets/images/food4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/food4.jpg -------------------------------------------------------------------------------- /assets/images/food5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/food5.jpg -------------------------------------------------------------------------------- /assets/images/food6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/food6.jpg -------------------------------------------------------------------------------- /assets/images/food7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/food7.jpg -------------------------------------------------------------------------------- /assets/images/food8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/food8.jpg -------------------------------------------------------------------------------- /assets/images/food9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/food9.jpg -------------------------------------------------------------------------------- /assets/images/grocery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/grocery.png -------------------------------------------------------------------------------- /assets/images/meat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/meat.png -------------------------------------------------------------------------------- /assets/images/pizza-delivery-boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/pizza-delivery-boy.png -------------------------------------------------------------------------------- /assets/images/plate-food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/plate-food.jpg -------------------------------------------------------------------------------- /assets/images/plate-food1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/plate-food1.jpg -------------------------------------------------------------------------------- /assets/images/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/assets/images/user.jpg -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/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/vinothvino42/SwiggyUI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/all_restaurant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/models/all_restaurant.dart -------------------------------------------------------------------------------- /lib/models/available_coupon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/models/available_coupon.dart -------------------------------------------------------------------------------- /lib/models/genie.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/models/genie.dart -------------------------------------------------------------------------------- /lib/models/indian_food.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/models/indian_food.dart -------------------------------------------------------------------------------- /lib/models/popular_brands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/models/popular_brands.dart -------------------------------------------------------------------------------- /lib/models/popular_category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/models/popular_category.dart -------------------------------------------------------------------------------- /lib/models/restaurant_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/models/restaurant_detail.dart -------------------------------------------------------------------------------- /lib/models/spotlight_best_top_food.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/models/spotlight_best_top_food.dart -------------------------------------------------------------------------------- /lib/models/tab_desktop/menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/models/tab_desktop/menu.dart -------------------------------------------------------------------------------- /lib/models/tab_desktop/order_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/models/tab_desktop/order_menu.dart -------------------------------------------------------------------------------- /lib/models/top_picks_food.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/models/top_picks_food.dart -------------------------------------------------------------------------------- /lib/shared/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/shared/app_theme.dart -------------------------------------------------------------------------------- /lib/utils/app_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/utils/app_colors.dart -------------------------------------------------------------------------------- /lib/utils/ui_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/utils/ui_helper.dart -------------------------------------------------------------------------------- /lib/views/mobile/account/account_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/account/account_screen.dart -------------------------------------------------------------------------------- /lib/views/mobile/cart/cart_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/cart/cart_screen.dart -------------------------------------------------------------------------------- /lib/views/mobile/home_bottom_navigation_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/home_bottom_navigation_screen.dart -------------------------------------------------------------------------------- /lib/views/mobile/mobile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/mobile_screen.dart -------------------------------------------------------------------------------- /lib/views/mobile/search/search_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/search/search_screen.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/all_restaurants/all_restaurants_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/all_restaurants/all_restaurants_screen.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/best_in_safety_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/best_in_safety_view.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/food_groceries_availability_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/food_groceries_availability_view.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/genie/genie_grocery_card_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/genie/genie_grocery_card_view.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/genie/genie_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/genie/genie_screen.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/genie/genie_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/genie/genie_view.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/groceries/grocery_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/groceries/grocery_screen.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/in_the_spotlight_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/in_the_spotlight_view.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/indian_food/indian_delight_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/indian_food/indian_delight_screen.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/indian_food/indian_food_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/indian_food/indian_food_view.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/meat/meat_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/meat/meat_screen.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/offers/offer_banner_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/offers/offer_banner_view.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/offers/offer_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/offers/offer_screen.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/popular_brand_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/popular_brand_view.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/popular_categories_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/popular_categories_view.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/restaurants/restaurant_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/restaurants/restaurant_detail_screen.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/restaurants/restaurant_vertical_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/restaurants/restaurant_vertical_list_view.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/swiggy_safety_banner_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/swiggy_safety_banner_view.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/swiggy_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/swiggy_screen.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/top_offer_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/top_offer_view.dart -------------------------------------------------------------------------------- /lib/views/mobile/swiggy/top_picks_for_you_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/mobile/swiggy/top_picks_for_you_view.dart -------------------------------------------------------------------------------- /lib/views/tab_desktop/cart_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/tab_desktop/cart_view.dart -------------------------------------------------------------------------------- /lib/views/tab_desktop/desktop_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/tab_desktop/desktop_screen.dart -------------------------------------------------------------------------------- /lib/views/tab_desktop/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/tab_desktop/home_view.dart -------------------------------------------------------------------------------- /lib/views/tab_desktop/menu_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/tab_desktop/menu_view.dart -------------------------------------------------------------------------------- /lib/views/tab_desktop/tab_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/views/tab_desktop/tab_screen.dart -------------------------------------------------------------------------------- /lib/widgets/custom_divider_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/widgets/custom_divider_view.dart -------------------------------------------------------------------------------- /lib/widgets/dotted_seperator_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/widgets/dotted_seperator_view.dart -------------------------------------------------------------------------------- /lib/widgets/mobile/food_list_item_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/widgets/mobile/food_list_item_view.dart -------------------------------------------------------------------------------- /lib/widgets/mobile/search_food_list_item_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/widgets/mobile/search_food_list_item_view.dart -------------------------------------------------------------------------------- /lib/widgets/mobile/spotlight_best_top_food_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/widgets/mobile/spotlight_best_top_food_item.dart -------------------------------------------------------------------------------- /lib/widgets/responsive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/widgets/responsive.dart -------------------------------------------------------------------------------- /lib/widgets/veg_badge_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/lib/widgets/veg_badge_view.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/account1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/account1.jpg -------------------------------------------------------------------------------- /screenshots/account2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/account2.jpg -------------------------------------------------------------------------------- /screenshots/all-restaurant1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/all-restaurant1.jpg -------------------------------------------------------------------------------- /screenshots/all-restaurant2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/all-restaurant2.jpg -------------------------------------------------------------------------------- /screenshots/all-restaurant3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/all-restaurant3.jpg -------------------------------------------------------------------------------- /screenshots/all-restaurant4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/all-restaurant4.jpg -------------------------------------------------------------------------------- /screenshots/cart1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/cart1.jpg -------------------------------------------------------------------------------- /screenshots/cart2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/cart2.jpg -------------------------------------------------------------------------------- /screenshots/genie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/genie.jpg -------------------------------------------------------------------------------- /screenshots/grocery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/grocery.jpg -------------------------------------------------------------------------------- /screenshots/indian-food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/indian-food.jpg -------------------------------------------------------------------------------- /screenshots/meat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/meat.jpg -------------------------------------------------------------------------------- /screenshots/offers1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/offers1.jpg -------------------------------------------------------------------------------- /screenshots/offers2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/offers2.jpg -------------------------------------------------------------------------------- /screenshots/restaurant-detail1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/restaurant-detail1.jpg -------------------------------------------------------------------------------- /screenshots/restaurant-detail2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/restaurant-detail2.jpg -------------------------------------------------------------------------------- /screenshots/search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/search.jpg -------------------------------------------------------------------------------- /screenshots/swiggy1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/swiggy1.jpg -------------------------------------------------------------------------------- /screenshots/swiggy2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/swiggy2.jpg -------------------------------------------------------------------------------- /screenshots/swiggy3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/swiggy3.jpg -------------------------------------------------------------------------------- /screenshots/swiggy4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/swiggy4.jpg -------------------------------------------------------------------------------- /screenshots/swiggy5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/swiggy5.jpg -------------------------------------------------------------------------------- /screenshots/swiggy6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/swiggy6.jpg -------------------------------------------------------------------------------- /screenshots/swiggy7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/swiggy7.jpg -------------------------------------------------------------------------------- /screenshots/swiggy8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/swiggy8.jpg -------------------------------------------------------------------------------- /screenshots/swiggy_tablet_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/swiggy_tablet_ui.png -------------------------------------------------------------------------------- /screenshots/swiggy_web_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/screenshots/swiggy_web_ui.png -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinothvino42/SwiggyUI/HEAD/web/manifest.json --------------------------------------------------------------------------------