├── .gitattributes ├── .gitignore ├── .metadata ├── README.md ├── android ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aeologic │ │ │ │ └── oyoui_app │ │ │ │ └── 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 └── images │ ├── Supersale.jpeg │ ├── aeologic.png │ ├── agra.jpeg │ ├── banglore.jpeg │ ├── cardimg.jpg │ ├── dailySale.jpg │ ├── delhi.jpeg │ ├── explore1.jpg │ ├── explore2.jpg │ ├── explore3.jpg │ ├── explore4.jpg │ ├── exploreOyoHotels1.jpeg │ ├── exploreOyoHotels3.jpeg │ ├── exploreOyoHotels4.jpg │ ├── gatewayimage.jpg │ ├── getRadyForSummer.jpg │ ├── getaway.png │ ├── goa.jpeg │ ├── goaBeach.jpg │ ├── hills.jpg │ ├── hyedrabaad.jpeg │ ├── inningsBreak.jpg │ ├── kolkata.jpeg │ ├── latest_1.jpg │ ├── latest_2.jpg │ ├── logo.png │ ├── mnali.jpeg │ ├── mumbai.jpeg │ ├── musoorie.jpeg │ ├── nanital.jpg │ ├── nearby.png │ ├── noida.jpeg │ ├── offer1.jpg │ ├── offer1.png │ ├── offers.jpg │ ├── offers_1.jpeg │ ├── offers_2.jpeg │ ├── playwin.jpg │ ├── powered_by.png │ ├── pune.jpeg │ ├── readyForSummer.jpg │ ├── readyforsummer2.jpg │ ├── referwin.jpg │ ├── refredWin.jpg │ ├── shake_win.jpg │ ├── shakewin.jpeg │ ├── special1.jpeg │ ├── special_1.jpg │ ├── specials.jpg │ ├── superSale.png │ ├── weekend_3.jpg │ ├── win.jpg │ └── wizard.png ├── ios ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── 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 ├── aeoui.dart ├── constant │ └── constant.dart ├── main.dart ├── model │ ├── aeospecials.dart │ ├── aeowordlist.dart │ ├── arealocationlist.dart │ ├── exploreaeohotelslist.dart │ ├── latestaeo.dart │ ├── limitedperiodofferlist.dart │ ├── readyforsummerlist.dart │ ├── weekendgetawayslist.dart │ └── yourwalletslist.dart ├── splashscreen.dart └── widgets │ └── customshape.dart ├── pubspec.lock ├── pubspec.yaml ├── screens ├── android1.png ├── android2.png ├── demo.gif ├── iphone1.png └── iphone2.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 | -------------------------------------------------------------------------------- /.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: beta 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Flutter OYO Rooms App Demo 2 | 3 | A sample app to showcase Oyo Rooms app using flutter. 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. -------------------------------------------------------------------------------- /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.aeologic.oyoui_app" 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 | 13 | 20 | 24 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/aeologic/oyoui_app/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.aeologic.oyoui_app; 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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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/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/images/Supersale.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/Supersale.jpeg -------------------------------------------------------------------------------- /assets/images/aeologic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/aeologic.png -------------------------------------------------------------------------------- /assets/images/agra.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/agra.jpeg -------------------------------------------------------------------------------- /assets/images/banglore.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/banglore.jpeg -------------------------------------------------------------------------------- /assets/images/cardimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/cardimg.jpg -------------------------------------------------------------------------------- /assets/images/dailySale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/dailySale.jpg -------------------------------------------------------------------------------- /assets/images/delhi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/delhi.jpeg -------------------------------------------------------------------------------- /assets/images/explore1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/explore1.jpg -------------------------------------------------------------------------------- /assets/images/explore2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/explore2.jpg -------------------------------------------------------------------------------- /assets/images/explore3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/explore3.jpg -------------------------------------------------------------------------------- /assets/images/explore4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/explore4.jpg -------------------------------------------------------------------------------- /assets/images/exploreOyoHotels1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/exploreOyoHotels1.jpeg -------------------------------------------------------------------------------- /assets/images/exploreOyoHotels3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/exploreOyoHotels3.jpeg -------------------------------------------------------------------------------- /assets/images/exploreOyoHotels4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/exploreOyoHotels4.jpg -------------------------------------------------------------------------------- /assets/images/gatewayimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/gatewayimage.jpg -------------------------------------------------------------------------------- /assets/images/getRadyForSummer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/getRadyForSummer.jpg -------------------------------------------------------------------------------- /assets/images/getaway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/getaway.png -------------------------------------------------------------------------------- /assets/images/goa.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/goa.jpeg -------------------------------------------------------------------------------- /assets/images/goaBeach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/goaBeach.jpg -------------------------------------------------------------------------------- /assets/images/hills.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/hills.jpg -------------------------------------------------------------------------------- /assets/images/hyedrabaad.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/hyedrabaad.jpeg -------------------------------------------------------------------------------- /assets/images/inningsBreak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/inningsBreak.jpg -------------------------------------------------------------------------------- /assets/images/kolkata.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/kolkata.jpeg -------------------------------------------------------------------------------- /assets/images/latest_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/latest_1.jpg -------------------------------------------------------------------------------- /assets/images/latest_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/latest_2.jpg -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/mnali.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/mnali.jpeg -------------------------------------------------------------------------------- /assets/images/mumbai.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/mumbai.jpeg -------------------------------------------------------------------------------- /assets/images/musoorie.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/musoorie.jpeg -------------------------------------------------------------------------------- /assets/images/nanital.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/nanital.jpg -------------------------------------------------------------------------------- /assets/images/nearby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/nearby.png -------------------------------------------------------------------------------- /assets/images/noida.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/noida.jpeg -------------------------------------------------------------------------------- /assets/images/offer1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/offer1.jpg -------------------------------------------------------------------------------- /assets/images/offer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/offer1.png -------------------------------------------------------------------------------- /assets/images/offers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/offers.jpg -------------------------------------------------------------------------------- /assets/images/offers_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/offers_1.jpeg -------------------------------------------------------------------------------- /assets/images/offers_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/offers_2.jpeg -------------------------------------------------------------------------------- /assets/images/playwin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/playwin.jpg -------------------------------------------------------------------------------- /assets/images/powered_by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/powered_by.png -------------------------------------------------------------------------------- /assets/images/pune.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/pune.jpeg -------------------------------------------------------------------------------- /assets/images/readyForSummer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/readyForSummer.jpg -------------------------------------------------------------------------------- /assets/images/readyforsummer2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/readyforsummer2.jpg -------------------------------------------------------------------------------- /assets/images/referwin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/referwin.jpg -------------------------------------------------------------------------------- /assets/images/refredWin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/refredWin.jpg -------------------------------------------------------------------------------- /assets/images/shake_win.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/shake_win.jpg -------------------------------------------------------------------------------- /assets/images/shakewin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/shakewin.jpeg -------------------------------------------------------------------------------- /assets/images/special1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/special1.jpeg -------------------------------------------------------------------------------- /assets/images/special_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/special_1.jpg -------------------------------------------------------------------------------- /assets/images/specials.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/specials.jpg -------------------------------------------------------------------------------- /assets/images/superSale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/superSale.png -------------------------------------------------------------------------------- /assets/images/weekend_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/weekend_3.jpg -------------------------------------------------------------------------------- /assets/images/win.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/win.jpg -------------------------------------------------------------------------------- /assets/images/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/assets/images/wizard.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/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.aeologic.oyouiApp; 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.aeologic.oyouiApp; 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.aeologic.oyouiApp; 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/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/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 | oyoui_app 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/aeoui.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:oyoui_app/constant/constant.dart'; 3 | import 'package:oyoui_app/model/arealocationlist.dart'; 4 | import 'package:oyoui_app/model/exploreaeohotelslist.dart'; 5 | import 'package:oyoui_app/model/latestaeo.dart'; 6 | import 'package:oyoui_app/model/limitedperiodofferlist.dart'; 7 | import 'package:oyoui_app/model/aeospecials.dart'; 8 | import 'package:oyoui_app/model/aeowordlist.dart'; 9 | import 'package:oyoui_app/model/readyforsummerlist.dart'; 10 | import 'package:oyoui_app/model/weekendgetawayslist.dart'; 11 | import 'package:oyoui_app/model/yourwalletslist.dart'; 12 | import 'package:oyoui_app/widgets/customshape.dart'; 13 | 14 | class AeoUI extends StatefulWidget { 15 | @override 16 | _AeoUIState createState() => _AeoUIState(); 17 | } 18 | 19 | class _AeoUIState extends State { 20 | double _width; 21 | double _height; 22 | 23 | List areaLocationList; 24 | List readyForSummer; 25 | List limitedPeriodOffer; 26 | List exploreOyoHotels; 27 | List weekendGetaways; 28 | List oyoWord; 29 | List oyoSpecials; 30 | List latestOyo; 31 | List yourWallets; 32 | 33 | @override 34 | void initState() { 35 | super.initState(); 36 | areaLocationList = Constants.getLocationList(); 37 | readyForSummer = Constants.getSummerList(); 38 | limitedPeriodOffer = Constants.getLimitedPeriodOfferList(); 39 | exploreOyoHotels = Constants.getExploreOyoHotelsList(); 40 | weekendGetaways = Constants.getWeekendsList(); 41 | oyoSpecials = Constants.getOyoSpecials(); 42 | latestOyo = Constants.getLatestOyo(); 43 | yourWallets = Constants.getYourWallet(); 44 | } 45 | 46 | @override 47 | Widget build(BuildContext context) { 48 | _height = MediaQuery.of(context).size.height; 49 | _width = MediaQuery.of(context).size.width; 50 | return Scaffold( 51 | backgroundColor: Colors.grey[100], 52 | body: NestedScrollView( 53 | headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) { 54 | return [ 55 | SliverAppBar( 56 | expandedHeight: _height/5, 57 | floating: false, 58 | leading: Icon(Icons.menu), 59 | actions: [ 60 | Container( 61 | margin: EdgeInsets.only(right: 15), 62 | child:Icon(Icons.notifications_active) 63 | ) 64 | ], 65 | backgroundColor: Color.fromARGB(255, 196, 26, 61), 66 | //#f02730 67 | flexibleSpace: FlexibleSpaceBar( 68 | collapseMode: CollapseMode.pin, 69 | centerTitle: true, 70 | titlePadding: EdgeInsets.only(top: 25.0), 71 | title: Center( 72 | child: Text( 73 | "AEO", 74 | style: TextStyle( 75 | color: Colors.white, 76 | fontWeight: FontWeight.bold, 77 | fontSize: 22), 78 | ), 79 | ), 80 | ), 81 | bottom: PreferredSize( 82 | child: Container( 83 | margin: EdgeInsets.only(bottom: 20, left: 20, right: 20,), 84 | decoration: BoxDecoration( 85 | color: Colors.white, 86 | borderRadius: BorderRadius.circular(10) 87 | ), 88 | width: _width, 89 | height: _height/14, 90 | alignment: Alignment.topCenter, 91 | child: TextFormField( 92 | cursorColor: Colors.grey, 93 | decoration: InputDecoration( 94 | contentPadding: EdgeInsets.all(2), 95 | prefixIcon: Icon(Icons.search, size: 30,color: Colors.grey,), 96 | hintText:"Search for Hotel, City or Location",hintStyle: TextStyle(fontWeight: FontWeight.w300,fontSize: 13.0), 97 | border: OutlineInputBorder( 98 | borderRadius: BorderRadius.circular(10), 99 | borderSide: BorderSide.none 100 | ) 101 | ), 102 | ), 103 | ), 104 | preferredSize: Size(_width,_height/20)), 105 | ), 106 | ]; 107 | }, 108 | body: SingleChildScrollView( 109 | child: Column( 110 | children: [ 111 | Container( 112 | height: _height/6, 113 | child: ListView.builder( 114 | itemCount: areaLocationList.length, 115 | scrollDirection: Axis.horizontal, 116 | shrinkWrap: true, 117 | itemBuilder: (BuildContext context, int index) { 118 | return _buildLocationList(areaLocationList[index]); 119 | }), 120 | ), 121 | 122 | Padding( 123 | padding: EdgeInsets.only(top: 20, left: 10, right: 10), 124 | child: Column( 125 | crossAxisAlignment: CrossAxisAlignment.start, 126 | children: [ 127 | Text( 128 | 'Grand Getaway Sale', 129 | style: TextStyle( 130 | fontWeight: FontWeight.w600, fontSize: 15), 131 | ), 132 | Container( 133 | //color: Colors.blue, 134 | margin: EdgeInsets.only(top: 10), 135 | decoration: BoxDecoration(boxShadow: [ 136 | BoxShadow( 137 | color: Colors.grey, 138 | blurRadius: 3, 139 | spreadRadius: 0.2, 140 | offset: Offset(0.1, 3), 141 | ), 142 | ]), 143 | height: _height/8, 144 | width: _width, 145 | child: ClipRRect( 146 | borderRadius: BorderRadius.circular(5), 147 | child: Image.asset( 148 | 'assets/images/getaway.png', 149 | fit: BoxFit.fill, 150 | ), 151 | ), 152 | ), 153 | Container( 154 | margin: EdgeInsets.only(top: 20), 155 | child: Text( 156 | 'Aeo Innings break !', 157 | style: TextStyle( 158 | fontWeight: FontWeight.w600, fontSize: 15), 159 | ), 160 | ), 161 | Container( 162 | //color: Colors.blue, 163 | margin: EdgeInsets.only(top: 10), 164 | decoration: BoxDecoration(boxShadow: [ 165 | BoxShadow( 166 | color: Colors.grey, 167 | blurRadius: 3, 168 | spreadRadius: 0.2, 169 | offset: Offset(0.1, 3), 170 | ), 171 | ]), 172 | height: _height/4, 173 | width:_width, 174 | child: ClipRRect( 175 | borderRadius: BorderRadius.circular(5), 176 | child: Image.asset( 177 | 'assets/images/inningsBreak.jpg', 178 | fit: BoxFit.fill, 179 | ), 180 | ), 181 | ), 182 | Container( 183 | margin: EdgeInsets.only(top: 20), 184 | child: Text( 185 | 'Refered win', 186 | style: TextStyle( 187 | fontWeight: FontWeight.w600, fontSize: 15), 188 | ), 189 | ), 190 | Container( 191 | //color: Colors.blue, 192 | margin: EdgeInsets.only(top: 10), 193 | decoration: BoxDecoration(boxShadow: [ 194 | BoxShadow( 195 | color: Colors.grey, 196 | blurRadius: 3, 197 | spreadRadius: 0.2, 198 | offset: Offset(0.1, 3), 199 | ), 200 | ]), 201 | height: 90, 202 | width: MediaQuery.of(context).size.width, 203 | child: ClipRRect( 204 | borderRadius: BorderRadius.circular(5), 205 | child: Image.asset( 206 | 'assets/images/referwin.jpg', 207 | fit: BoxFit.cover, 208 | ), 209 | ), 210 | ), 211 | Container( 212 | margin: EdgeInsets.only(top: 20), 213 | child: Text( 214 | 'Daily Super Sale', 215 | style: TextStyle( 216 | fontWeight: FontWeight.w600, fontSize: 15), 217 | ), 218 | ), 219 | Container( 220 | margin: EdgeInsets.only(top: 10), 221 | decoration: BoxDecoration(boxShadow: [ 222 | BoxShadow( 223 | color: Colors.grey, 224 | blurRadius: 3, 225 | spreadRadius: 0.2, 226 | offset: Offset(0.1, 3), 227 | ), 228 | ]), 229 | height: _height/4.5, 230 | width: _width, 231 | child: ClipRRect( 232 | borderRadius: BorderRadius.circular(5), 233 | child: Image.asset( 234 | 'assets/images/dailySale.jpg', 235 | fit: BoxFit.cover, 236 | ), 237 | ), 238 | ), 239 | Container( 240 | margin: EdgeInsets.only(top: 20), 241 | child: Text( 242 | 'Get Ready for Summer !', 243 | style: TextStyle( 244 | fontWeight: FontWeight.w600, fontSize: 15), 245 | ), 246 | ), 247 | Container( 248 | margin: EdgeInsets.only(top: 5), 249 | height: 90, 250 | //height: MediaQuery.of(context).size.height, 251 | width: _width, 252 | child: ListView.builder( 253 | itemCount: readyForSummer.length, 254 | scrollDirection: Axis.horizontal, 255 | shrinkWrap: true, 256 | itemBuilder: (BuildContext context, int index) { 257 | return _buildSummerList(readyForSummer[index]); 258 | }), 259 | ), 260 | Container( 261 | margin: EdgeInsets.only(top: 20), 262 | child: Text( 263 | 'Limited period offers', 264 | style: TextStyle( 265 | fontWeight: FontWeight.w600, fontSize: 15), 266 | ), 267 | ), 268 | Container( 269 | margin: EdgeInsets.only(top: 5), 270 | height: _height/4, 271 | child: ListView.builder( 272 | itemCount: limitedPeriodOffer.length, 273 | scrollDirection: Axis.horizontal, 274 | shrinkWrap: true, 275 | itemBuilder: (BuildContext context, int index) { 276 | return _buildLimitedPeriodList( 277 | limitedPeriodOffer[index]); 278 | }), 279 | ), 280 | Container( 281 | margin: EdgeInsets.only(top: 20), 282 | child: Text( 283 | 'Wizard', 284 | style: TextStyle( 285 | fontWeight: FontWeight.w600, fontSize: 15), 286 | ), 287 | ), 288 | Container( 289 | //color: Colors.blue, 290 | margin: EdgeInsets.only(top: 10), 291 | decoration: BoxDecoration(boxShadow: [ 292 | BoxShadow( 293 | color: Colors.grey, 294 | blurRadius: 3, 295 | spreadRadius: 0.2, 296 | offset: Offset(0.1, 3), 297 | ), 298 | ]), 299 | height: _height/3.7, 300 | width: _width, 301 | child: ClipRRect( 302 | borderRadius: BorderRadius.circular(5), 303 | child: Image.asset( 304 | 'assets/images/wizard.png', 305 | fit: BoxFit.fill, 306 | ), 307 | ), 308 | ), 309 | Container( 310 | margin: EdgeInsets.only(top: 20), 311 | child: Text( 312 | 'Explore AEO Hotels and Homes', 313 | style: TextStyle( 314 | fontWeight: FontWeight.w600, fontSize: 15), 315 | ), 316 | ), 317 | Container( 318 | margin: EdgeInsets.only(top: 5), 319 | width: _width, 320 | height: _height/2.3, 321 | child: ListView.builder( 322 | itemCount: exploreOyoHotels.length, 323 | scrollDirection: Axis.horizontal, 324 | shrinkWrap: true, 325 | itemBuilder: (BuildContext context, int index) { 326 | return _buildExploreAeoHotelsList( 327 | exploreOyoHotels[index]); 328 | }), 329 | ), 330 | Container( 331 | margin: EdgeInsets.only(top: 20), 332 | child: Text( 333 | 'Weekend Getaways', 334 | style: TextStyle( 335 | fontWeight: FontWeight.w600, fontSize: 15), 336 | ), 337 | ), 338 | Container( 339 | margin: EdgeInsets.only(top: 5), 340 | width: MediaQuery.of(context).size.width, 341 | height: _height/2.8, 342 | child: ListView.builder( 343 | itemCount: weekendGetaways.length, 344 | scrollDirection: Axis.horizontal, 345 | shrinkWrap: true, 346 | itemBuilder: (BuildContext context, int index) { 347 | return _buildWeekendGetawaysList( 348 | weekendGetaways[index]); 349 | }), 350 | ), 351 | 352 | Container( 353 | margin: EdgeInsets.only(top: 20), 354 | child: Text( 355 | 'Aeo Specials', 356 | style: TextStyle( 357 | fontWeight: FontWeight.w600, fontSize: 15), 358 | ), 359 | ), 360 | Container( 361 | margin: EdgeInsets.only(top: 5), 362 | width: _width, 363 | height: _height/2.4, 364 | child: ListView.builder( 365 | itemCount: oyoSpecials.length, 366 | scrollDirection: Axis.horizontal, 367 | shrinkWrap: true, 368 | itemBuilder: (BuildContext context, int index) { 369 | return _buildAeoSpecialsList(oyoSpecials[index]); 370 | }), 371 | ), 372 | Container( 373 | margin: EdgeInsets.only(top: 20), 374 | child: Text( 375 | 'Latest at AEO', 376 | style: TextStyle( 377 | fontWeight: FontWeight.w600, fontSize: 15), 378 | ), 379 | ), 380 | Container( 381 | margin: EdgeInsets.only(top: 5), 382 | width: _width, 383 | height: _height/2.4, 384 | child: ListView.builder( 385 | itemCount: latestOyo.length, 386 | scrollDirection: Axis.horizontal, 387 | shrinkWrap: true, 388 | itemBuilder: (BuildContext context, int index) { 389 | return _buildLatestAeoList(latestOyo[index]); 390 | }), 391 | ), 392 | Container( 393 | margin: EdgeInsets.only(top: 20), 394 | child: Text( 395 | 'Shake & Win', 396 | style: TextStyle( 397 | fontWeight: FontWeight.w600, fontSize: 15), 398 | ), 399 | ), 400 | Container( 401 | margin: EdgeInsets.only(top: 5), 402 | height: _height/4.2, 403 | width:_width, 404 | child: Card( 405 | elevation: 2, 406 | child: ClipRRect( 407 | borderRadius: BorderRadius.only( 408 | topLeft: Radius.circular(5), 409 | topRight: Radius.circular(5), 410 | bottomLeft: Radius.circular(5), 411 | bottomRight: Radius.circular(5)), 412 | child: Image.asset( 413 | 'assets/images/shake_win.jpg', 414 | fit: BoxFit.fill, 415 | ), 416 | ), 417 | //color: Colors.orange, 418 | ), 419 | ), 420 | Container( 421 | margin: EdgeInsets.only(top: 20), 422 | alignment: Alignment.centerLeft, 423 | child: Text( 424 | 'Play and win', 425 | style: TextStyle( 426 | fontWeight: FontWeight.w600, fontSize: 15), 427 | ), 428 | ), 429 | Container( 430 | margin: EdgeInsets.only(top: 5), 431 | height: _height/4.5, 432 | width: _width, 433 | child: Card( 434 | elevation: 2, 435 | child: ClipRRect( 436 | borderRadius: BorderRadius.only( 437 | topLeft: Radius.circular(5), 438 | topRight: Radius.circular(5), 439 | bottomLeft: Radius.circular(5), 440 | bottomRight: Radius.circular(5)), 441 | child: Image.asset( 442 | 'assets/images/playwin.jpg', 443 | fit: BoxFit.fill, 444 | ), 445 | ), 446 | //color: Colors.orange, 447 | ), 448 | ), 449 | Container( 450 | margin: EdgeInsets.only(top: 20), 451 | alignment: Alignment.centerLeft, 452 | child: Text( 453 | 'Your wallets', 454 | style: TextStyle( 455 | fontWeight: FontWeight.w600, fontSize: 15), 456 | ), 457 | ), 458 | Container( 459 | margin: EdgeInsets.only(top: 5), 460 | width: _width, 461 | height: _height/4.2, 462 | child: ListView.builder( 463 | itemCount: yourWallets.length, 464 | scrollDirection: Axis.horizontal, 465 | shrinkWrap: true, 466 | itemBuilder: (BuildContext context, int index) { 467 | return _buildYourWalletsList(yourWallets[index]); 468 | }), 469 | ), 470 | ], 471 | ), 472 | ), 473 | ], 474 | ), 475 | ), 476 | ), 477 | bottomNavigationBar: BottomAppBar( 478 | child: Container( 479 | padding: const EdgeInsets.only(top: 10.0), 480 | height: 60, 481 | child: Row( 482 | mainAxisAlignment: MainAxisAlignment.spaceAround, 483 | children: [ 484 | Column( 485 | children: [ 486 | Icon(Icons.home, color: Color.fromARGB(255, 196, 26, 61),), 487 | Text('Home', style: TextStyle(color: Color.fromARGB(255, 196, 26, 61),) ), 488 | ], 489 | ), 490 | Column( 491 | children: [ 492 | Icon(Icons.favorite_border), 493 | Text('Saved'), 494 | ], 495 | ), 496 | Column( 497 | children: [ 498 | Icon(Icons.card_travel), 499 | Text('Booking'), 500 | ], 501 | ), 502 | Column( 503 | children: [ 504 | Icon(Icons.group_add), 505 | Text('Invite & Earn'), 506 | ], 507 | ) 508 | ], 509 | ), 510 | ), 511 | ), 512 | ); 513 | } 514 | 515 | Widget _buildLocationList(AreaLocationList item) { 516 | return Container( 517 | color: Colors.white, 518 | width: 70, 519 | child: Column( 520 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 521 | children: [ 522 | Container( 523 | height: 50, 524 | width: 50, 525 | child: ClipRRect( 526 | borderRadius: new BorderRadius.circular(70.0), 527 | child: Image.asset( 528 | item.imageUrl, 529 | fit: BoxFit.cover, 530 | ), 531 | ), 532 | ), 533 | Container( 534 | alignment: Alignment.center, 535 | child: Text( 536 | item.name, 537 | style: TextStyle(fontWeight: FontWeight.w500, fontSize: 11,color: Colors.grey[600]), 538 | ), 539 | ), 540 | ], 541 | ), 542 | ); 543 | } 544 | Widget _buildYourWalletsList(YourWalletList item) { 545 | 546 | return Container( 547 | width: _width/1.5, 548 | decoration: BoxDecoration(borderRadius: BorderRadius.circular(10)), 549 | child: Card( 550 | shape: OutlineInputBorder(borderRadius: BorderRadius.circular(10), borderSide: BorderSide.none), 551 | color: Colors.orange[100], 552 | child: Stack( 553 | children: [ 554 | ClipRRect( 555 | borderRadius: BorderRadius.only(topLeft: Radius.circular(10), topRight: Radius.circular(10)), 556 | child: Opacity( 557 | opacity: 0.75, 558 | child: ClipPath( 559 | clipper: CustomShapeClipper(), 560 | child: Container( 561 | height: _height/8, 562 | decoration: BoxDecoration( 563 | gradient: LinearGradient( 564 | colors: [Colors.orange[200], Colors.pinkAccent], 565 | ), 566 | ), 567 | ), 568 | ), 569 | ), 570 | ), 571 | ClipRRect(borderRadius: BorderRadius.only(topLeft: Radius.circular(10), topRight: Radius.circular(10)), 572 | child: Column( 573 | children: [ 574 | Opacity( 575 | opacity: 0.5, 576 | child: ClipPath( 577 | clipper: CustomShapeClipper2(), 578 | child: Container( 579 | //height: _height / 3.5, 580 | height:_height/7.8, 581 | decoration: BoxDecoration( 582 | gradient: LinearGradient( 583 | colors: [Colors.blue[500], Colors.pinkAccent], 584 | ), 585 | ), 586 | ), 587 | ), 588 | ), 589 | ], 590 | ), 591 | ), 592 | 593 | Padding( 594 | padding: const EdgeInsets.only(left: 10,right: 10), 595 | child: Column( 596 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 597 | children: [ 598 | Row( 599 | //mainAxisAlignment: MainAxisAlignment.spaceEvenly, 600 | children: [ 601 | Container( 602 | child:Text( 603 | item.title,style: TextStyle(color: Colors.white,fontSize: 25,fontWeight: FontWeight.w900), 604 | ), 605 | ), 606 | 607 | Expanded( 608 | flex: 1, 609 | child: Container( 610 | margin: EdgeInsets.only(left: 10), 611 | child:Text( 612 | item.subTitleRupee,style: TextStyle(color: Colors.white), 613 | ), 614 | ), 615 | ), 616 | Container( 617 | height: 50, 618 | width: 50, 619 | child:ClipRRect( 620 | borderRadius: BorderRadius.circular(70), 621 | child: Image.asset( 622 | item.image, 623 | fit: BoxFit.fill, 624 | ), 625 | ), 626 | ), 627 | ], 628 | ), 629 | Padding( 630 | padding: EdgeInsets.only(right: 150,), 631 | child:Container( 632 | alignment: Alignment.topLeft, 633 | height: 32, 634 | decoration: BoxDecoration( 635 | borderRadius: BorderRadius.circular(50.0), 636 | color: Colors.white, 637 | ), 638 | child:Center( 639 | child: Text( 640 | item.totalRupee,style: TextStyle(fontWeight: FontWeight.w600,fontSize: 18), 641 | ), 642 | ), 643 | ), 644 | ), 645 | ], 646 | ), 647 | ), 648 | ] 649 | ), 650 | ) 651 | ); 652 | } 653 | 654 | Widget _buildLatestAeoList(LatestOyoList item) { 655 | return Container( 656 | width: _width/2.1, 657 | child: Card( 658 | elevation: 0, 659 | child: Column( 660 | children: [ 661 | Expanded( 662 | flex: 1, 663 | child: ClipRRect( 664 | borderRadius: BorderRadius.only( 665 | topLeft: Radius.circular(5), topRight: Radius.circular(5)), 666 | child: Image.asset( 667 | item.imageUrl, 668 | fit: BoxFit.fill, 669 | ), 670 | ), 671 | ), 672 | Expanded( 673 | flex: 1, 674 | child: Container( 675 | padding: const EdgeInsets.all(12.0), 676 | child: Text( 677 | item.name, 678 | style: TextStyle(fontSize: 13, 679 | letterSpacing: 0.1, 680 | height: 1.5,fontWeight: FontWeight.w600), 681 | maxLines: 3, 682 | overflow: TextOverflow.ellipsis, 683 | ), 684 | ), 685 | ), 686 | ], 687 | ), 688 | ), 689 | ); 690 | } 691 | 692 | 693 | Widget _buildAeoSpecialsList(OyoSpecialsList item) { 694 | return Container( 695 | width: _width/2.20, 696 | child: Card( 697 | elevation: 2, 698 | child: Column( 699 | children: [ 700 | Expanded( 701 | flex: 5, 702 | child: ClipRRect( 703 | borderRadius: BorderRadius.only( 704 | topLeft: Radius.circular(5), topRight: Radius.circular(5)), 705 | child: Container( 706 | child: Image.asset( 707 | item.imageUrl, 708 | fit: BoxFit.fill, 709 | ), 710 | ), 711 | ), 712 | ), 713 | Expanded( 714 | flex: 6, 715 | child: Padding( 716 | padding: const EdgeInsets.only(left: 10,right: 10,top:30), 717 | child: Column( 718 | mainAxisAlignment: MainAxisAlignment.start, 719 | crossAxisAlignment: CrossAxisAlignment.start, 720 | children: [ 721 | Text( 722 | item.title, 723 | style: 724 | TextStyle(fontSize: 13, fontWeight: FontWeight.w500), 725 | ), 726 | SizedBox( 727 | height:10, 728 | ), 729 | Text( 730 | item.subTitle, 731 | style: TextStyle( 732 | fontSize: 12, 733 | color: Colors.grey[700], 734 | letterSpacing: 0.1, 735 | height: 1.5), 736 | maxLines: 3, 737 | overflow: TextOverflow.ellipsis, 738 | ), 739 | ], 740 | ), 741 | ), 742 | ), 743 | ], 744 | ), 745 | ), 746 | ); 747 | } 748 | 749 | 750 | Widget _buildWeekendGetawaysList(WeekendGetawaysList item) { 751 | return Container( 752 | width: _width/2.4, 753 | child: Card( 754 | elevation: 0, 755 | child: ClipRRect( 756 | borderRadius: BorderRadius.only( 757 | topLeft: Radius.circular(5), 758 | topRight: Radius.circular(5), 759 | bottomLeft: Radius.circular(5), 760 | bottomRight: Radius.circular(5)), 761 | child: Image.asset( 762 | item.imageUrl, 763 | fit: BoxFit.cover, 764 | ), 765 | ), 766 | ), 767 | ); 768 | } 769 | 770 | 771 | Widget _buildExploreAeoHotelsList(ExploreOyoHotelsList item) { 772 | return Container( 773 | width: _width/2.20, 774 | child: Card( 775 | elevation: 2, 776 | child: Column( 777 | children: [ 778 | Expanded( 779 | flex: 1, 780 | child: ClipRRect( 781 | borderRadius: BorderRadius.only( 782 | topLeft: Radius.circular(5), topRight: Radius.circular(5)), 783 | child: Image.asset( 784 | item.imgUrl, 785 | fit: BoxFit.fill, 786 | ), 787 | ), 788 | ), 789 | Container( 790 | alignment: Alignment.center, 791 | color: Colors.black, 792 | height: _height/30, 793 | width: _width/5, 794 | child: Text( 795 | item.title, 796 | style: TextStyle(color: Colors.white, fontSize: 10), 797 | ), 798 | ), 799 | Expanded( 800 | flex: 1, 801 | child: Container( 802 | padding: const EdgeInsets.all(12.0), 803 | child: Text( 804 | item.subTitle, 805 | style: TextStyle( 806 | fontSize: 12, 807 | color: Colors.grey[600], 808 | letterSpacing: 0.1, 809 | height: 1.5), 810 | maxLines: 3, 811 | overflow: TextOverflow.ellipsis, 812 | ), 813 | ), 814 | ), 815 | ], 816 | ), 817 | ), 818 | ); 819 | } 820 | 821 | Widget _buildLimitedPeriodList(LimitedPeriodOfferList item) { 822 | return Container( 823 | width: _width/2.5, 824 | child: ClipRRect( 825 | borderRadius: BorderRadius.circular(10), 826 | child: Card( 827 | elevation: 2, 828 | child: ClipRRect( 829 | borderRadius: BorderRadius.only( 830 | topLeft: Radius.circular(5), 831 | topRight: Radius.circular(5), 832 | bottomLeft: Radius.circular(5), 833 | bottomRight: Radius.circular(5)), 834 | child: Image.asset( 835 | item.imgUrl, 836 | fit: BoxFit.cover, 837 | ), 838 | ), 839 | ), 840 | ), 841 | ); 842 | } 843 | 844 | Widget _buildSummerList(ReadyForSummerList item) { 845 | return Container( 846 | width: _width, 847 | child: Card( 848 | elevation: 2, 849 | child: ClipRRect( 850 | borderRadius: BorderRadius.circular(5), 851 | child: Image.asset( 852 | item.imgUrl, 853 | fit: BoxFit.cover, 854 | ), 855 | ), 856 | ), 857 | ); 858 | } 859 | 860 | } 861 | 862 | -------------------------------------------------------------------------------- /lib/constant/constant.dart: -------------------------------------------------------------------------------- 1 | import 'package:oyoui_app/model/arealocationlist.dart'; 2 | import 'package:oyoui_app/model/exploreaeohotelslist.dart'; 3 | import 'package:oyoui_app/model/latestaeo.dart'; 4 | import 'package:oyoui_app/model/limitedperiodofferlist.dart'; 5 | import 'package:oyoui_app/model/aeospecials.dart'; 6 | import 'package:oyoui_app/model/aeowordlist.dart'; 7 | import 'package:oyoui_app/model/readyforsummerlist.dart'; 8 | import 'package:oyoui_app/model/weekendgetawayslist.dart'; 9 | import 'package:oyoui_app/model/yourwalletslist.dart'; 10 | 11 | class Constants{ 12 | 13 | static final String AEO_UI = 'OYO_UI'; 14 | static final String SPLASH_SCREEN = 'SPLASH_SCREEN'; 15 | 16 | static List getLocationList() { 17 | return [ 18 | new AreaLocationList('assets/images/nearby.png','Nearby'), 19 | new AreaLocationList('assets/images/nanital.jpg','Nainital'), 20 | new AreaLocationList('assets/images/delhi.jpeg','Delhi'), 21 | new AreaLocationList('assets/images/agra.jpeg','Agra'), 22 | new AreaLocationList('assets/images/goa.jpeg','Goa'), 23 | new AreaLocationList('assets/images/musoorie.jpeg','Musoorie'), 24 | new AreaLocationList('assets/images/banglore.jpeg','Banglore'), 25 | new AreaLocationList('assets/images/hyedrabaad.jpeg','Hyedrabaad'), 26 | new AreaLocationList('assets/images/kolkata.jpeg','Kolkata'), 27 | new AreaLocationList('assets/images/mumbai.jpeg','Mumbai'), 28 | new AreaLocationList('assets/images/noida.jpeg','Noida'), 29 | new AreaLocationList('assets/images/pune.jpeg','Pune'), 30 | new AreaLocationList('assets/images/mnali.jpeg','Mnali'), 31 | ]; 32 | } 33 | 34 | static List getSummerList() { 35 | return[ 36 | new ReadyForSummerList('assets/images/getRadyForSummer.jpg'), 37 | new ReadyForSummerList('assets/images/readyforsummer2.jpg'), 38 | ]; 39 | } 40 | 41 | static List getLimitedPeriodOfferList() { 42 | return [ 43 | new LimitedPeriodOfferList('assets/images/offer1.jpg'), 44 | new LimitedPeriodOfferList('assets/images/offers_1.jpeg'), 45 | new LimitedPeriodOfferList('assets/images/offers_2.jpeg') 46 | ]; 47 | } 48 | 49 | static List getExploreOyoHotelsList() { 50 | return[ 51 | new ExploreOyoHotelsList('assets/images/explore1.jpg','HOME','Home stays with luxuriors spaces and awesome feel for the'), 52 | new ExploreOyoHotelsList('assets/images/explore2.jpg','COLLECTION','A space for new age Business travellers for smoother work trips'), 53 | new ExploreOyoHotelsList('assets/images/explore3.jpg','TOWNHOUSE','Smart hotel rooms with luxurious space that are designed'), 54 | new ExploreOyoHotelsList('assets/images/explore4.jpg','SILVERKEY','Fully serviced, professionally managed apartments'), 55 | ]; 56 | } 57 | 58 | static List getWeekendsList() { 59 | return[ 60 | new WeekendGetawaysList('assets/images/weekend_3.jpg'), 61 | new WeekendGetawaysList('assets/images/goaBeach.jpg'), 62 | new WeekendGetawaysList('assets/images/hills.jpg'), 63 | ]; 64 | } 65 | 66 | static List getOyoSpecials() { 67 | return[ 68 | new OyoSpecialsList('assets/images/explore1.jpg','@AEO Near You','Travelling? Choose from these best stays in india'), 69 | new OyoSpecialsList('assets/images/explore4.jpg','AEO WORKSPACES','Workspaces to make every moment work!'), 70 | new OyoSpecialsList('assets/images/explore3.jpg','AEO LIFE','Find long-term accommodation satrting,@Rs.5999 per month'), 71 | new OyoSpecialsList('assets/images/explore2.jpg','AEO HOTEL','Travelling? Choose from these best stays in india'), 72 | new OyoSpecialsList('assets/images/explore1.jpg','AEO TOTAL HOLIDAYS','Travel packages with an AEO Hotels stay,AEO Cal and AEO'), 73 | ]; 74 | } 75 | 76 | static List getLatestOyo() { 77 | return[ 78 | new LatestOyoList('assets/images/latest_1.jpg','Book your meal before check-in to save more on your money'), 79 | new LatestOyoList('assets/images/latest_2.jpg','Skipping, breakfast? Dont pay for it and save on bookings '), 80 | ]; 81 | } 82 | 83 | static List getYourWallet() { 84 | return[ 85 | new YourWalletList('AEO','Rupee','assets/images/aeologic.png', '₹. 0'), 86 | new YourWalletList('AEO','Wallet','assets/images/aeologic.png', '₹. 0'), 87 | ]; 88 | } 89 | } -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:oyoui_app/constant/constant.dart'; 3 | import 'package:oyoui_app/aeoui.dart'; 4 | import 'package:oyoui_app/splashscreen.dart'; 5 | 6 | void main() =>runApp(MaterialApp( 7 | title: 'AEO UI' , 8 | debugShowCheckedModeBanner: false, 9 | theme: ThemeData( 10 | primarySwatch: Colors.blue 11 | ), 12 | routes: { 13 | Constants.SPLASH_SCREEN: (BuildContext context) => AnimatedSplashScreen(), 14 | Constants.AEO_UI: (BuildContext context) => AeoUI(), 15 | }, 16 | initialRoute: Constants.SPLASH_SCREEN, 17 | )); 18 | 19 | 20 | -------------------------------------------------------------------------------- /lib/model/aeospecials.dart: -------------------------------------------------------------------------------- 1 | class OyoSpecialsList{ 2 | String _imageUrl; 3 | String _title; 4 | String _subtitle; 5 | 6 | OyoSpecialsList(this._imageUrl,this._title,this._subtitle); 7 | 8 | String get imageUrl=> _imageUrl; 9 | String get title=>_title; 10 | String get subTitle=>_subtitle; 11 | } -------------------------------------------------------------------------------- /lib/model/aeowordlist.dart: -------------------------------------------------------------------------------- 1 | class oyoWordList{ 2 | 3 | String _imageUrl; 4 | String _title; 5 | String _subtitle; 6 | 7 | oyoWordList(this._imageUrl,this._title,this._subtitle); 8 | 9 | String get imageUrl=> _imageUrl; 10 | String get title=>_title; 11 | String get subTitle=>_subtitle; 12 | } -------------------------------------------------------------------------------- /lib/model/arealocationlist.dart: -------------------------------------------------------------------------------- 1 | class AreaLocationList{ 2 | 3 | String _imageUrl; 4 | String _name; 5 | 6 | AreaLocationList(this._imageUrl,this._name); 7 | 8 | String get imageUrl=> _imageUrl; 9 | String get name=>_name; 10 | } -------------------------------------------------------------------------------- /lib/model/exploreaeohotelslist.dart: -------------------------------------------------------------------------------- 1 | class ExploreOyoHotelsList{ 2 | 3 | String _imgUrl; 4 | String _title; 5 | String _subTitle; 6 | 7 | ExploreOyoHotelsList(this._imgUrl,this._title,this._subTitle); 8 | 9 | String get imgUrl=>_imgUrl; 10 | String get title=>_title; 11 | String get subTitle=>_subTitle; 12 | } -------------------------------------------------------------------------------- /lib/model/latestaeo.dart: -------------------------------------------------------------------------------- 1 | class LatestOyoList{ 2 | 3 | String _imageUrl; 4 | String _name; 5 | 6 | LatestOyoList(this._imageUrl,this._name); 7 | 8 | String get imageUrl=> _imageUrl; 9 | String get name=>_name; 10 | 11 | } -------------------------------------------------------------------------------- /lib/model/limitedperiodofferlist.dart: -------------------------------------------------------------------------------- 1 | class LimitedPeriodOfferList{ 2 | 3 | String _imgUrl; 4 | 5 | LimitedPeriodOfferList(this._imgUrl); 6 | 7 | String get imgUrl=>_imgUrl; 8 | 9 | } -------------------------------------------------------------------------------- /lib/model/readyforsummerlist.dart: -------------------------------------------------------------------------------- 1 | class ReadyForSummerList{ 2 | 3 | String _imgUrl; 4 | 5 | ReadyForSummerList(this._imgUrl); 6 | 7 | String get imgUrl=>_imgUrl; 8 | 9 | } -------------------------------------------------------------------------------- /lib/model/weekendgetawayslist.dart: -------------------------------------------------------------------------------- 1 | class WeekendGetawaysList{ 2 | 3 | String _imageUrl; 4 | 5 | WeekendGetawaysList(this._imageUrl); 6 | 7 | String get imageUrl=> _imageUrl; 8 | } -------------------------------------------------------------------------------- /lib/model/yourwalletslist.dart: -------------------------------------------------------------------------------- 1 | class YourWalletList{ 2 | 3 | String _title; 4 | String _subTitleRupee; 5 | String _imageUrl; 6 | String _totalRupee; 7 | 8 | YourWalletList(this._title,this._subTitleRupee,this._imageUrl,this._totalRupee); 9 | 10 | String get title=>_title; 11 | String get subTitleRupee=>_subTitleRupee; 12 | String get image=>_imageUrl; 13 | String get totalRupee=>_totalRupee; 14 | 15 | } -------------------------------------------------------------------------------- /lib/splashscreen.dart: -------------------------------------------------------------------------------- 1 | import 'dart:async'; 2 | import 'package:oyoui_app/constant/constant.dart'; 3 | import 'package:flutter/cupertino.dart'; 4 | import 'package:flutter/material.dart'; 5 | import 'package:oyoui_app/main.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(Constants.AEO_UI); 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/images/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/images/logo.png', 65 | width: animation.value * 250, 66 | height: animation.value * 250, 67 | ), 68 | ], 69 | ), 70 | ], 71 | ), 72 | ); 73 | } 74 | } -------------------------------------------------------------------------------- /lib/widgets/customshape.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class CustomShapeClipper extends CustomClipper { 4 | @override 5 | Path getClip(Size size) { 6 | final Path path = Path(); 7 | path.lineTo(0.0, size.height-20); 8 | var firstEndPoint = Offset(size.width,size.height/3); 9 | var firstControlPoint = Offset(size.width *0.5, size.height-1); 10 | path.quadraticBezierTo(firstControlPoint.dx, firstControlPoint.dy, firstEndPoint.dx, firstEndPoint.dy); 11 | path.lineTo(size.width, 0); 12 | path.close(); 13 | return path; 14 | } 15 | 16 | @override 17 | bool shouldReclip(CustomClipper oldClipper) => true; 18 | 19 | 20 | } 21 | 22 | class CustomShapeClipper2 extends CustomClipper { 23 | @override 24 | Path getClip(Size size) { 25 | final Path path = Path(); 26 | //path.lineTo(0.0, size.height-100); 27 | path.lineTo(0.0, 30.0); 28 | 29 | var firstEndPoint = Offset(size.width , size.height/1.4); 30 | var firstControlPoint = Offset(size.width * 0.5, size.height+5); 31 | path.quadraticBezierTo(firstControlPoint.dx, firstControlPoint.dy, firstEndPoint.dx, firstEndPoint.dy); 32 | path.lineTo(size.width, 0); 33 | path.close(); 34 | return path; 35 | } 36 | 37 | @override 38 | bool shouldReclip(CustomClipper oldClipper) => true; 39 | } 40 | 41 | /* 42 | 43 | class CustomShapeClipper3 extends CustomClipper { 44 | @override 45 | Path getClip(Size size) { 46 | final Path path = Path(); 47 | path.lineTo(0.0, size.height -30); 48 | 49 | var firstEndPoint = Offset(size.width , size.height/1.25); 50 | var firstControlPoint = Offset(size.width * 0.5, size.height+20); 51 | path.quadraticBezierTo(firstControlPoint.dx, firstControlPoint.dy, firstEndPoint.dx, firstEndPoint.dy); 52 | 53 | 54 | path.lineTo(size.width, 0); 55 | path.close(); 56 | return path; 57 | } 58 | 59 | @override 60 | bool shouldReclip(CustomClipper oldClipper) => true; 61 | 62 | }*/ 63 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://www.dartlang.org/tools/pub/glossary#lockfile 3 | packages: 4 | async: 5 | dependency: transitive 6 | description: 7 | name: async 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "2.1.0" 11 | boolean_selector: 12 | dependency: transitive 13 | description: 14 | name: boolean_selector 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "1.0.4" 18 | charcode: 19 | dependency: transitive 20 | description: 21 | name: charcode 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "1.1.2" 25 | collection: 26 | dependency: transitive 27 | description: 28 | name: collection 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.14.11" 32 | cupertino_icons: 33 | dependency: "direct main" 34 | description: 35 | name: cupertino_icons 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "0.1.2" 39 | flutter: 40 | dependency: "direct main" 41 | description: flutter 42 | source: sdk 43 | version: "0.0.0" 44 | flutter_test: 45 | dependency: "direct dev" 46 | description: flutter 47 | source: sdk 48 | version: "0.0.0" 49 | matcher: 50 | dependency: transitive 51 | description: 52 | name: matcher 53 | url: "https://pub.dartlang.org" 54 | source: hosted 55 | version: "0.12.5" 56 | meta: 57 | dependency: transitive 58 | description: 59 | name: meta 60 | url: "https://pub.dartlang.org" 61 | source: hosted 62 | version: "1.1.6" 63 | path: 64 | dependency: transitive 65 | description: 66 | name: path 67 | url: "https://pub.dartlang.org" 68 | source: hosted 69 | version: "1.6.2" 70 | pedantic: 71 | dependency: transitive 72 | description: 73 | name: pedantic 74 | url: "https://pub.dartlang.org" 75 | source: hosted 76 | version: "1.5.0" 77 | quiver: 78 | dependency: transitive 79 | description: 80 | name: quiver 81 | url: "https://pub.dartlang.org" 82 | source: hosted 83 | version: "2.0.2" 84 | sky_engine: 85 | dependency: transitive 86 | description: flutter 87 | source: sdk 88 | version: "0.0.99" 89 | source_span: 90 | dependency: transitive 91 | description: 92 | name: source_span 93 | url: "https://pub.dartlang.org" 94 | source: hosted 95 | version: "1.5.5" 96 | stack_trace: 97 | dependency: transitive 98 | description: 99 | name: stack_trace 100 | url: "https://pub.dartlang.org" 101 | source: hosted 102 | version: "1.9.3" 103 | stream_channel: 104 | dependency: transitive 105 | description: 106 | name: stream_channel 107 | url: "https://pub.dartlang.org" 108 | source: hosted 109 | version: "2.0.0" 110 | string_scanner: 111 | dependency: transitive 112 | description: 113 | name: string_scanner 114 | url: "https://pub.dartlang.org" 115 | source: hosted 116 | version: "1.0.4" 117 | term_glyph: 118 | dependency: transitive 119 | description: 120 | name: term_glyph 121 | url: "https://pub.dartlang.org" 122 | source: hosted 123 | version: "1.1.0" 124 | test_api: 125 | dependency: transitive 126 | description: 127 | name: test_api 128 | url: "https://pub.dartlang.org" 129 | source: hosted 130 | version: "0.2.4" 131 | typed_data: 132 | dependency: transitive 133 | description: 134 | name: typed_data 135 | url: "https://pub.dartlang.org" 136 | source: hosted 137 | version: "1.1.6" 138 | vector_math: 139 | dependency: transitive 140 | description: 141 | name: vector_math 142 | url: "https://pub.dartlang.org" 143 | source: hosted 144 | version: "2.0.8" 145 | sdks: 146 | dart: ">=2.2.0 <3.0.0" 147 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: oyoui_app 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 | dev_dependencies: 28 | flutter_test: 29 | sdk: flutter 30 | 31 | 32 | # For information on the generic Dart part of this file, see the 33 | # following page: https://www.dartlang.org/tools/pub/pubspec 34 | 35 | # The following section is specific to Flutter. 36 | flutter: 37 | 38 | # The following line ensures that the Material Icons font is 39 | # included with your application, so that you can use the icons in 40 | # the material Icons class. 41 | uses-material-design: true 42 | 43 | assets: 44 | - assets/images/gatewayimage.jpg 45 | - assets/images/inningsBreak.jpg 46 | - assets/images/referwin.jpg 47 | - assets/images/exploreOyoHotels1.jpeg 48 | - assets/images/explore2.jpg 49 | - assets/images/explore3.jpg 50 | - assets/images/explore4.jpg 51 | - assets/images/Supersale.jpeg 52 | - assets/images/readyForSummer.jpg 53 | - assets/images/readyforsummer2.jpg 54 | - assets/images/agra.jpeg 55 | - assets/images/banglore.jpeg 56 | - assets/images/delhi.jpeg 57 | - assets/images/goa.jpeg 58 | - assets/images/kolkata.jpeg 59 | - assets/images/mnali.jpeg 60 | - assets/images/mumbai.jpeg 61 | - assets/images/musoorie.jpeg 62 | - assets/images/nanital.jpg 63 | - assets/images/hyedrabaad.jpeg 64 | - assets/images/noida.jpeg 65 | - assets/images/pune.jpeg 66 | - assets/images/nearby.png 67 | - assets/images/shakewin.jpeg 68 | - assets/images/playwin.jpg 69 | - assets/images/win.jpg 70 | - assets/images/aeologic.png 71 | - assets/images/superSale.png 72 | - assets/images/dailySale.jpg 73 | - assets/images/getRadyForSummer.jpg 74 | - assets/images/offer1.jpg 75 | - assets/images/offers_1.jpeg 76 | - assets/images/offers_2.jpeg 77 | - assets/images/wizard.png 78 | - assets/images/weekend_3.jpg 79 | - assets/images/goaBeach.jpg 80 | - assets/images/hills.jpg 81 | - assets/images/latest_1.jpg 82 | - assets/images/latest_2.jpg 83 | - assets/images/specials.jpg 84 | - assets/images/shake_win.jpg 85 | - assets/images/logo.png 86 | - assets/images/powered_by.png 87 | - assets/images/getaway.png 88 | - assets/images/explore1.jpg 89 | 90 | 91 | 92 | 93 | # - family: Trajan Pro 94 | # fonts: 95 | # - asset: fonts/TrajanPro.ttf 96 | # - asset: fonts/TrajanPro_Bold.ttf 97 | # weight: 700 98 | # 99 | # For details regarding fonts from package dependencies, 100 | # see https://flutter.dev/custom-fonts/#from-packages 101 | 102 | 103 | -------------------------------------------------------------------------------- /screens/android1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/screens/android1.png -------------------------------------------------------------------------------- /screens/android2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/screens/android2.png -------------------------------------------------------------------------------- /screens/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/screens/demo.gif -------------------------------------------------------------------------------- /screens/iphone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/screens/iphone1.png -------------------------------------------------------------------------------- /screens/iphone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-devs/flutter_oyorooms_demo/7e0202677eab35ffe2403bb4108d399059c82013/screens/iphone2.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:oyoui_app/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(MaterialApp()); 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 | --------------------------------------------------------------------------------