├── .gitattributes ├── .gitignore ├── .gradle ├── 5.1.1 │ ├── fileChanges │ │ └── last-build.bin │ ├── fileHashes │ │ └── fileHashes.lock │ └── gc.properties ├── buildOutputCleanup │ ├── buildOutputCleanup.lock │ └── cache.properties └── vcs-1 │ └── gc.properties ├── .metadata ├── README.md ├── android ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flipkart_flutter_ui │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── 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 │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── applinces.png ├── banner_one.png ├── banner_three.png ├── banner_two.png ├── beauty.png ├── electronic.png ├── fashion.png ├── female.png ├── fk-plus_043837.png ├── flipkart-plus_4ee2f9.png ├── flutter1.png ├── flutter2.png ├── grocery.png ├── hair_dryer.png ├── home.png ├── laptop.png ├── logo.png ├── male_modle.png ├── mobile_top.png ├── mobiles.png ├── nokia.png ├── phone.png ├── phone_three.png ├── phone_two.png ├── power_bank.png ├── powered_by.png ├── running.png ├── shirt_modle.png ├── sports_and_more.png ├── telivision.png ├── toys_and_babby.png └── watch.png ├── ios ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── flutter_export_environment.sh ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── 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 │ └── main.m ├── lib ├── main.dart └── src │ ├── Constant │ └── Constant.dart │ ├── Models │ └── deals.dart │ ├── splash │ └── splash_screens.dart │ └── ui │ ├── body.dart │ ├── homePage.dart │ └── widgets │ ├── Category.dart │ ├── Deals.dart │ ├── DealsOfTheDay.dart │ ├── Drawerfile.dart │ ├── DualCameraPhones.dart │ ├── FeaturedBrand.dart │ ├── Offers.dart │ └── OffersInList.dart ├── pubspec.lock ├── pubspec.yaml ├── screens ├── android1.png ├── demo.gif └── iphone1.png └── test └── widget_test.dart /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.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 | # Visual Studio Code related 19 | .vscode/ 20 | 21 | # Flutter/Dart/Pub related 22 | **/doc/api/ 23 | .dart_tool/ 24 | .flutter-plugins 25 | .packages 26 | .pub-cache/ 27 | .pub/ 28 | /build/ 29 | 30 | # Android related 31 | **/android/**/gradle-wrapper.jar 32 | **/android/.gradle 33 | **/android/captures/ 34 | **/android/gradlew 35 | **/android/gradlew.bat 36 | **/android/local.properties 37 | **/android/**/GeneratedPluginRegistrant.java 38 | 39 | # iOS/XCode related 40 | **/ios/**/*.mode1v3 41 | **/ios/**/*.mode2v3 42 | **/ios/**/*.moved-aside 43 | **/ios/**/*.pbxuser 44 | **/ios/**/*.perspectivev3 45 | **/ios/**/*sync/ 46 | **/ios/**/.sconsign.dblite 47 | **/ios/**/.tags* 48 | **/ios/**/.vagrant/ 49 | **/ios/**/DerivedData/ 50 | **/ios/**/Icon? 51 | **/ios/**/Pods/ 52 | **/ios/**/.symlinks/ 53 | **/ios/**/profile 54 | **/ios/**/xcuserdata 55 | **/ios/.generated/ 56 | **/ios/Flutter/App.framework 57 | **/ios/Flutter/Flutter.framework 58 | **/ios/Flutter/Generated.xcconfig 59 | **/ios/Flutter/app.flx 60 | **/ios/Flutter/app.zip 61 | **/ios/Flutter/flutter_assets/ 62 | **/ios/ServiceDefinitions.json 63 | **/ios/Runner/GeneratedPluginRegistrant.* 64 | 65 | # Exceptions to above rules. 66 | !**/ios/**/default.mode1v3 67 | !**/ios/**/default.mode2v3 68 | !**/ios/**/default.pbxuser 69 | !**/ios/**/default.perspectivev3 70 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages 71 | -------------------------------------------------------------------------------- /.gradle/5.1.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/5.1.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/.gradle/5.1.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /.gradle/5.1.1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/.gradle/5.1.1/gc.properties -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri May 31 13:42:37 IST 2019 2 | gradle.version=5.1.1 3 | -------------------------------------------------------------------------------- /.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/.gradle/vcs-1/gc.properties -------------------------------------------------------------------------------- /.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: 7a4c33425ddd78c54aba07d86f3f9a4a0051769b 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Flutter Ecommerce App UI Demo 2 | 3 | A sample application to show an Ecommerce App Flutter Clone. 4 | 5 | # Demo 6 | 7 | 8 | 9 | 10 | # Android Screen 11 | 12 | 13 | 14 | # iOS Screen 15 | 16 | 17 | 18 | ## Getting Started 19 | 20 | This project is a starting point for a Flutter application. 21 | 22 | A few resources to get you started if this is your first Flutter project: 23 | 24 | - [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) 25 | - [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) 26 | 27 | For help getting started with Flutter, view our 28 | [online documentation](https://flutter.dev/docs), which offers tutorials, 29 | samples, guidance on mobile development, and a full API reference. 30 | -------------------------------------------------------------------------------- /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 from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 26 | 27 | android { 28 | compileSdkVersion 28 29 | 30 | lintOptions { 31 | disable 'InvalidPackage' 32 | } 33 | 34 | defaultConfig { 35 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 36 | applicationId "com.example.flipkart_flutter_ui" 37 | minSdkVersion 16 38 | targetSdkVersion 28 39 | versionCode flutterVersionCode.toInteger() 40 | versionName flutterVersionName 41 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 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 | testImplementation 'junit:junit:4.12' 59 | androidTestImplementation 'com.android.support.test:runner:1.0.2' 60 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 61 | } 62 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 9 | 10 | 15 | 22 | 26 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/flipkart_flutter_ui/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.flipkart_flutter_ui; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | import io.flutter.plugins.GeneratedPluginRegistrant; 6 | 7 | public class MainActivity extends FlutterActivity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | GeneratedPluginRegistrant.registerWith(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.2.1' 9 | } 10 | } 11 | 12 | allprojects { 13 | repositories { 14 | google() 15 | jcenter() 16 | } 17 | } 18 | 19 | rootProject.buildDir = '../build' 20 | subprojects { 21 | project.buildDir = "${rootProject.buildDir}/${project.name}" 22 | } 23 | subprojects { 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.enableR8=true 3 | -------------------------------------------------------------------------------- /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-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /assets/applinces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/applinces.png -------------------------------------------------------------------------------- /assets/banner_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/banner_one.png -------------------------------------------------------------------------------- /assets/banner_three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/banner_three.png -------------------------------------------------------------------------------- /assets/banner_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/banner_two.png -------------------------------------------------------------------------------- /assets/beauty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/beauty.png -------------------------------------------------------------------------------- /assets/electronic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/electronic.png -------------------------------------------------------------------------------- /assets/fashion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/fashion.png -------------------------------------------------------------------------------- /assets/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/female.png -------------------------------------------------------------------------------- /assets/fk-plus_043837.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/fk-plus_043837.png -------------------------------------------------------------------------------- /assets/flipkart-plus_4ee2f9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/flipkart-plus_4ee2f9.png -------------------------------------------------------------------------------- /assets/flutter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/flutter1.png -------------------------------------------------------------------------------- /assets/flutter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/flutter2.png -------------------------------------------------------------------------------- /assets/grocery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/grocery.png -------------------------------------------------------------------------------- /assets/hair_dryer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/hair_dryer.png -------------------------------------------------------------------------------- /assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/home.png -------------------------------------------------------------------------------- /assets/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/laptop.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/logo.png -------------------------------------------------------------------------------- /assets/male_modle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/male_modle.png -------------------------------------------------------------------------------- /assets/mobile_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/mobile_top.png -------------------------------------------------------------------------------- /assets/mobiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/mobiles.png -------------------------------------------------------------------------------- /assets/nokia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/nokia.png -------------------------------------------------------------------------------- /assets/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/phone.png -------------------------------------------------------------------------------- /assets/phone_three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/phone_three.png -------------------------------------------------------------------------------- /assets/phone_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/phone_two.png -------------------------------------------------------------------------------- /assets/power_bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/power_bank.png -------------------------------------------------------------------------------- /assets/powered_by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/powered_by.png -------------------------------------------------------------------------------- /assets/running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/running.png -------------------------------------------------------------------------------- /assets/shirt_modle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/shirt_modle.png -------------------------------------------------------------------------------- /assets/sports_and_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/sports_and_more.png -------------------------------------------------------------------------------- /assets/telivision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/telivision.png -------------------------------------------------------------------------------- /assets/toys_and_babby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/toys_and_babby.png -------------------------------------------------------------------------------- /assets/watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/assets/watch.png -------------------------------------------------------------------------------- /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 "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/flutter_export_environment.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # This is a generated file; do not edit or check into version control. 3 | export "FLUTTER_ROOT=/home/shivanchal/flutter" 4 | export "FLUTTER_APPLICATION_PATH=/home/shivanchal/projects_flutter/flutter_Flipkart_UI_clone_original" 5 | export "FLUTTER_TARGET=lib/main.dart" 6 | export "FLUTTER_BUILD_DIR=build" 7 | export "SYMROOT=${SOURCE_ROOT}/../build/ios" 8 | export "FLUTTER_FRAMEWORK_DIR=/home/shivanchal/flutter/bin/cache/artifacts/engine/ios" 9 | export "FLUTTER_BUILD_NAME=1.0.0" 10 | export "FLUTTER_BUILD_NUMBER=1" 11 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 11 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 12 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; }; 13 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 14 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; }; 15 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 16 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; }; 17 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; }; 18 | 97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; }; 19 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 20 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 21 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXCopyFilesBuildPhase section */ 25 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 26 | isa = PBXCopyFilesBuildPhase; 27 | buildActionMask = 2147483647; 28 | dstPath = ""; 29 | dstSubfolderSpec = 10; 30 | files = ( 31 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */, 32 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */, 33 | ); 34 | name = "Embed Frameworks"; 35 | runOnlyForDeploymentPostprocessing = 0; 36 | }; 37 | /* End PBXCopyFilesBuildPhase section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 41 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 42 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 43 | 3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = ""; }; 44 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 45 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 46 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 47 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 48 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 49 | 9740EEBA1CF902C7004384FC /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = Flutter/Flutter.framework; sourceTree = ""; }; 50 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 51 | 97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 52 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 53 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 54 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 55 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 56 | /* End PBXFileReference section */ 57 | 58 | /* Begin PBXFrameworksBuildPhase section */ 59 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 60 | isa = PBXFrameworksBuildPhase; 61 | buildActionMask = 2147483647; 62 | files = ( 63 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */, 64 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */, 65 | ); 66 | runOnlyForDeploymentPostprocessing = 0; 67 | }; 68 | /* End PBXFrameworksBuildPhase section */ 69 | 70 | /* Begin PBXGroup section */ 71 | 9740EEB11CF90186004384FC /* Flutter */ = { 72 | isa = PBXGroup; 73 | children = ( 74 | 3B80C3931E831B6300D905FE /* App.framework */, 75 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 76 | 9740EEBA1CF902C7004384FC /* Flutter.framework */, 77 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 78 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 79 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 80 | ); 81 | name = Flutter; 82 | sourceTree = ""; 83 | }; 84 | 97C146E51CF9000F007C117D = { 85 | isa = PBXGroup; 86 | children = ( 87 | 9740EEB11CF90186004384FC /* Flutter */, 88 | 97C146F01CF9000F007C117D /* Runner */, 89 | 97C146EF1CF9000F007C117D /* Products */, 90 | CF3B75C9A7D2FA2A4C99F110 /* Frameworks */, 91 | ); 92 | sourceTree = ""; 93 | }; 94 | 97C146EF1CF9000F007C117D /* Products */ = { 95 | isa = PBXGroup; 96 | children = ( 97 | 97C146EE1CF9000F007C117D /* Runner.app */, 98 | ); 99 | name = Products; 100 | sourceTree = ""; 101 | }; 102 | 97C146F01CF9000F007C117D /* Runner */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */, 106 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */, 107 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 108 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 109 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 110 | 97C147021CF9000F007C117D /* Info.plist */, 111 | 97C146F11CF9000F007C117D /* Supporting Files */, 112 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 113 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 114 | ); 115 | path = Runner; 116 | sourceTree = ""; 117 | }; 118 | 97C146F11CF9000F007C117D /* Supporting Files */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | 97C146F21CF9000F007C117D /* main.m */, 122 | ); 123 | name = "Supporting Files"; 124 | sourceTree = ""; 125 | }; 126 | /* End PBXGroup section */ 127 | 128 | /* Begin PBXNativeTarget section */ 129 | 97C146ED1CF9000F007C117D /* Runner */ = { 130 | isa = PBXNativeTarget; 131 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 132 | buildPhases = ( 133 | 9740EEB61CF901F6004384FC /* Run Script */, 134 | 97C146EA1CF9000F007C117D /* Sources */, 135 | 97C146EB1CF9000F007C117D /* Frameworks */, 136 | 97C146EC1CF9000F007C117D /* Resources */, 137 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 138 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 139 | ); 140 | buildRules = ( 141 | ); 142 | dependencies = ( 143 | ); 144 | name = Runner; 145 | productName = Runner; 146 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 147 | productType = "com.apple.product-type.application"; 148 | }; 149 | /* End PBXNativeTarget section */ 150 | 151 | /* Begin PBXProject section */ 152 | 97C146E61CF9000F007C117D /* Project object */ = { 153 | isa = PBXProject; 154 | attributes = { 155 | LastUpgradeCheck = 0910; 156 | ORGANIZATIONNAME = "The Chromium Authors"; 157 | TargetAttributes = { 158 | 97C146ED1CF9000F007C117D = { 159 | CreatedOnToolsVersion = 7.3.1; 160 | }; 161 | }; 162 | }; 163 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 164 | compatibilityVersion = "Xcode 3.2"; 165 | developmentRegion = English; 166 | hasScannedForEncodings = 0; 167 | knownRegions = ( 168 | en, 169 | Base, 170 | ); 171 | mainGroup = 97C146E51CF9000F007C117D; 172 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 173 | projectDirPath = ""; 174 | projectRoot = ""; 175 | targets = ( 176 | 97C146ED1CF9000F007C117D /* Runner */, 177 | ); 178 | }; 179 | /* End PBXProject section */ 180 | 181 | /* Begin PBXResourcesBuildPhase section */ 182 | 97C146EC1CF9000F007C117D /* Resources */ = { 183 | isa = PBXResourcesBuildPhase; 184 | buildActionMask = 2147483647; 185 | files = ( 186 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 187 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 188 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */, 189 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 190 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 191 | ); 192 | runOnlyForDeploymentPostprocessing = 0; 193 | }; 194 | /* End PBXResourcesBuildPhase section */ 195 | 196 | /* Begin PBXShellScriptBuildPhase section */ 197 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 198 | isa = PBXShellScriptBuildPhase; 199 | buildActionMask = 2147483647; 200 | files = ( 201 | ); 202 | inputPaths = ( 203 | ); 204 | name = "Thin Binary"; 205 | outputPaths = ( 206 | ); 207 | runOnlyForDeploymentPostprocessing = 0; 208 | shellPath = /bin/sh; 209 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" thin"; 210 | }; 211 | 9740EEB61CF901F6004384FC /* Run Script */ = { 212 | isa = PBXShellScriptBuildPhase; 213 | buildActionMask = 2147483647; 214 | files = ( 215 | ); 216 | inputPaths = ( 217 | ); 218 | name = "Run Script"; 219 | outputPaths = ( 220 | ); 221 | runOnlyForDeploymentPostprocessing = 0; 222 | shellPath = /bin/sh; 223 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 224 | }; 225 | /* End PBXShellScriptBuildPhase section */ 226 | 227 | /* Begin PBXSourcesBuildPhase section */ 228 | 97C146EA1CF9000F007C117D /* Sources */ = { 229 | isa = PBXSourcesBuildPhase; 230 | buildActionMask = 2147483647; 231 | files = ( 232 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */, 233 | 97C146F31CF9000F007C117D /* main.m in Sources */, 234 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 235 | ); 236 | runOnlyForDeploymentPostprocessing = 0; 237 | }; 238 | /* End PBXSourcesBuildPhase section */ 239 | 240 | /* Begin PBXVariantGroup section */ 241 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 242 | isa = PBXVariantGroup; 243 | children = ( 244 | 97C146FB1CF9000F007C117D /* Base */, 245 | ); 246 | name = Main.storyboard; 247 | sourceTree = ""; 248 | }; 249 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 250 | isa = PBXVariantGroup; 251 | children = ( 252 | 97C147001CF9000F007C117D /* Base */, 253 | ); 254 | name = LaunchScreen.storyboard; 255 | sourceTree = ""; 256 | }; 257 | /* End PBXVariantGroup section */ 258 | 259 | /* Begin XCBuildConfiguration section */ 260 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 261 | isa = XCBuildConfiguration; 262 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 263 | buildSettings = { 264 | ALWAYS_SEARCH_USER_PATHS = NO; 265 | CLANG_ANALYZER_NONNULL = YES; 266 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 267 | CLANG_CXX_LIBRARY = "libc++"; 268 | CLANG_ENABLE_MODULES = YES; 269 | CLANG_ENABLE_OBJC_ARC = YES; 270 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 271 | CLANG_WARN_BOOL_CONVERSION = YES; 272 | CLANG_WARN_COMMA = YES; 273 | CLANG_WARN_CONSTANT_CONVERSION = YES; 274 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 275 | CLANG_WARN_EMPTY_BODY = YES; 276 | CLANG_WARN_ENUM_CONVERSION = YES; 277 | CLANG_WARN_INFINITE_RECURSION = YES; 278 | CLANG_WARN_INT_CONVERSION = YES; 279 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 280 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 281 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 282 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 283 | CLANG_WARN_STRICT_PROTOTYPES = YES; 284 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 285 | CLANG_WARN_UNREACHABLE_CODE = YES; 286 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 287 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 288 | COPY_PHASE_STRIP = NO; 289 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 290 | ENABLE_NS_ASSERTIONS = NO; 291 | ENABLE_STRICT_OBJC_MSGSEND = YES; 292 | GCC_C_LANGUAGE_STANDARD = gnu99; 293 | GCC_NO_COMMON_BLOCKS = YES; 294 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 295 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 296 | GCC_WARN_UNDECLARED_SELECTOR = YES; 297 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 298 | GCC_WARN_UNUSED_FUNCTION = YES; 299 | GCC_WARN_UNUSED_VARIABLE = YES; 300 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 301 | MTL_ENABLE_DEBUG_INFO = NO; 302 | SDKROOT = iphoneos; 303 | TARGETED_DEVICE_FAMILY = "1,2"; 304 | VALIDATE_PRODUCT = YES; 305 | }; 306 | name = Profile; 307 | }; 308 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 309 | isa = XCBuildConfiguration; 310 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 311 | buildSettings = { 312 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 313 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 314 | DEVELOPMENT_TEAM = S8QB4VV633; 315 | ENABLE_BITCODE = NO; 316 | FRAMEWORK_SEARCH_PATHS = ( 317 | "$(inherited)", 318 | "$(PROJECT_DIR)/Flutter", 319 | ); 320 | INFOPLIST_FILE = Runner/Info.plist; 321 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 322 | LIBRARY_SEARCH_PATHS = ( 323 | "$(inherited)", 324 | "$(PROJECT_DIR)/Flutter", 325 | ); 326 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flipkartFlutterUi; 327 | PRODUCT_NAME = "$(TARGET_NAME)"; 328 | VERSIONING_SYSTEM = "apple-generic"; 329 | }; 330 | name = Profile; 331 | }; 332 | 97C147031CF9000F007C117D /* Debug */ = { 333 | isa = XCBuildConfiguration; 334 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 335 | buildSettings = { 336 | ALWAYS_SEARCH_USER_PATHS = NO; 337 | CLANG_ANALYZER_NONNULL = YES; 338 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 339 | CLANG_CXX_LIBRARY = "libc++"; 340 | CLANG_ENABLE_MODULES = YES; 341 | CLANG_ENABLE_OBJC_ARC = YES; 342 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 343 | CLANG_WARN_BOOL_CONVERSION = YES; 344 | CLANG_WARN_COMMA = YES; 345 | CLANG_WARN_CONSTANT_CONVERSION = YES; 346 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 347 | CLANG_WARN_EMPTY_BODY = YES; 348 | CLANG_WARN_ENUM_CONVERSION = YES; 349 | CLANG_WARN_INFINITE_RECURSION = YES; 350 | CLANG_WARN_INT_CONVERSION = YES; 351 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 352 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 353 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 354 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 355 | CLANG_WARN_STRICT_PROTOTYPES = YES; 356 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 357 | CLANG_WARN_UNREACHABLE_CODE = YES; 358 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 359 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 360 | COPY_PHASE_STRIP = NO; 361 | DEBUG_INFORMATION_FORMAT = dwarf; 362 | ENABLE_STRICT_OBJC_MSGSEND = YES; 363 | ENABLE_TESTABILITY = YES; 364 | GCC_C_LANGUAGE_STANDARD = gnu99; 365 | GCC_DYNAMIC_NO_PIC = NO; 366 | GCC_NO_COMMON_BLOCKS = YES; 367 | GCC_OPTIMIZATION_LEVEL = 0; 368 | GCC_PREPROCESSOR_DEFINITIONS = ( 369 | "DEBUG=1", 370 | "$(inherited)", 371 | ); 372 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 373 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 374 | GCC_WARN_UNDECLARED_SELECTOR = YES; 375 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 376 | GCC_WARN_UNUSED_FUNCTION = YES; 377 | GCC_WARN_UNUSED_VARIABLE = YES; 378 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 379 | MTL_ENABLE_DEBUG_INFO = YES; 380 | ONLY_ACTIVE_ARCH = YES; 381 | SDKROOT = iphoneos; 382 | TARGETED_DEVICE_FAMILY = "1,2"; 383 | }; 384 | name = Debug; 385 | }; 386 | 97C147041CF9000F007C117D /* Release */ = { 387 | isa = XCBuildConfiguration; 388 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 389 | buildSettings = { 390 | ALWAYS_SEARCH_USER_PATHS = NO; 391 | CLANG_ANALYZER_NONNULL = YES; 392 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 393 | CLANG_CXX_LIBRARY = "libc++"; 394 | CLANG_ENABLE_MODULES = YES; 395 | CLANG_ENABLE_OBJC_ARC = YES; 396 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 397 | CLANG_WARN_BOOL_CONVERSION = YES; 398 | CLANG_WARN_COMMA = YES; 399 | CLANG_WARN_CONSTANT_CONVERSION = YES; 400 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 401 | CLANG_WARN_EMPTY_BODY = YES; 402 | CLANG_WARN_ENUM_CONVERSION = YES; 403 | CLANG_WARN_INFINITE_RECURSION = YES; 404 | CLANG_WARN_INT_CONVERSION = YES; 405 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 406 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 407 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 408 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 409 | CLANG_WARN_STRICT_PROTOTYPES = YES; 410 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 411 | CLANG_WARN_UNREACHABLE_CODE = YES; 412 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 413 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 414 | COPY_PHASE_STRIP = NO; 415 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 416 | ENABLE_NS_ASSERTIONS = NO; 417 | ENABLE_STRICT_OBJC_MSGSEND = YES; 418 | GCC_C_LANGUAGE_STANDARD = gnu99; 419 | GCC_NO_COMMON_BLOCKS = YES; 420 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 421 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 422 | GCC_WARN_UNDECLARED_SELECTOR = YES; 423 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 424 | GCC_WARN_UNUSED_FUNCTION = YES; 425 | GCC_WARN_UNUSED_VARIABLE = YES; 426 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 427 | MTL_ENABLE_DEBUG_INFO = NO; 428 | SDKROOT = iphoneos; 429 | TARGETED_DEVICE_FAMILY = "1,2"; 430 | VALIDATE_PRODUCT = YES; 431 | }; 432 | name = Release; 433 | }; 434 | 97C147061CF9000F007C117D /* Debug */ = { 435 | isa = XCBuildConfiguration; 436 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 437 | buildSettings = { 438 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 439 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 440 | ENABLE_BITCODE = NO; 441 | FRAMEWORK_SEARCH_PATHS = ( 442 | "$(inherited)", 443 | "$(PROJECT_DIR)/Flutter", 444 | ); 445 | INFOPLIST_FILE = Runner/Info.plist; 446 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 447 | LIBRARY_SEARCH_PATHS = ( 448 | "$(inherited)", 449 | "$(PROJECT_DIR)/Flutter", 450 | ); 451 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flipkartFlutterUi; 452 | PRODUCT_NAME = "$(TARGET_NAME)"; 453 | VERSIONING_SYSTEM = "apple-generic"; 454 | }; 455 | name = Debug; 456 | }; 457 | 97C147071CF9000F007C117D /* Release */ = { 458 | isa = XCBuildConfiguration; 459 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 460 | buildSettings = { 461 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 462 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 463 | ENABLE_BITCODE = NO; 464 | FRAMEWORK_SEARCH_PATHS = ( 465 | "$(inherited)", 466 | "$(PROJECT_DIR)/Flutter", 467 | ); 468 | INFOPLIST_FILE = Runner/Info.plist; 469 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 470 | LIBRARY_SEARCH_PATHS = ( 471 | "$(inherited)", 472 | "$(PROJECT_DIR)/Flutter", 473 | ); 474 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flipkartFlutterUi; 475 | PRODUCT_NAME = "$(TARGET_NAME)"; 476 | VERSIONING_SYSTEM = "apple-generic"; 477 | }; 478 | name = Release; 479 | }; 480 | /* End XCBuildConfiguration section */ 481 | 482 | /* Begin XCConfigurationList section */ 483 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 484 | isa = XCConfigurationList; 485 | buildConfigurations = ( 486 | 97C147031CF9000F007C117D /* Debug */, 487 | 97C147041CF9000F007C117D /* Release */, 488 | 249021D3217E4FDB00AE95B9 /* Profile */, 489 | ); 490 | defaultConfigurationIsVisible = 0; 491 | defaultConfigurationName = Release; 492 | }; 493 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 494 | isa = XCConfigurationList; 495 | buildConfigurations = ( 496 | 97C147061CF9000F007C117D /* Debug */, 497 | 97C147071CF9000F007C117D /* Release */, 498 | 249021D4217E4FDB00AE95B9 /* Profile */, 499 | ); 500 | defaultConfigurationIsVisible = 0; 501 | defaultConfigurationName = Release; 502 | }; 503 | /* End XCConfigurationList section */ 504 | }; 505 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 506 | } 507 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 31 | 32 | 33 | 34 | 40 | 41 | 42 | 43 | 44 | 45 | 56 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 75 | 77 | 83 | 84 | 85 | 86 | 88 | 89 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application 7 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 8 | [GeneratedPluginRegistrant registerWithRegistry:self]; 9 | // Override point for customization after application launch. 10 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 11 | } 12 | 13 | @end 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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/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 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | flipkart_flutter_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/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flipkart_flutter_ui/src/ui/homePage.dart'; 2 | import 'package:flipkart_flutter_ui/src/splash/splash_screens.dart'; 3 | import 'package:flipkart_flutter_ui/src/Constant/Constant.dart'; 4 | import 'package:flutter/material.dart'; 5 | 6 | void main() => runApp(MyApp()); 7 | 8 | class MyApp extends StatelessWidget { 9 | @override 10 | Widget build(BuildContext context) { 11 | return MaterialApp( 12 | debugShowCheckedModeBanner: false, 13 | title: 'Flipkart', 14 | theme: ThemeData( 15 | primaryColor: Color(0xff2874F0), 16 | ), 17 | routes: { 18 | SPLASH_SCREEN: (BuildContext context)=> AnimatedSplashScreen(), 19 | HOME_SCREEN: (BuildContext context)=> HomePage(), 20 | }, 21 | home: AnimatedSplashScreen(), 22 | ); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /lib/src/Constant/Constant.dart: -------------------------------------------------------------------------------- 1 | String SPLASH_SCREEN = '/AnimatedSplashScreen', 2 | HOME_SCREEN='/HomePage'; -------------------------------------------------------------------------------- /lib/src/Models/deals.dart: -------------------------------------------------------------------------------- 1 | // ignore: camel_case_types 2 | class deals { 3 | String _imageUrl; 4 | String _name; 5 | String _discount; 6 | 7 | deals(this._imageUrl, this._name, this._discount); 8 | 9 | String get discount => _discount; 10 | 11 | String get name => _name; 12 | 13 | String get imageUrl => _imageUrl; 14 | } 15 | -------------------------------------------------------------------------------- /lib/src/splash/splash_screens.dart: -------------------------------------------------------------------------------- 1 | import 'dart:async'; 2 | 3 | import 'package:flipkart_flutter_ui/src/Constant/Constant.dart'; 4 | import 'package:flutter/cupertino.dart'; 5 | import 'package:flutter/material.dart'; 6 | 7 | class AnimatedSplashScreen extends StatefulWidget { 8 | @override 9 | SplashScreenState createState() => new SplashScreenState(); 10 | } 11 | 12 | class SplashScreenState extends State 13 | with SingleTickerProviderStateMixin { 14 | var _visible = true; 15 | 16 | AnimationController animationController; 17 | Animation animation; 18 | 19 | startTime() async { 20 | var _duration = new Duration(seconds: 3); 21 | return new Timer(_duration, navigationPage); 22 | } 23 | 24 | void navigationPage() { 25 | Navigator.of(context).pushReplacementNamed(HOME_SCREEN); 26 | } 27 | 28 | @override 29 | void initState() { 30 | super.initState(); 31 | animationController = new AnimationController( 32 | vsync: this, duration: new Duration(seconds: 2)); 33 | animation = 34 | new CurvedAnimation(parent: animationController, curve: Curves.easeOut); 35 | 36 | animation.addListener(() => this.setState(() {})); 37 | animationController.forward(); 38 | 39 | setState(() { 40 | _visible = !_visible; 41 | }); 42 | startTime(); 43 | } 44 | 45 | @override 46 | Widget build(BuildContext context) { 47 | return Scaffold( 48 | body: Stack( 49 | fit: StackFit.expand, 50 | children: [ 51 | new Column( 52 | mainAxisAlignment: MainAxisAlignment.end, 53 | mainAxisSize: MainAxisSize.min, 54 | children: [ 55 | 56 | Padding(padding: EdgeInsets.only(bottom: 30.0),child:new Image.asset('assets/powered_by.png',height: 25.0,fit: BoxFit.scaleDown,)) 57 | 58 | 59 | ],), 60 | new Column( 61 | mainAxisAlignment: MainAxisAlignment.center, 62 | children: [ 63 | new Image.asset( 64 | 'assets/logo.png', 65 | width: animation.value * 250, 66 | height: animation.value * 250, 67 | ), 68 | ], 69 | ), 70 | ], 71 | ), 72 | ); 73 | } 74 | } -------------------------------------------------------------------------------- /lib/src/ui/body.dart: -------------------------------------------------------------------------------- 1 | import 'package:flipkart_flutter_ui/src/ui/widgets/FeaturedBrand.dart'; 2 | import 'package:flipkart_flutter_ui/src/ui/widgets/Category.dart'; 3 | import 'package:flipkart_flutter_ui/src/ui/widgets/DealsOfTheDay.dart'; 4 | import 'package:flipkart_flutter_ui/src/ui/widgets/OffersInList.dart'; 5 | import 'package:flipkart_flutter_ui/src/ui/widgets/DualCameraPhones.dart'; 6 | import 'package:flipkart_flutter_ui/src/ui/widgets/Deals.dart'; 7 | import 'package:flipkart_flutter_ui/src/ui/widgets/Offers.dart'; 8 | import 'package:flutter/material.dart'; 9 | 10 | class Body extends StatefulWidget { 11 | @override 12 | _BodyState createState() => _BodyState(); 13 | } 14 | 15 | class _BodyState extends State { 16 | @override 17 | Widget build(BuildContext context) { 18 | return SafeArea( 19 | child: ListView( 20 | children: [ 21 | Container( 22 | height: MediaQuery.of(context).size.height / 11, 23 | color: Color(0xff2874F0), 24 | child: Padding( 25 | padding: const EdgeInsets.all(8), 26 | child: Container( 27 | alignment: Alignment.center, 28 | decoration: BoxDecoration( 29 | borderRadius: BorderRadius.circular(5), 30 | color: Colors.white), 31 | child: InkWell( 32 | child: Row( 33 | children: [ 34 | Padding( 35 | padding: const EdgeInsets.only(left: 10), 36 | child: Icon(Icons.search), 37 | ), 38 | Padding( 39 | padding: const EdgeInsets.only(left: 10), 40 | child: Text( 41 | 'Search for Products, Brands and More', 42 | style: TextStyle(color: Colors.grey), 43 | ), 44 | ), 45 | ], 46 | ), 47 | ), 48 | ), 49 | ), 50 | ), 51 | Firstlist(), 52 | Secondlist(), 53 | Thirdlist(), 54 | Fourthlist(), 55 | SizedBox( 56 | height: 5, 57 | ), 58 | Fifthlist(), 59 | Sixthlist(), 60 | Seventhlist(), 61 | SizedBox( 62 | height: 5, 63 | ) 64 | ], 65 | ), 66 | ); 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /lib/src/ui/homePage.dart: -------------------------------------------------------------------------------- 1 | import 'package:flipkart_flutter_ui/src/ui/widgets/Drawerfile.dart'; 2 | import 'package:flipkart_flutter_ui/src/ui/body.dart'; 3 | import 'package:flutter/material.dart'; 4 | 5 | class HomePage extends StatefulWidget { 6 | @override 7 | _HomePageState createState() => _HomePageState(); 8 | } 9 | 10 | class _HomePageState extends State { 11 | @override 12 | Widget build(BuildContext context) { 13 | return Scaffold( 14 | appBar: AppBar( 15 | elevation: 0, 16 | title: Image.asset( 17 | 'assets/flutter1.png', 18 | height: MediaQuery.of(context).size.height / 2, 19 | width: MediaQuery.of(context).size.width / 4, 20 | ), 21 | actions: [ 22 | Icon( 23 | Icons.notifications, 24 | size: 20, 25 | ), 26 | Padding( 27 | padding: const EdgeInsets.only(left: 20, right: 20), 28 | child: Icon( 29 | Icons.shopping_cart, 30 | size: 20, 31 | ), 32 | ) 33 | ], 34 | ), 35 | drawer: Drawer( 36 | child: Drawerfile(), 37 | ), 38 | body: Body(), 39 | ); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /lib/src/ui/widgets/Category.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class Firstlist extends StatefulWidget { 4 | @override 5 | _FirstlistState createState() => _FirstlistState(); 6 | } 7 | 8 | class _FirstlistState extends State { 9 | var name = [ 10 | "assets/applinces.png", 11 | "assets/beauty.png", 12 | "assets/electronic.png", 13 | "assets/fashion.png", 14 | "assets/grocery.png", 15 | "assets/mobiles.png", 16 | "assets/sports_and_more.png", 17 | "assets/toys_and_babby.png", 18 | "assets/home.png" 19 | ]; 20 | 21 | buildItem(BuildContext context, int index) { 22 | return Container( 23 | width: MediaQuery.of(context).size.width / 6, 24 | height: MediaQuery.of(context).size.height / 11, 25 | child: Image.asset( 26 | name[index], 27 | height: MediaQuery.of(context).size.height / 11, 28 | width: MediaQuery.of(context).size.width / 6, 29 | ), 30 | ); 31 | } 32 | 33 | @override 34 | Widget build(BuildContext context) { 35 | return Container( 36 | height: MediaQuery.of(context).size.height / 11, 37 | child: ListView.builder( 38 | itemCount: 8, 39 | scrollDirection: Axis.horizontal, 40 | itemBuilder: (context, index) { 41 | return buildItem(context, index); 42 | }, 43 | ), 44 | ); 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /lib/src/ui/widgets/Deals.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class Sixthlist extends StatefulWidget { 4 | @override 5 | _SixthlistState createState() => _SixthlistState(); 6 | } 7 | 8 | class _SixthlistState extends State { 9 | @override 10 | Widget build(BuildContext context) { 11 | return Container( 12 | height: MediaQuery.of(context).size.height / 2.5, 13 | child: Card( 14 | child: Row( 15 | children: [ 16 | Expanded( 17 | child: Image.asset( 18 | "assets/hair_dryer.png"), 19 | ), 20 | Expanded( 21 | child: Image.asset( 22 | "assets/laptop.png"), 23 | ) 24 | ], 25 | ), 26 | ), 27 | ); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /lib/src/ui/widgets/DealsOfTheDay.dart: -------------------------------------------------------------------------------- 1 | import 'package:flipkart_flutter_ui/src/Models/deals.dart'; 2 | import 'package:flutter/material.dart'; 3 | 4 | class Fourthlist extends StatefulWidget { 5 | @override 6 | _FourthlistState createState() => _FourthlistState(); 7 | } 8 | 9 | class _FourthlistState extends State { 10 | List deal; 11 | 12 | @override 13 | void initState() { 14 | super.initState(); 15 | addDealItem(); 16 | } 17 | 18 | addDealItem() { 19 | deal = List(); 20 | deal.add(deals( 21 | "assets/female.png", 22 | 'Dresses & Tops', 23 | 'From 99')); 24 | deal.add(deals( 25 | "assets/watch.png", 26 | 'Watches', 27 | 'Upto 70% Off')); 28 | deal.add(deals( 29 | "assets/male_modle.png", 30 | 'T Shirts', 31 | 'Starting @99')); 32 | deal.add(deals( 33 | "assets/shirt_modle.png", 34 | 'Casual Shirts', 35 | 'Extra 100 Off')); 36 | } 37 | 38 | buildItem(BuildContext context, int index) { 39 | return Container( 40 | height: MediaQuery.of(context).size.height / 3.5, 41 | child: Column( 42 | children: [ 43 | Container( 44 | height: MediaQuery.of(context).size.height / 6.5, 45 | width: MediaQuery.of(context).size.width / 4, 46 | child: Image.asset(deal[index].imageUrl), 47 | ), 48 | Text( 49 | '${deal[index].name}', 50 | style: TextStyle(fontSize: 15), 51 | ), 52 | Padding( 53 | padding: const EdgeInsets.only(top: 2), 54 | child: Text( 55 | '${deal[index].discount}', 56 | style: TextStyle(color: Colors.green), 57 | ), 58 | ), 59 | ], 60 | ), 61 | ); 62 | } 63 | 64 | @override 65 | Widget build(BuildContext context) { 66 | var size = MediaQuery.of(context).size; 67 | return Container( 68 | height: size.height / 1.6, 69 | child: Stack( 70 | children: [ 71 | Container( 72 | height: size.height / 1.7, 73 | color: Color(0xffFFBAF0), 74 | ), 75 | Container( 76 | height: size.height / 7, 77 | width: size.width, 78 | alignment: Alignment.topCenter, 79 | child: Image.asset( 80 | "assets/banner_three.png", 81 | ), 82 | ), 83 | Positioned( 84 | top: MediaQuery.of(context).size.height / 65, 85 | child: Column( 86 | children: [ 87 | Container( 88 | padding: EdgeInsets.all(10), 89 | child: Row( 90 | crossAxisAlignment: CrossAxisAlignment.center, 91 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 92 | children: [ 93 | Column( 94 | crossAxisAlignment: CrossAxisAlignment.start, 95 | children: [ 96 | Text( 97 | 'Deals of the Day', 98 | style: TextStyle(color: Colors.white, fontSize: 20), 99 | ), 100 | Row( 101 | children: [ 102 | Icon( 103 | Icons.access_time, 104 | color: Colors.white, 105 | ), 106 | Text( 107 | '19h 18m Remaining', 108 | style: TextStyle( 109 | color: Colors.white, fontSize: 10), 110 | ) 111 | ], 112 | ) 113 | ], 114 | ), 115 | Padding( 116 | padding: const EdgeInsets.only(right: 8), 117 | child: Container( 118 | decoration: BoxDecoration( 119 | borderRadius: BorderRadius.circular(5), 120 | color: Colors.white), 121 | child: Padding( 122 | padding: const EdgeInsets.all(8.0), 123 | child: Text('View All'), 124 | ), 125 | ), 126 | ) 127 | ], 128 | ), 129 | width: size.width, 130 | ), 131 | Container( 132 | height: size.height / 1.75, 133 | padding: EdgeInsets.only(left: 8, right: 8), 134 | width: size.width, 135 | child: Card( 136 | shape: RoundedRectangleBorder( 137 | borderRadius: BorderRadius.circular(10)), 138 | color: Colors.white, 139 | child: GridView.builder( 140 | padding: EdgeInsets.all(10), 141 | itemCount: 4, 142 | shrinkWrap: true, 143 | physics: NeverScrollableScrollPhysics(), 144 | itemBuilder: (context, index) { 145 | return buildItem(context, index); 146 | }, 147 | gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( 148 | crossAxisCount: 2), 149 | ), 150 | ), 151 | ) 152 | ], 153 | ), 154 | ) 155 | ], 156 | ), 157 | ); 158 | } 159 | } 160 | -------------------------------------------------------------------------------- /lib/src/ui/widgets/Drawerfile.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | import 'Drawerfile.dart'; 4 | 5 | class Drawerfile extends StatefulWidget { 6 | @override 7 | _DrawerfileState createState() => _DrawerfileState(); 8 | } 9 | 10 | class _DrawerfileState extends State { 11 | List drawerItemModel; 12 | 13 | @override 14 | void initState() { 15 | super.initState(); 16 | addDrawerItem(); 17 | } 18 | 19 | addDrawerItem() { 20 | drawerItemModel = List(); 21 | drawerItemModel.add(DrawerItemModel("Flutter Devs Plus Zone", 22 | "https://rukminim1.flixcart.com/www/50/50/promos/11/07/2018/70e5346e-fce4-4718-8e56-27be8492faa5.png?q=80")); 23 | drawerItemModel.add(DrawerItemModel("Electronics", 24 | "https://rukminim1.flixcart.com/www/50/50/promos/31/10/2016/f7634981-4fd5-4127-9b93-9f57606dccd3.png?q=80")); 25 | drawerItemModel.add(DrawerItemModel("Fashion", 26 | "https://rukminim1.flixcart.com/www/50/50/promos/30/10/2016/39d573db-dd62-430a-8166-0dcc53b6f299.png?q=80")); 27 | drawerItemModel.add(DrawerItemModel("Home and Furniture", 28 | "https://rukminim1.flixcart.com/www/50/50/promos/30/10/2016/6e4fe892-0517-46bc-ac56-f3ee86bf8aa4.png?q=80")); 29 | drawerItemModel.add(DrawerItemModel("TVs & Appliances", 30 | "https://rukminim1.flixcart.com/www/50/50/promos/31/10/2016/db1549b7-a409-4bea-aa76-d57e97fd9304.png?q=80")); 31 | drawerItemModel.add(DrawerItemModel("Toys and Baby", 32 | "https://rukminim1.flixcart.com/www/50/50/promos/14/08/2018/c1895632-47f2-45f7-a2af-0f736fd52969.png?q=80")); 33 | drawerItemModel.add(DrawerItemModel("Beauty and Personal Care", 34 | "https://rukminim1.flixcart.com/www/50/50/promos/27/07/2018/b124a16b-e4b6-4d76-a271-81cf6ee830c9.png?q=80")); 35 | drawerItemModel.add(DrawerItemModel("Sports,Books and More", 36 | "https://rukminim1.flixcart.com/www/50/50/promos/31/10/2016/e33209f1-50f0-4f08-bc7b-bf0d61c87b84.png?q=80")); 37 | drawerItemModel.add(DrawerItemModel("Grocery", 38 | "https://rukminim1.flixcart.com/www/50/50/promos/30/06/2017/250d742c-0971-4a3e-bef7-6cfbdd6d306b.png?q=80")); 39 | drawerItemModel.add(DrawerItemModel("Offer Zone", 40 | "https://rukminim1.flixcart.com/www/50/50/promos/08/04/2016/a12880b1-9c2b-4b4b-9029-31ba9ff666bf.png?q=80")); 41 | drawerItemModel.add(DrawerItemModel("Game Zone", 42 | "https://rukminim1.flixcart.com/www/50/50/promos/30/09/2018/85180d09-63b4-43c4-b2ab-5ef5f6802620.png?q=80")); 43 | drawerItemModel.add(DrawerItemModel("My Orders", 44 | "https://rukminim1.flixcart.com/www/50/50/promos/10/03/2017/b7a79d1a-e088-4c4b-951f-9b8214719cc9.png?q=80")); 45 | drawerItemModel.add(DrawerItemModel("My Rewards", 46 | "https://rukminim1.flixcart.com/www/50/50/promos/31/08/2016/3afaefd4-3961-4cac-921c-b9517c96ad47.png?q=80")); 47 | drawerItemModel.add(DrawerItemModel("My Cart", 48 | "https://rukminim1.flixcart.com/www/50/50/promos/10/03/2017/920f4fcd-8977-43a9-9014-abcad558de8d.png?q=80")); 49 | drawerItemModel.add(DrawerItemModel("My Wishlist", 50 | "https://rukminim1.flixcart.com/www/50/50/promos/10/03/2017/1f81361d-9a8e-494a-bd15-6d647c9bd8a7.png?q=80")); 51 | drawerItemModel.add(DrawerItemModel("My Account", 52 | "https://rukminim1.flixcart.com/www/50/50/promos/07/04/2016/c35cca9e-2d7a-4583-9770-32a97ddf1c9b.png?q=80")); 53 | drawerItemModel.add(DrawerItemModel("Notification Preferences", null)); 54 | drawerItemModel.add(DrawerItemModel("Gift Card", null)); 55 | drawerItemModel.add(DrawerItemModel("My Chats", null)); 56 | drawerItemModel.add(DrawerItemModel("Help Centre", null)); 57 | drawerItemModel.add(DrawerItemModel("Legal", null)); 58 | } 59 | 60 | buildItem(BuildContext context, int index) { 61 | if (drawerItemModel[index].imageRes != null) { 62 | return Column( 63 | children: [ 64 | Padding( 65 | padding: const EdgeInsets.only(bottom: 10, top: 10), 66 | child: Row( 67 | children: [ 68 | Expanded( 69 | flex: 2, 70 | child: Image.network( 71 | drawerItemModel[index].imageRes, 72 | height: 15, 73 | width: 15, 74 | ), 75 | ), 76 | Expanded( 77 | flex: 10, 78 | child: Text( 79 | drawerItemModel[index].name, 80 | style: TextStyle(fontSize: 15), 81 | ), 82 | ), 83 | ], 84 | ), 85 | ), 86 | index == 0 || index == 8 || index == 10 || index == 15 87 | ? Container( 88 | color: Colors.grey, 89 | height: 1, 90 | ) 91 | : SizedBox( 92 | height: 0, 93 | ) 94 | ], 95 | ); 96 | } else { 97 | return Padding( 98 | padding: const EdgeInsets.only(bottom: 10, top: 10, left: 20), 99 | child: Text( 100 | drawerItemModel[index].name, 101 | style: TextStyle(fontSize: 15), 102 | ), 103 | ); 104 | } 105 | } 106 | 107 | @override 108 | Widget build(BuildContext context) { 109 | var size = MediaQuery.of(context).size; 110 | return ListView( 111 | children: [ 112 | Container( 113 | height: size.height / 10, 114 | color: Color(0xff2874F0), 115 | child: Center( 116 | child: ListTile( 117 | title: Text( 118 | 'Home', 119 | style: TextStyle(color: Colors.white), 120 | ), 121 | leading: Icon( 122 | Icons.home, 123 | color: Colors.white, 124 | ), 125 | trailing:Image.asset("assets/flutter2.png", height: size.height / 20, 126 | width: size.width/10,) 127 | ), 128 | ), 129 | ), 130 | ListView.builder( 131 | shrinkWrap: true, 132 | physics: NeverScrollableScrollPhysics(), 133 | itemCount: drawerItemModel.length, 134 | itemBuilder: (context, index) { 135 | return buildItem(context, index); 136 | }, 137 | ) 138 | ], 139 | ); 140 | } 141 | } 142 | 143 | class DrawerItemModel { 144 | String _name; 145 | String _imageRes; 146 | 147 | DrawerItemModel(this._name, this._imageRes); 148 | 149 | String get imageRes => _imageRes; 150 | 151 | String get name => _name; 152 | } 153 | -------------------------------------------------------------------------------- /lib/src/ui/widgets/DualCameraPhones.dart: -------------------------------------------------------------------------------- 1 | import 'package:flipkart_flutter_ui/src/Models/deals.dart'; 2 | import 'package:flutter/material.dart'; 3 | 4 | class Seventhlist extends StatefulWidget { 5 | @override 6 | _SeventhlistState createState() => _SeventhlistState(); 7 | } 8 | 9 | class _SeventhlistState extends State { 10 | List deal; 11 | 12 | @override 13 | void initState() { 14 | super.initState(); 15 | addDealItem(); 16 | } 17 | 18 | addDealItem() { 19 | deal = List(); 20 | deal.add(deals( 21 | "assets/phone.png", 22 | 'Redmi Note 7 Pro', 23 | 'From @44,900')); 24 | deal.add(deals( 25 | "assets/phone_two.png", 26 | 'Redmi Note 7s', 27 | 'Trending Range')); 28 | deal.add(deals( 29 | "assets/phone_three.png", 30 | 'Realme 3', 31 | '1TB HDD')); 32 | deal.add(deals( 33 | "assets/nokia.png", 34 | 'Samsung A30', 35 | 'From @10,999')); 36 | } 37 | 38 | buildItem(BuildContext context, int index) { 39 | return Container( 40 | height: MediaQuery.of(context).size.height / 3.5, 41 | child: Column( 42 | children: [ 43 | Container( 44 | height: MediaQuery.of(context).size.height / 7, 45 | width: MediaQuery.of(context).size.width / 4, 46 | child: Image.asset(deal[index].imageUrl), 47 | ), 48 | Padding( 49 | padding: const EdgeInsets.only(top: 10), 50 | child: Text( 51 | '${deal[index].name}', 52 | style: TextStyle(fontSize: 15), 53 | ), 54 | ), 55 | Padding( 56 | padding: const EdgeInsets.only(top: 2), 57 | child: Text( 58 | '${deal[index].discount}', 59 | style: TextStyle(color: Colors.green), 60 | ), 61 | ) 62 | ], 63 | ), 64 | ); 65 | } 66 | 67 | @override 68 | Widget build(BuildContext context) { 69 | var size = MediaQuery.of(context).size; 70 | return Container( 71 | height: size.height / 1.6, 72 | child: Stack( 73 | children: [ 74 | Container( 75 | height: size.height / 1.7, 76 | color: Color(0xffF5E4D2), 77 | ), 78 | Container( 79 | height: size.height / 7, 80 | width: size.width, 81 | alignment: Alignment.topCenter, 82 | child: Image.asset( 83 | "assets/banner_two.png" 84 | ), 85 | ), 86 | Positioned( 87 | top: 15, 88 | child: Column( 89 | children: [ 90 | Container( 91 | padding: EdgeInsets.all(10), 92 | child: Row( 93 | crossAxisAlignment: CrossAxisAlignment.center, 94 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 95 | children: [ 96 | Column( 97 | crossAxisAlignment: CrossAxisAlignment.start, 98 | children: [ 99 | Text( 100 | 'Dual Camera Phones', 101 | style: TextStyle(color: Colors.black, fontSize: 20), 102 | ), 103 | ], 104 | ), 105 | Padding( 106 | padding: const EdgeInsets.only(right: 8), 107 | child: Container( 108 | decoration: BoxDecoration( 109 | borderRadius: BorderRadius.circular(5), 110 | color: Color(0xff2874F0)), 111 | child: Padding( 112 | padding: const EdgeInsets.all(8.0), 113 | child: Text( 114 | 'View All', 115 | style: TextStyle(color: Colors.white), 116 | ), 117 | ), 118 | ), 119 | ) 120 | ], 121 | ), 122 | width: size.width, 123 | ), 124 | Container( 125 | padding: EdgeInsets.only(left: 8, right: 8, top: 8), 126 | width: size.width, 127 | height: size.height / 1.75, 128 | child: Card( 129 | shape: RoundedRectangleBorder( 130 | borderRadius: BorderRadius.circular(10)), 131 | color: Colors.white, 132 | child: GridView.builder( 133 | padding: EdgeInsets.all(10), 134 | shrinkWrap: true, 135 | itemCount: 4, 136 | physics: NeverScrollableScrollPhysics(), 137 | itemBuilder: (context, index) { 138 | return buildItem(context, index); 139 | }, 140 | gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( 141 | crossAxisCount: 2), 142 | ), 143 | ), 144 | ) 145 | ], 146 | ), 147 | ) 148 | ], 149 | ), 150 | ); 151 | } 152 | } 153 | -------------------------------------------------------------------------------- /lib/src/ui/widgets/FeaturedBrand.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class Fifthlist extends StatefulWidget { 4 | @override 5 | _FifthlistState createState() => _FifthlistState(); 6 | } 7 | 8 | class _FifthlistState extends State { 9 | @override 10 | Widget build(BuildContext context) { 11 | return Container( 12 | height: MediaQuery.of(context).size.height / 2.45, 13 | width: MediaQuery.of(context).size.width, 14 | child: Card( 15 | child: Column( 16 | mainAxisAlignment: MainAxisAlignment.start, 17 | crossAxisAlignment: CrossAxisAlignment.start, 18 | children: [ 19 | Padding( 20 | padding: const EdgeInsets.only(left: 20,bottom: 8,top: 8), 21 | child: Text( 22 | 'Featured Brand', 23 | style: TextStyle(fontSize: 20), 24 | ), 25 | ), 26 | Padding( 27 | padding: const EdgeInsets.only(left: 20,bottom: 8), 28 | child: Text('Sponsored',style: TextStyle(color: Colors.grey),), 29 | ), 30 | Image.asset( 31 | "assets/power_bank.png", 32 | height: MediaQuery.of(context).size.height / 3.5, 33 | width: MediaQuery.of(context).size.width, 34 | ) 35 | ], 36 | ), 37 | ), 38 | ); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /lib/src/ui/widgets/Offers.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class Thirdlist extends StatefulWidget { 4 | @override 5 | _ThirdlistState createState() => _ThirdlistState(); 6 | } 7 | 8 | class _ThirdlistState extends State { 9 | @override 10 | Widget build(BuildContext context) { 11 | var size = MediaQuery.of(context).size; 12 | return Container( 13 | height: size.height / 5, 14 | child: Row( 15 | children: [ 16 | Expanded( 17 | child: Container( 18 | child: Image.asset( 19 | "assets/telivision.png" 20 | ), 21 | 22 | ), 23 | ), 24 | Expanded( 25 | child: Container( 26 | child: Image.asset( 27 | "assets/running.png" 28 | ), 29 | ), 30 | ), 31 | Expanded( 32 | child: Container( 33 | child: Image.asset( 34 | "assets/mobile_top.png" 35 | ), 36 | ), 37 | ), 38 | ], 39 | ), 40 | ); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /lib/src/ui/widgets/OffersInList.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class Secondlist extends StatefulWidget { 4 | @override 5 | _SecondlistState createState() => _SecondlistState(); 6 | } 7 | 8 | class _SecondlistState extends State { 9 | buildItem(BuildContext context, int index) { 10 | return Container( 11 | height: MediaQuery.of(context).size.height / 4, 12 | child: Padding( 13 | padding: const EdgeInsets.only(left: 2, right: 2), 14 | child: ClipRRect( 15 | borderRadius: BorderRadius.circular(6), 16 | child: Image.asset( 17 | "assets/banner_one.png", 18 | height: MediaQuery.of(context).size.height / 4, 19 | ), 20 | ), 21 | ), 22 | ); 23 | } 24 | 25 | @override 26 | Widget build(BuildContext context) { 27 | return Padding( 28 | padding: const EdgeInsets.all(3), 29 | child: Container( 30 | height: MediaQuery.of(context).size.height / 4, 31 | child: ListView.builder( 32 | itemCount: 10, 33 | scrollDirection: Axis.horizontal, 34 | itemBuilder: (context, index) { 35 | return buildItem(context, index); 36 | }, 37 | ), 38 | ), 39 | ); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | archive: 5 | dependency: transitive 6 | description: 7 | name: archive 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "2.0.11" 11 | args: 12 | dependency: transitive 13 | description: 14 | name: args 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "1.5.2" 18 | async: 19 | dependency: transitive 20 | description: 21 | name: async 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "2.4.0" 25 | boolean_selector: 26 | dependency: transitive 27 | description: 28 | name: boolean_selector 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.0.5" 32 | charcode: 33 | dependency: transitive 34 | description: 35 | name: charcode 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.1.2" 39 | collection: 40 | dependency: transitive 41 | description: 42 | name: collection 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.14.11" 46 | convert: 47 | dependency: transitive 48 | description: 49 | name: convert 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "2.1.1" 53 | crypto: 54 | dependency: transitive 55 | description: 56 | name: crypto 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "2.1.3" 60 | cupertino_icons: 61 | dependency: "direct main" 62 | description: 63 | name: cupertino_icons 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "0.1.2" 67 | flutter: 68 | dependency: "direct main" 69 | description: flutter 70 | source: sdk 71 | version: "0.0.0" 72 | flutter_test: 73 | dependency: "direct dev" 74 | description: flutter 75 | source: sdk 76 | version: "0.0.0" 77 | image: 78 | dependency: transitive 79 | description: 80 | name: image 81 | url: "https://pub.dartlang.org" 82 | source: hosted 83 | version: "2.1.4" 84 | matcher: 85 | dependency: transitive 86 | description: 87 | name: matcher 88 | url: "https://pub.dartlang.org" 89 | source: hosted 90 | version: "0.12.6" 91 | meta: 92 | dependency: transitive 93 | description: 94 | name: meta 95 | url: "https://pub.dartlang.org" 96 | source: hosted 97 | version: "1.1.8" 98 | path: 99 | dependency: transitive 100 | description: 101 | name: path 102 | url: "https://pub.dartlang.org" 103 | source: hosted 104 | version: "1.6.4" 105 | pedantic: 106 | dependency: transitive 107 | description: 108 | name: pedantic 109 | url: "https://pub.dartlang.org" 110 | source: hosted 111 | version: "1.8.0+1" 112 | petitparser: 113 | dependency: transitive 114 | description: 115 | name: petitparser 116 | url: "https://pub.dartlang.org" 117 | source: hosted 118 | version: "2.4.0" 119 | quiver: 120 | dependency: transitive 121 | description: 122 | name: quiver 123 | url: "https://pub.dartlang.org" 124 | source: hosted 125 | version: "2.0.5" 126 | sky_engine: 127 | dependency: transitive 128 | description: flutter 129 | source: sdk 130 | version: "0.0.99" 131 | source_span: 132 | dependency: transitive 133 | description: 134 | name: source_span 135 | url: "https://pub.dartlang.org" 136 | source: hosted 137 | version: "1.5.5" 138 | stack_trace: 139 | dependency: transitive 140 | description: 141 | name: stack_trace 142 | url: "https://pub.dartlang.org" 143 | source: hosted 144 | version: "1.9.3" 145 | stream_channel: 146 | dependency: transitive 147 | description: 148 | name: stream_channel 149 | url: "https://pub.dartlang.org" 150 | source: hosted 151 | version: "2.0.0" 152 | string_scanner: 153 | dependency: transitive 154 | description: 155 | name: string_scanner 156 | url: "https://pub.dartlang.org" 157 | source: hosted 158 | version: "1.0.5" 159 | term_glyph: 160 | dependency: transitive 161 | description: 162 | name: term_glyph 163 | url: "https://pub.dartlang.org" 164 | source: hosted 165 | version: "1.1.0" 166 | test_api: 167 | dependency: transitive 168 | description: 169 | name: test_api 170 | url: "https://pub.dartlang.org" 171 | source: hosted 172 | version: "0.2.11" 173 | typed_data: 174 | dependency: transitive 175 | description: 176 | name: typed_data 177 | url: "https://pub.dartlang.org" 178 | source: hosted 179 | version: "1.1.6" 180 | vector_math: 181 | dependency: transitive 182 | description: 183 | name: vector_math 184 | url: "https://pub.dartlang.org" 185 | source: hosted 186 | version: "2.0.8" 187 | xml: 188 | dependency: transitive 189 | description: 190 | name: xml 191 | url: "https://pub.dartlang.org" 192 | source: hosted 193 | version: "3.5.0" 194 | sdks: 195 | dart: ">=2.4.0 <3.0.0" 196 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: flipkart_flutter_ui 2 | description: A new Flutter application. 3 | 4 | # The following defines the version and build number for your application. 5 | # A version number is three numbers separated by dots, like 1.2.43 6 | # followed by an optional build number separated by a +. 7 | # Both the version and the builder number may be overridden in flutter 8 | # build by specifying --build-name and --build-number, respectively. 9 | # In Android, build-name is used as versionName while build-number used as versionCode. 10 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 11 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 12 | # Read more about iOS versioning at 13 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 14 | version: 1.0.0+1 15 | 16 | environment: 17 | sdk: ">=2.1.0 <3.0.0" 18 | 19 | dependencies: 20 | flutter: 21 | sdk: flutter 22 | 23 | # The following adds the Cupertino Icons font to your application. 24 | # Use with the CupertinoIcons class for iOS style icons. 25 | cupertino_icons: ^0.1.2 26 | 27 | 28 | dev_dependencies: 29 | flutter_test: 30 | sdk: flutter 31 | 32 | 33 | # For information on the generic Dart part of this file, see the 34 | # following page: https://www.dartlang.org/tools/pub/pubspec 35 | 36 | # The following section is specific to Flutter. 37 | flutter: 38 | 39 | # The following line ensures that the Material Icons font is 40 | # included with your application, so that you can use the icons in 41 | # the material Icons class. 42 | uses-material-design: true 43 | 44 | # To add assets to your application, add an assets section, like this: 45 | assets: 46 | - assets/fk-plus_043837.png 47 | - assets/logo.png 48 | - assets/powered_by.png 49 | - assets/flutter1.png 50 | - assets/flutter2.png 51 | - assets/applinces.png 52 | - assets/beauty.png 53 | - assets/electronic.png 54 | - assets/fashion.png 55 | - assets/grocery.png 56 | - assets/mobiles.png 57 | - assets/sports_and_more.png 58 | - assets/toys_and_babby.png 59 | - assets/home.png 60 | - assets/hair_dryer.png 61 | - assets/laptop.png 62 | - assets/power_bank.png 63 | - assets/male_modle.png 64 | - assets/shirt_modle.png 65 | - assets/female.png 66 | - assets/watch.png 67 | - assets/banner_one.png 68 | - assets/phone_two.png 69 | - assets/phone_three.png 70 | - assets/phone.png 71 | - assets/nokia.png 72 | - assets/banner_two.png 73 | - assets/banner_three.png 74 | - assets/mobile_top.png 75 | - assets/telivision.png 76 | - assets/running.png 77 | 78 | 79 | # An image asset can refer to one or more resolution-specific "variants", see 80 | # https://flutter.dev/assets-and-images/#resolution-aware. 81 | 82 | # For details regarding adding assets from package dependencies, see 83 | # https://flutter.dev/assets-and-images/#from-packages 84 | 85 | # To add custom fonts to your application, add a fonts section here, 86 | # in this "flutter" section. Each entry in this list should have a 87 | # "family" key with the font family name, and a "fonts" key with a 88 | # list giving the asset and other descriptors for the font. For 89 | # example: 90 | # fonts: 91 | # - family: Schyler 92 | # fonts: 93 | # - asset: fonts/Schyler-Regular.ttf 94 | # - asset: fonts/Schyler-Italic.ttf 95 | # style: italic 96 | # - family: Trajan Pro 97 | # fonts: 98 | # - asset: fonts/TrajanPro.ttf 99 | # - asset: fonts/TrajanPro_Bold.ttf 100 | # weight: 700 101 | # 102 | # For details regarding fonts from package dependencies, 103 | # see https://flutter.dev/custom-fonts/#from-packages 104 | -------------------------------------------------------------------------------- /screens/android1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/screens/android1.png -------------------------------------------------------------------------------- /screens/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/screens/demo.gif -------------------------------------------------------------------------------- /screens/iphone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_Ecommerce_UI_clone/35a579ed26d24f24cf01286c97d8c406f7c6ad7d/screens/iphone1.png -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter widget test. 2 | // 3 | // To perform an interaction with a widget in your test, use the WidgetTester 4 | // utility that Flutter provides. For example, you can send tap and scroll 5 | // gestures. You can also use WidgetTester to find child widgets in the widget 6 | // tree, read text, and verify that the values of widget properties are correct. 7 | 8 | import 'package:flutter/material.dart'; 9 | import 'package:flutter_test/flutter_test.dart'; 10 | 11 | import 'package:flipkart_flutter_ui/main.dart'; 12 | 13 | void main() { 14 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 15 | // Build our app and trigger a frame. 16 | await tester.pumpWidget(MyApp()); 17 | 18 | // Verify that our counter starts at 0. 19 | expect(find.text('0'), findsOneWidget); 20 | expect(find.text('1'), findsNothing); 21 | 22 | // Tap the '+' icon and trigger a frame. 23 | await tester.tap(find.byIcon(Icons.add)); 24 | await tester.pump(); 25 | 26 | // Verify that our counter has incremented. 27 | expect(find.text('0'), findsNothing); 28 | expect(find.text('1'), findsOneWidget); 29 | }); 30 | } 31 | --------------------------------------------------------------------------------