├── .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
├── 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
├── 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
├── linux
├── .gitignore
├── CMakeLists.txt
├── flutter
│ ├── CMakeLists.txt
│ ├── generated_plugin_registrant.cc
│ ├── generated_plugin_registrant.h
│ └── generated_plugins.cmake
├── main.cc
├── my_application.cc
└── my_application.h
├── macos
├── .gitignore
├── Flutter
│ ├── Flutter-Debug.xcconfig
│ ├── Flutter-Release.xcconfig
│ └── GeneratedPluginRegistrant.swift
├── Podfile
├── Podfile.lock
├── Runner.xcodeproj
│ ├── project.pbxproj
│ ├── project.xcworkspace
│ │ └── xcshareddata
│ │ │ └── IDEWorkspaceChecks.plist
│ └── xcshareddata
│ │ └── xcschemes
│ │ └── Runner.xcscheme
├── Runner.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcshareddata
│ │ └── IDEWorkspaceChecks.plist
└── Runner
│ ├── AppDelegate.swift
│ ├── Assets.xcassets
│ └── AppIcon.appiconset
│ │ ├── Contents.json
│ │ ├── app_icon_1024.png
│ │ ├── app_icon_128.png
│ │ ├── app_icon_16.png
│ │ ├── app_icon_256.png
│ │ ├── app_icon_32.png
│ │ ├── app_icon_512.png
│ │ └── app_icon_64.png
│ ├── Base.lproj
│ └── MainMenu.xib
│ ├── Configs
│ ├── AppInfo.xcconfig
│ ├── Debug.xcconfig
│ ├── Release.xcconfig
│ └── Warnings.xcconfig
│ ├── DebugProfile.entitlements
│ ├── Info.plist
│ ├── MainFlutterWindow.swift
│ └── Release.entitlements
├── 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
└── windows
├── .gitignore
├── CMakeLists.txt
├── flutter
├── CMakeLists.txt
├── generated_plugin_registrant.cc
├── generated_plugin_registrant.h
└── generated_plugins.cmake
└── runner
├── CMakeLists.txt
├── Runner.rc
├── flutter_window.cpp
├── flutter_window.h
├── main.cpp
├── resource.h
├── resources
└── app_icon.ico
├── run_loop.cpp
├── run_loop.h
├── runner.exe.manifest
├── utils.cpp
├── utils.h
├── win32_window.cpp
└── win32_window.h
/.gitignore:
--------------------------------------------------------------------------------
1 | # Miscellaneous
2 | *.class
3 | *.log
4 | *.pyc
5 | *.swp
6 | .DS_Store
7 | .atom/
8 | .buildlog/
9 | .history
10 | .svn/
11 |
12 | # IntelliJ related
13 | *.iml
14 | *.ipr
15 | *.iws
16 | .idea/
17 |
18 | # The .vscode folder contains launch configuration and tasks you configure in
19 | # VS Code which you may wish to be included in version control, so this line
20 | # is commented out by default.
21 | #.vscode/
22 |
23 | # Flutter/Dart/Pub related
24 | **/doc/api/
25 | .dart_tool/
26 | .flutter-plugins
27 | .flutter-plugins-dependencies
28 | .packages
29 | .pub-cache/
30 | .pub/
31 | /build/
32 |
33 | # Web related
34 | lib/generated_plugin_registrant.dart
35 |
36 | # Symbolication related
37 | app.*.symbols
38 |
39 | # Obfuscation related
40 | app.*.map.json
41 |
42 | # Exceptions to above rules.
43 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
44 |
45 | # Flutter Web
46 | .firebase/
47 | .firebaserc
48 | firebase.json
49 |
--------------------------------------------------------------------------------
/.metadata:
--------------------------------------------------------------------------------
1 | # This file tracks properties of this Flutter project.
2 | # Used by Flutter tool to assess capabilities and perform upgrades etc.
3 | #
4 | # This file should be version controlled and should not be manually edited.
5 |
6 | version:
7 | revision: 8af6b2f038c1172e61d418869363a28dffec3cb4
8 | channel: stable
9 |
10 | project_type: app
11 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # SwiggyUI
2 |
3 | SwiggyUI App is a UI clone of a famous food ordering app called [Swiggy](https://play.google.com/store/apps/details?id=in.swiggy.android) built using Flutter. Show some ❤️ and star ⭐ the repo if you liked it, it makes me to share more open source flutter projects.
4 |
5 | Web - https://swiggyuiclone.web.app
6 |
7 | ## Screenshots
8 |
9 | ### Web UI
10 | 
11 |
12 | ### Tablet UI
13 | 
14 |
15 | ### Mobile UI
16 |
17 | - Initial Views
18 |
19 | Screen 1 | Screen 2 | Screen 3 | Screen 4
20 | :-------------------------:|:-------------------------:|:-------------------------:|:-------------------------:
21 | ||||
22 |
23 | Screen 5 | Screen 6 | Screen 7 | Screen 8
24 | :-------------------------:|:-------------------------:|:-------------------------:|:-------------------------:
25 | ||||
26 |
27 | Screen 9 | Screen 10 | Screen 11 | Screen 12
28 | :-------------------------:|:-------------------------:|:-------------------------:|:-------------------------:
29 | ||||
30 |
31 | - All Restaurant Views
32 |
33 | Screen 1 | Screen 2 | Screen 3 | Screen 4
34 | :-------------------------:|:-------------------------:|:-------------------------:|:-------------------------:
35 | ||||
36 |
37 | - Offer Views
38 |
39 | Screen 1 | Screen 2
40 | :-------------------------:|:-------------------------:
41 | ||
42 |
43 | - Restaurant Detail Views
44 |
45 | Screen 1 | Screen 2
46 | :-------------------------:|:-------------------------:
47 | ||
48 |
49 | ### Search
50 |
51 | Screen 1
52 | :-------------------------:
53 | |
54 |
55 | ### Cart
56 |
57 | Screen 1 | Screen 2
58 | :-------------------------:|:-------------------------:
59 | ||
60 |
61 | ### Account
62 |
63 | Screen 1 | Screen 2
64 | :-------------------------:|:-------------------------:
65 | ||
66 |
67 |
68 | Credit:- vinothvino42
69 |
70 |
71 | Made With Flutter 💙
72 |
73 |
74 |
--------------------------------------------------------------------------------
/analysis_options.yaml:
--------------------------------------------------------------------------------
1 | # This file configures the analyzer, which statically analyzes Dart code to
2 | # check for errors, warnings, and lints.
3 | #
4 | # The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5 | # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6 | # invoked from the command line by running `flutter analyze`.
7 |
8 | # The following line activates a set of recommended lints for Flutter apps,
9 | # packages, and plugins designed to encourage good coding practices.
10 | include: package:flutter_lints/flutter.yaml
11 |
12 | linter:
13 | # The lint rules applied to this project can be customized in the
14 | # section below to disable rules from the `package:flutter_lints/flutter.yaml`
15 | # included above or to enable additional rules. A list of all available lints
16 | # and their documentation is published at
17 | # https://dart-lang.github.io/linter/lints/index.html.
18 | #
19 | # Instead of disabling a lint rule for the entire project in the
20 | # section below, it can also be suppressed for a single line of code
21 | # or a specific dart file by using the `// ignore: name_of_lint` and
22 | # `// ignore_for_file: name_of_lint` syntax on the line or in the file
23 | # producing the lint.
24 | rules:
25 | avoid_print: false
26 | prefer_single_quotes: true
27 | sort_pub_dependencies: true
28 |
29 | # Additional information about this file can be found at
30 | # https://dart.dev/guides/language/analysis-options
--------------------------------------------------------------------------------
/android/.gitignore:
--------------------------------------------------------------------------------
1 | gradle-wrapper.jar
2 | /.gradle
3 | /captures/
4 | /gradlew
5 | /gradlew.bat
6 | /local.properties
7 | GeneratedPluginRegistrant.java
8 |
9 | # Remember to never publicly share your keystore.
10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11 | key.properties
12 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | def localProperties = new Properties()
2 | def localPropertiesFile = rootProject.file('local.properties')
3 | if (localPropertiesFile.exists()) {
4 | localPropertiesFile.withReader('UTF-8') { reader ->
5 | localProperties.load(reader)
6 | }
7 | }
8 |
9 | def flutterRoot = localProperties.getProperty('flutter.sdk')
10 | if (flutterRoot == null) {
11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
12 | }
13 |
14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
15 | if (flutterVersionCode == null) {
16 | flutterVersionCode = '1'
17 | }
18 |
19 | def flutterVersionName = localProperties.getProperty('flutter.versionName')
20 | if (flutterVersionName == null) {
21 | flutterVersionName = '1.0'
22 | }
23 |
24 | apply plugin: 'com.android.application'
25 | apply plugin: 'kotlin-android'
26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
27 |
28 | android {
29 | compileSdkVersion 30
30 |
31 | sourceSets {
32 | main.java.srcDirs += 'src/main/kotlin'
33 | }
34 |
35 | defaultConfig {
36 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
37 | applicationId "com.example.swiggy_ui"
38 | minSdkVersion 16
39 | targetSdkVersion 30
40 | versionCode flutterVersionCode.toInteger()
41 | versionName flutterVersionName
42 | }
43 |
44 | buildTypes {
45 | release {
46 | // TODO: Add your own signing config for the release build.
47 | // Signing with the debug keys for now, so `flutter run --release` works.
48 | signingConfig signingConfigs.debug
49 | }
50 | }
51 | }
52 |
53 | flutter {
54 | source '../..'
55 | }
56 |
57 | dependencies {
58 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
59 | }
60 |
--------------------------------------------------------------------------------
/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
6 |
13 |
17 |
21 |
26 |
30 |
31 |
32 |
33 |
34 |
35 |
37 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/android/app/src/main/kotlin/com/example/swiggy_ui/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package com.example.swiggy_ui
2 |
3 | import io.flutter.embedding.android.FlutterActivity
4 |
5 | class MainActivity: FlutterActivity() {
6 | }
7 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-v21/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/values-night/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/android/app/src/profile/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/android/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | ext.kotlin_version = '1.3.50'
3 | repositories {
4 | google()
5 | jcenter()
6 | }
7 |
8 | dependencies {
9 | classpath 'com.android.tools.build:gradle:4.1.0'
10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11 | }
12 | }
13 |
14 | allprojects {
15 | repositories {
16 | google()
17 | jcenter()
18 | }
19 | }
20 |
21 | rootProject.buildDir = '../build'
22 | subprojects {
23 | project.buildDir = "${rootProject.buildDir}/${project.name}"
24 | project.evaluationDependsOn(':app')
25 | }
26 |
27 | task clean(type: Delete) {
28 | delete rootProject.buildDir
29 | }
30 |
--------------------------------------------------------------------------------
/android/gradle.properties:
--------------------------------------------------------------------------------
1 | org.gradle.jvmargs=-Xmx1536M
2 | android.useAndroidX=true
3 | android.enableJetifier=true
4 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Fri Jun 23 08:50:38 CEST 2017
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
7 |
--------------------------------------------------------------------------------
/android/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
4 | def properties = new Properties()
5 |
6 | assert localPropertiesFile.exists()
7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
8 |
9 | def flutterSdkPath = properties.getProperty("flutter.sdk")
10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
12 |
--------------------------------------------------------------------------------
/assets/icons/blaze.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/blaze.png
--------------------------------------------------------------------------------
/assets/icons/bread.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/bread.png
--------------------------------------------------------------------------------
/assets/icons/coffee.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/coffee.png
--------------------------------------------------------------------------------
/assets/icons/courier.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/courier.png
--------------------------------------------------------------------------------
/assets/icons/delivery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/delivery.png
--------------------------------------------------------------------------------
/assets/icons/documents.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/documents.png
--------------------------------------------------------------------------------
/assets/icons/food.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/food.png
--------------------------------------------------------------------------------
/assets/icons/home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/home.png
--------------------------------------------------------------------------------
/assets/icons/kawaii-sushi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/kawaii-sushi.png
--------------------------------------------------------------------------------
/assets/icons/milkshake.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/milkshake.png
--------------------------------------------------------------------------------
/assets/icons/more.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/more.png
--------------------------------------------------------------------------------
/assets/icons/natural-food.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/natural-food.png
--------------------------------------------------------------------------------
/assets/icons/offer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/offer.png
--------------------------------------------------------------------------------
/assets/icons/only-on-swiggy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/only-on-swiggy.png
--------------------------------------------------------------------------------
/assets/icons/pocket.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/pocket.png
--------------------------------------------------------------------------------
/assets/icons/spark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/spark.png
--------------------------------------------------------------------------------
/assets/icons/thunder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/thunder.png
--------------------------------------------------------------------------------
/assets/icons/world-cup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/icons/world-cup.png
--------------------------------------------------------------------------------
/assets/images/banner1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/banner1.jpg
--------------------------------------------------------------------------------
/assets/images/banner2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/banner2.jpg
--------------------------------------------------------------------------------
/assets/images/banner3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/banner3.jpg
--------------------------------------------------------------------------------
/assets/images/banner4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/banner4.jpg
--------------------------------------------------------------------------------
/assets/images/burger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/burger.png
--------------------------------------------------------------------------------
/assets/images/delivery-boy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/delivery-boy.png
--------------------------------------------------------------------------------
/assets/images/delivery-man.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/delivery-man.png
--------------------------------------------------------------------------------
/assets/images/food1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/food1.jpg
--------------------------------------------------------------------------------
/assets/images/food10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/food10.jpg
--------------------------------------------------------------------------------
/assets/images/food2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/food2.jpg
--------------------------------------------------------------------------------
/assets/images/food3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/food3.jpg
--------------------------------------------------------------------------------
/assets/images/food4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/food4.jpg
--------------------------------------------------------------------------------
/assets/images/food5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/food5.jpg
--------------------------------------------------------------------------------
/assets/images/food6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/food6.jpg
--------------------------------------------------------------------------------
/assets/images/food7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/food7.jpg
--------------------------------------------------------------------------------
/assets/images/food8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/food8.jpg
--------------------------------------------------------------------------------
/assets/images/food9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/food9.jpg
--------------------------------------------------------------------------------
/assets/images/grocery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/grocery.png
--------------------------------------------------------------------------------
/assets/images/meat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/meat.png
--------------------------------------------------------------------------------
/assets/images/pizza-delivery-boy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/pizza-delivery-boy.png
--------------------------------------------------------------------------------
/assets/images/plate-food.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/plate-food.jpg
--------------------------------------------------------------------------------
/assets/images/plate-food1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/plate-food1.jpg
--------------------------------------------------------------------------------
/assets/images/user.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/assets/images/user.jpg
--------------------------------------------------------------------------------
/ios/.gitignore:
--------------------------------------------------------------------------------
1 | *.mode1v3
2 | *.mode2v3
3 | *.moved-aside
4 | *.pbxuser
5 | *.perspectivev3
6 | **/*sync/
7 | .sconsign.dblite
8 | .tags*
9 | **/.vagrant/
10 | **/DerivedData/
11 | Icon?
12 | **/Pods/
13 | **/.symlinks/
14 | profile
15 | xcuserdata
16 | **/.generated/
17 | Flutter/App.framework
18 | Flutter/Flutter.framework
19 | Flutter/Flutter.podspec
20 | Flutter/Generated.xcconfig
21 | Flutter/ephemeral/
22 | Flutter/app.flx
23 | Flutter/app.zip
24 | Flutter/flutter_assets/
25 | Flutter/flutter_export_environment.sh
26 | ServiceDefinitions.json
27 | Runner/GeneratedPluginRegistrant.*
28 |
29 | # Exceptions to above rules.
30 | !default.mode1v3
31 | !default.mode2v3
32 | !default.pbxuser
33 | !default.perspectivev3
34 |
--------------------------------------------------------------------------------
/ios/Flutter/AppFrameworkInfo.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | App
9 | CFBundleIdentifier
10 | io.flutter.flutter.app
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | App
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1.0
23 | MinimumOSVersion
24 | 8.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/ios/Flutter/Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
2 | #include "Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/ios/Flutter/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
2 | #include "Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/ios/Podfile:
--------------------------------------------------------------------------------
1 | # Uncomment this line to define a global platform for your project
2 | # platform :ios, '9.0'
3 |
4 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5 | ENV['COCOAPODS_DISABLE_STATS'] = 'true'
6 |
7 | project 'Runner', {
8 | 'Debug' => :debug,
9 | 'Profile' => :release,
10 | 'Release' => :release,
11 | }
12 |
13 | def flutter_root
14 | generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
15 | unless File.exist?(generated_xcode_build_settings_path)
16 | raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
17 | end
18 |
19 | File.foreach(generated_xcode_build_settings_path) do |line|
20 | matches = line.match(/FLUTTER_ROOT\=(.*)/)
21 | return matches[1].strip if matches
22 | end
23 | raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
24 | end
25 |
26 | require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
27 |
28 | flutter_ios_podfile_setup
29 |
30 | target 'Runner' do
31 | use_frameworks!
32 | use_modular_headers!
33 |
34 | flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
35 | end
36 |
37 | post_install do |installer|
38 | installer.pods_project.targets.each do |target|
39 | flutter_additional_ios_build_settings(target)
40 | end
41 | end
42 |
--------------------------------------------------------------------------------
/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - Flutter (1.0.0)
3 | - path_provider (0.0.1):
4 | - Flutter
5 |
6 | DEPENDENCIES:
7 | - Flutter (from `Flutter`)
8 | - path_provider (from `.symlinks/plugins/path_provider/ios`)
9 |
10 | EXTERNAL SOURCES:
11 | Flutter:
12 | :path: Flutter
13 | path_provider:
14 | :path: ".symlinks/plugins/path_provider/ios"
15 |
16 | SPEC CHECKSUMS:
17 | Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c
18 | path_provider: abfe2b5c733d04e238b0d8691db0cfd63a27a93c
19 |
20 | PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c
21 |
22 | COCOAPODS: 1.10.1
23 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
32 |
33 |
39 |
40 |
41 |
42 |
43 |
44 |
54 |
56 |
62 |
63 |
64 |
65 |
66 |
67 |
73 |
75 |
81 |
82 |
83 |
84 |
86 |
87 |
90 |
91 |
92 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | import UIKit
2 | import Flutter
3 |
4 | @UIApplicationMain
5 | @objc class AppDelegate: FlutterAppDelegate {
6 | override func application(
7 | _ application: UIApplication,
8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
9 | ) -> Bool {
10 | GeneratedPluginRegistrant.register(with: self)
11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions)
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "20x20",
5 | "idiom" : "iphone",
6 | "filename" : "Icon-App-20x20@2x.png",
7 | "scale" : "2x"
8 | },
9 | {
10 | "size" : "20x20",
11 | "idiom" : "iphone",
12 | "filename" : "Icon-App-20x20@3x.png",
13 | "scale" : "3x"
14 | },
15 | {
16 | "size" : "29x29",
17 | "idiom" : "iphone",
18 | "filename" : "Icon-App-29x29@1x.png",
19 | "scale" : "1x"
20 | },
21 | {
22 | "size" : "29x29",
23 | "idiom" : "iphone",
24 | "filename" : "Icon-App-29x29@2x.png",
25 | "scale" : "2x"
26 | },
27 | {
28 | "size" : "29x29",
29 | "idiom" : "iphone",
30 | "filename" : "Icon-App-29x29@3x.png",
31 | "scale" : "3x"
32 | },
33 | {
34 | "size" : "40x40",
35 | "idiom" : "iphone",
36 | "filename" : "Icon-App-40x40@2x.png",
37 | "scale" : "2x"
38 | },
39 | {
40 | "size" : "40x40",
41 | "idiom" : "iphone",
42 | "filename" : "Icon-App-40x40@3x.png",
43 | "scale" : "3x"
44 | },
45 | {
46 | "size" : "60x60",
47 | "idiom" : "iphone",
48 | "filename" : "Icon-App-60x60@2x.png",
49 | "scale" : "2x"
50 | },
51 | {
52 | "size" : "60x60",
53 | "idiom" : "iphone",
54 | "filename" : "Icon-App-60x60@3x.png",
55 | "scale" : "3x"
56 | },
57 | {
58 | "size" : "20x20",
59 | "idiom" : "ipad",
60 | "filename" : "Icon-App-20x20@1x.png",
61 | "scale" : "1x"
62 | },
63 | {
64 | "size" : "20x20",
65 | "idiom" : "ipad",
66 | "filename" : "Icon-App-20x20@2x.png",
67 | "scale" : "2x"
68 | },
69 | {
70 | "size" : "29x29",
71 | "idiom" : "ipad",
72 | "filename" : "Icon-App-29x29@1x.png",
73 | "scale" : "1x"
74 | },
75 | {
76 | "size" : "29x29",
77 | "idiom" : "ipad",
78 | "filename" : "Icon-App-29x29@2x.png",
79 | "scale" : "2x"
80 | },
81 | {
82 | "size" : "40x40",
83 | "idiom" : "ipad",
84 | "filename" : "Icon-App-40x40@1x.png",
85 | "scale" : "1x"
86 | },
87 | {
88 | "size" : "40x40",
89 | "idiom" : "ipad",
90 | "filename" : "Icon-App-40x40@2x.png",
91 | "scale" : "2x"
92 | },
93 | {
94 | "size" : "76x76",
95 | "idiom" : "ipad",
96 | "filename" : "Icon-App-76x76@1x.png",
97 | "scale" : "1x"
98 | },
99 | {
100 | "size" : "76x76",
101 | "idiom" : "ipad",
102 | "filename" : "Icon-App-76x76@2x.png",
103 | "scale" : "2x"
104 | },
105 | {
106 | "size" : "83.5x83.5",
107 | "idiom" : "ipad",
108 | "filename" : "Icon-App-83.5x83.5@2x.png",
109 | "scale" : "2x"
110 | },
111 | {
112 | "size" : "1024x1024",
113 | "idiom" : "ios-marketing",
114 | "filename" : "Icon-App-1024x1024@1x.png",
115 | "scale" : "1x"
116 | }
117 | ],
118 | "info" : {
119 | "version" : 1,
120 | "author" : "xcode"
121 | }
122 | }
123 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/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/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/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/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/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/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/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/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/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/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/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/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/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/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/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/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/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/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/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/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/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/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/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/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/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/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/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/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "LaunchImage.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "filename" : "LaunchImage@2x.png",
11 | "scale" : "2x"
12 | },
13 | {
14 | "idiom" : "universal",
15 | "filename" : "LaunchImage@3x.png",
16 | "scale" : "3x"
17 | }
18 | ],
19 | "info" : {
20 | "version" : 1,
21 | "author" : "xcode"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RudreshNarwal/flutter-swiggy-clone/8fa7e053036863a25a4924f2c482df0296650a3f/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md:
--------------------------------------------------------------------------------
1 | # Launch Screen Assets
2 |
3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory.
4 |
5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
--------------------------------------------------------------------------------
/ios/Runner/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/ios/Runner/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/ios/Runner/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | $(DEVELOPMENT_LANGUAGE)
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | swiggy_ui
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | $(FLUTTER_BUILD_NAME)
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | $(FLUTTER_BUILD_NUMBER)
23 | LSRequiresIPhoneOS
24 |
25 | UILaunchStoryboardName
26 | LaunchScreen
27 | UIMainStoryboardFile
28 | Main
29 | UISupportedInterfaceOrientations
30 |
31 | UIInterfaceOrientationPortrait
32 | UIInterfaceOrientationLandscapeLeft
33 | UIInterfaceOrientationLandscapeRight
34 |
35 | UISupportedInterfaceOrientations~ipad
36 |
37 | UIInterfaceOrientationPortrait
38 | UIInterfaceOrientationPortraitUpsideDown
39 | UIInterfaceOrientationLandscapeLeft
40 | UIInterfaceOrientationLandscapeRight
41 |
42 | UIViewControllerBasedStatusBarAppearance
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/ios/Runner/Runner-Bridging-Header.h:
--------------------------------------------------------------------------------
1 | #import "GeneratedPluginRegistrant.h"
2 |
--------------------------------------------------------------------------------
/lib/main.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 | import 'package:swiggy_ui/views/tab_desktop/tab_screen.dart';
3 |
4 | import 'shared/app_theme.dart';
5 | import 'views/tab_desktop/desktop_screen.dart';
6 | import 'views/mobile/mobile_screen.dart';
7 | import 'widgets/responsive.dart';
8 |
9 | void main() {
10 | runApp(const MyApp());
11 | }
12 |
13 | class MyApp extends StatelessWidget {
14 | const MyApp({Key? key}) : super(key: key);
15 |
16 | @override
17 | Widget build(BuildContext context) {
18 | return MaterialApp(
19 | title: 'SwiggyUI',
20 | debugShowCheckedModeBanner: false,
21 | theme: appPrimaryTheme(),
22 | home: const Responsive(
23 | mobile: MobileScreen(),
24 | tablet: TabScreen(),
25 | desktop: DesktopScreen(),
26 | ),
27 | );
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/lib/models/available_coupon.dart:
--------------------------------------------------------------------------------
1 | class AvailableCoupon {
2 | const AvailableCoupon({
3 | required this.coupon,
4 | required this.discount,
5 | required this.desc,
6 | });
7 |
8 | final String coupon;
9 | final String discount;
10 | final String desc;
11 |
12 | static const availableCoupons = [
13 | AvailableCoupon(
14 | coupon: '100INDUSIND',
15 | discount: 'Get 20 % discount using Induslnd Bank Credit Cards',
16 | desc:
17 | 'Use code 100INDUSIND & get 20 % discount up to Rs100 on orders above Rs400',
18 | ),
19 | AvailableCoupon(
20 | coupon: 'HSBC500',
21 | discount: 'Get 15 % discount using HSBC Bank Credit Cards',
22 | desc:
23 | 'Use code HSBC500 & get 14 % discount up to Rs125 on orders above Rs500',
24 | ),
25 | AvailableCoupon(
26 | coupon: '100TMB',
27 | discount: 'Get 20 % discount using TMB Bank Credit Cards',
28 | desc:
29 | 'Use code 100TMB & get 20 % discount up to Rs100 on orders above Rs400',
30 | ),
31 | AvailableCoupon(
32 | coupon: 'INDUSIND20',
33 | discount: 'Get 20 % discount using Induslnd Bank Credit Cards',
34 | desc:
35 | 'Use code INDUSIND20 & get 20 % discount up to Rs200 on orders above Rs600',
36 | ),
37 | AvailableCoupon(
38 | coupon: 'HSBC5100',
39 | discount: 'Get 20 % discount using Induslnd Bank Credit Cards',
40 | desc:
41 | 'Use code HSBC5100 & get 20 % discount up to Rs100 on orders above Rs400',
42 | ),
43 | AvailableCoupon(
44 | coupon: '100AXIS',
45 | discount: 'Get 20 % discount using Axis Bank Credit Cards',
46 | desc:
47 | 'Use code 100AXIS & get 20 % discount up to Rs100 on orders above Rs400',
48 | ),
49 | AvailableCoupon(
50 | coupon: '100INDUSIND',
51 | discount: 'Get 20 % discount using Induslnd Bank Credit Cards',
52 | desc:
53 | 'Use code 100INDUSIND & get 20 % discount up to Rs100 on orders above Rs400',
54 | ),
55 | ];
56 | }
57 |
--------------------------------------------------------------------------------
/lib/models/genie.dart:
--------------------------------------------------------------------------------
1 | class Genie {
2 | const Genie({
3 | required this.image,
4 | required this.title,
5 | });
6 |
7 | final String image;
8 | final String title;
9 |
10 | static const genieServices = [
11 | Genie(image: 'assets/icons/home.png', title: 'Home\nFood'),
12 | Genie(image: 'assets/icons/documents.png', title: 'Documents\nBooks'),
13 | Genie(image: 'assets/icons/delivery.png', title: 'Business\nDeliveries'),
14 | Genie(image: 'assets/icons/courier.png', title: 'Courier'),
15 | Genie(image: 'assets/icons/more.png', title: 'Anything\nElse'),
16 | ];
17 | }
18 |
--------------------------------------------------------------------------------
/lib/models/indian_food.dart:
--------------------------------------------------------------------------------
1 | class IndianFood {
2 | const IndianFood({
3 | required this.image,
4 | required this.name,
5 | });
6 |
7 | final String image;
8 | final String name;
9 |
10 | static const indianRestaurants = [
11 | IndianFood(image: 'assets/images/food3.jpg', name: 'South\nIndian'),
12 | IndianFood(image: 'assets/images/food5.jpg', name: 'Indian\nChai'),
13 | IndianFood(image: 'assets/images/food1.jpg', name: 'North \nIndian'),
14 | IndianFood(image: 'assets/images/food8.jpg', name: 'Indian\nBiryani'),
15 | IndianFood(image: 'assets/images/food9.jpg', name: 'Indian\nDosa'),
16 | IndianFood(image: 'assets/images/food4.jpg', name: 'Indian\nIdly'),
17 | ];
18 | }
19 |
--------------------------------------------------------------------------------
/lib/models/popular_brands.dart:
--------------------------------------------------------------------------------
1 | class PopularBrands {
2 | const PopularBrands({
3 | required this.image,
4 | required this.name,
5 | required this.minutes,
6 | });
7 |
8 | final String image;
9 | final String name;
10 | final String minutes;
11 |
12 | static const popularBrands = [
13 | PopularBrands(
14 | image: 'assets/images/food5.jpg',
15 | name: 'Sangeetha',
16 | minutes: '42 mins'),
17 | PopularBrands(
18 | image: 'assets/images/food4.jpg',
19 | name: 'Thalappakati',
20 | minutes: '32 mins'),
21 | PopularBrands(
22 | image: 'assets/images/food1.jpg', name: 'Subway', minutes: '26 mins'),
23 | PopularBrands(
24 | image: 'assets/images/food2.jpg',
25 | name: 'Chai Kings',
26 | minutes: '38 mins'),
27 | PopularBrands(
28 | image: 'assets/images/food3.jpg',
29 | name: 'BBQ Nation',
30 | minutes: '53 mins'),
31 | PopularBrands(
32 | image: 'assets/images/food4.jpg',
33 | name: 'A2B Chennai',
34 | minutes: '22 mins'),
35 | PopularBrands(
36 | image: 'assets/images/food6.jpg', name: 'KFC', minutes: '13 mins'),
37 | PopularBrands(
38 | image: 'assets/images/food7.jpg',
39 | name: 'Aasife Biryani',
40 | minutes: '31 mins'),
41 | PopularBrands(
42 | image: 'assets/images/food8.jpg',
43 | name: 'Chennai Biryani',
44 | minutes: '44 mins'),
45 | ];
46 | }
47 |
--------------------------------------------------------------------------------
/lib/models/popular_category.dart:
--------------------------------------------------------------------------------
1 | class PopularCategory {
2 | const PopularCategory({
3 | required this.image,
4 | required this.name,
5 | });
6 |
7 | final String image;
8 | final String name;
9 |
10 | static const popularCategories = [
11 | PopularCategory(
12 | image: 'assets/icons/coffee.png',
13 | name: 'Cold\nBeverages',
14 | ),
15 | PopularCategory(
16 | image: 'assets/icons/natural-food.png',
17 | name: 'Veg only',
18 | ),
19 | PopularCategory(
20 | image: 'assets/icons/only-on-swiggy.png',
21 | name: 'Only on\nSwiggy',
22 | ),
23 | PopularCategory(
24 | image: 'assets/icons/offer.png',
25 | name: 'Offers',
26 | ),
27 | PopularCategory(
28 | image: 'assets/icons/food.png',
29 | name: 'Meals',
30 | ),
31 | PopularCategory(
32 | image: 'assets/icons/milkshake.png',
33 | name: 'Milkshakes',
34 | ),
35 | PopularCategory(
36 | image: 'assets/icons/kawaii-sushi.png',
37 | name: 'Kawaii\n Sushi',
38 | ),
39 | PopularCategory(
40 | image: 'assets/icons/bread.png',
41 | name: 'Bread',
42 | ),
43 | PopularCategory(
44 | image: 'assets/icons/only-on-swiggy.png',
45 | name: 'Only on\nSwiggy',
46 | ),
47 | PopularCategory(
48 | image: 'assets/icons/food.png',
49 | name: 'Meals',
50 | ),
51 | PopularCategory(
52 | image: 'assets/icons/natural-food.png',
53 | name: 'Veg only',
54 | ),
55 | PopularCategory(
56 | image: 'assets/icons/coffee.png',
57 | name: 'Cold\nBeverages',
58 | ),
59 | PopularCategory(
60 | image: 'assets/icons/kawaii-sushi.png',
61 | name: 'Kawaii\n Sushi',
62 | ),
63 | PopularCategory(
64 | image: 'assets/icons/bread.png',
65 | name: 'Bread',
66 | ),
67 | PopularCategory(
68 | image: 'assets/icons/food.png',
69 | name: 'Meals',
70 | ),
71 | PopularCategory(
72 | image: 'assets/icons/milkshake.png',
73 | name: 'Milkshakes',
74 | ),
75 | PopularCategory(
76 | image: 'assets/icons/coffee.png',
77 | name: 'Cold\nBeverages',
78 | ),
79 | PopularCategory(
80 | image: 'assets/icons/natural-food.png',
81 | name: 'Veg only',
82 | ),
83 | ];
84 | }
85 |
--------------------------------------------------------------------------------
/lib/models/restaurant_detail.dart:
--------------------------------------------------------------------------------
1 | class RestaurantDetail {
2 | const RestaurantDetail({
3 | required this.title,
4 | required this.price,
5 | this.image = '',
6 | this.desc = '',
7 | });
8 |
9 | final String title;
10 | final String price;
11 | final String image;
12 | final String? desc;
13 |
14 | static const breakfast = [
15 | RestaurantDetail(
16 | title: 'Idly(2Pcs) (Breakfast)',
17 | price: 'Rs48',
18 | image: 'assets/images/food1.jpg',
19 | desc:
20 | 'A healthy breakfast item and an authentic south indian delicacy! Steamed and fluffy rice cake..more',
21 | ),
22 | RestaurantDetail(
23 | title: 'Sambar Idly (2Pcs)',
24 | image: 'assets/images/food2.jpg',
25 | price: 'Rs70',
26 | ),
27 | RestaurantDetail(
28 | title: 'Ghee Pongal',
29 | image: 'assets/images/food3.jpg',
30 | price: 'Rs85',
31 | desc:
32 | 'Cute, button idlis with authentic. South Indian sambar and coconut chutney gives the per..more',
33 | ),
34 | RestaurantDetail(
35 | title: 'Boori (1Set)',
36 | image: 'assets/images/food4.jpg',
37 | price: 'Rs85',
38 | ),
39 | RestaurantDetail(
40 | title: 'Podi Idly(2Pcs)',
41 | image: 'assets/images/food5.jpg',
42 | price: 'Rs110',
43 | ),
44 | RestaurantDetail(
45 | title: 'Mini Idly with Sambar',
46 | image: 'assets/images/food6.jpg',
47 | price: 'Rs85',
48 | desc:
49 | 'Cute, button idlis with authentic. South Indian sambar and coconut chutney gives the per..more',
50 | ),
51 | ];
52 |
53 | static const allTimeFavFoods = [
54 | RestaurantDetail(
55 | title: 'Plain Dosa',
56 | price: 'Rs30',
57 | desc: 'A healthy breakfast item and an authentic south indian delicacy!',
58 | ),
59 | RestaurantDetail(
60 | title: 'Rava Dosa',
61 | price: 'Rs70',
62 | ),
63 | RestaurantDetail(
64 | title: 'Onion Dosa',
65 | price: 'Rs85',
66 | desc:
67 | 'Cute, button dosas with authentic. South Indian sambar and coconut chutney gives the per..more',
68 | ),
69 | RestaurantDetail(
70 | title: 'Onion Uttapam',
71 | price: 'Rs85',
72 | ),
73 | RestaurantDetail(
74 | title: 'Tomato Uttapam',
75 | price: 'Rs110',
76 | ),
77 | RestaurantDetail(
78 | title: 'Onion Dosa & Sambar Vadai',
79 | price: 'Rs85',
80 | ),
81 | ];
82 |
83 | static const otherDishes = [
84 | RestaurantDetail(
85 | title: 'Kuzhi Paniyaram Karam (4Pcs)',
86 | price: 'Rs70',
87 | ),
88 | RestaurantDetail(
89 | title: 'Kuzhi Paniyaram Sweet (4Pcs)',
90 | price: 'Rs70',
91 | ),
92 | RestaurantDetail(
93 | title: 'Kuzhi Paniyaram Sweet & Karam (4Pcs)',
94 | price: 'Rs110',
95 | ),
96 | RestaurantDetail(
97 | title: 'Ghee Kuzhi Paniyaram',
98 | price: 'Rs85',
99 | ),
100 | ];
101 | }
102 |
--------------------------------------------------------------------------------
/lib/models/tab_desktop/menu.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | class Menu {
4 | const Menu({
5 | required this.icon,
6 | required this.title,
7 | });
8 |
9 | final IconData icon;
10 | final String title;
11 |
12 | static List