├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── README.zh-CN.md ├── android ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── dev │ │ │ │ └── jideguru │ │ │ │ └── flutter_travel_concept │ │ │ │ └── MainActivity.kt │ │ └── 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 ├── 1.jpeg ├── 2.jpeg ├── 3.jpeg ├── 4.jpeg └── 5.jpeg ├── 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.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── main.dart ├── screens │ ├── details.dart │ ├── home.dart │ └── main_screen.dart ├── util │ ├── const.dart │ └── places.dart └── widgets │ ├── horizontal_place_item.dart │ ├── icon_badge.dart │ ├── search_bar.dart │ └── vertical_place_item.dart ├── pubspec.lock ├── pubspec.yaml └── ss ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── 5.png /.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: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 2 | Version 2, December 2004 3 | 4 | Copyright (C) 2019 JideGuru 5 | 6 | Everyone is permitted to copy and distribute verbatim or modified 7 | copies of this license document, and changing it is allowed as long 8 | as the name is changed. 9 | 10 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 11 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 12 | 13 | 0. You just DO WHAT THE FUCK YOU WANT TO. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | English | [简体中文](./README.zh-CN.md) 2 | # 🛫Flutter Travel App Concept [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) 3 | 4 | Flutter representation of a Travel App Concept i found in Uplabs. 5 | **It only consists of 2 screens.** 6 | 7 | Star⭐ the repo if you like what you see😉. 8 | 9 | 10 | Images are from [Unsplash](https://unsplash.com) 11 | ## 📸 ScreenShots 12 | 13 | 14 | 15 | | 1 | 2| 16 | |------|-------| 17 | ||| 18 | 19 | | 3 | 4| 20 | |------|-------| 21 | ||| 22 | 23 | 24 | ## Toggle theme 25 | The App's theme adapts to your device's theme 26 | 27 | ## ✨ Requirements 28 | * Any Operating System (ie. MacOS X, Linux, Windows) 29 | * Any IDE with Flutter SDK installed (ie. IntelliJ, Android Studio, VSCode etc) 30 | * A little knowledge of Dart and Flutter 31 | * A brain to think 🤓🤓 32 | 33 | ## 🤓 Author(s) 34 | **Olusegun Festus Babajide** [![Twitter Follow](https://img.shields.io/twitter/follow/iamjideguru.svg?style=social)](https://twitter.com/iamjideguru) 35 | 36 | 37 | ## Getting Started 38 | 39 | This project is a starting point for a Flutter application. 40 | 41 | A few resources to get you started if this is your first Flutter project: 42 | 43 | - [Lab: Write your first Flutter app](https://flutter.io/docs/get-started/codelab) 44 | - [Cookbook: Useful Flutter samples](https://flutter.io/docs/cookbook) 45 | 46 | For help getting started with Flutter, view our 47 | [online documentation](https://flutter.io/docs), which offers tutorials, 48 | samples, guidance on mobile development, and a full API reference. 49 | 50 | 51 | ## LICENCE 52 | [WTFPL](http://www.wtfpl.net/about/) 53 | -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- 1 | [English](./README.md) | 简体中文 2 | # 🛫Flutter 旅行app [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) 3 | 4 | 用Flutter实现了一个简单的旅行类App, 5 | **只包含两页页面(很好学哦)** 6 | 7 | 喜欢的话给个star⭐哦,😉 8 | 9 | 10 | 图片来自 [Unsplash](https://unsplash.com) 11 | ## 📸 App预览 12 | 13 | 14 | 15 | | 1 | 2| 16 | |------|-------| 17 | ||| 18 | 19 | | 3 | 4| 20 | |------|-------| 21 | ||| 22 | 23 | 24 | ## 切换主题 25 | 修改`main.dart`里的`isDark`变量即可切换主题 26 | 27 | `true`为暗黑主题,`false`为亮白主题 28 | 29 | ## ✨ 开发要求 30 | * 操作系统 (如:MacOS X, Linux, Windows) 31 | * 任何装了flutter's SDK的编辑器 (如: IntelliJ, Android Studio, VSCode etc) 32 | * 稍微了解dart和flutter 33 | * 会思考的大脑 🤓🤓 34 | 35 | ## 🤓 作者(s) 36 | **Olusegun Festus Babajide** [![Twitter Follow](https://img.shields.io/twitter/follow/iamjideguru.svg?style=social)](https://twitter.com/iamjideguru) 37 | 38 | 39 | ## 快速开始 40 | 41 | 这是一个学习Flutter开发的入门项目 42 | 43 | 还有一些不错的开始项目: 44 | 45 | - [官方Lab: Write your first Flutter app](https://flutter.io/docs/get-started/codelab) 46 | - [官方Cookbook: Useful Flutter samples](https://flutter.io/docs/cookbook) 47 | 48 | 要想全面的学习Flutter,阅读官方的 49 | [在线文档](https://flutter.io/docs)。文档提供了大量的教程、例子、移动开发指南和完整的API参考 50 | 51 | 52 | ## LICENCE 53 | [WTFPL](http://www.wtfpl.net/about/) 54 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply plugin: 'kotlin-android' 26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 27 | 28 | android { 29 | compileSdkVersion 28 30 | 31 | sourceSets { 32 | main.java.srcDirs += 'src/main/kotlin' 33 | } 34 | 35 | lintOptions { 36 | disable 'InvalidPackage' 37 | } 38 | 39 | defaultConfig { 40 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 41 | applicationId "dev.jideguru.flutter_travel_concept" 42 | minSdkVersion 16 43 | targetSdkVersion 28 44 | versionCode flutterVersionCode.toInteger() 45 | versionName flutterVersionName 46 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 47 | } 48 | 49 | buildTypes { 50 | release { 51 | // TODO: Add your own signing config for the release build. 52 | // Signing with the debug keys for now, so `flutter run --release` works. 53 | signingConfig signingConfigs.debug 54 | } 55 | } 56 | } 57 | 58 | flutter { 59 | source '../..' 60 | } 61 | 62 | dependencies { 63 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 64 | testImplementation 'junit:junit:4.12' 65 | androidTestImplementation 'com.android.support.test:runner:1.0.2' 66 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 67 | } 68 | -------------------------------------------------------------------------------- /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/kotlin/dev/jideguru/flutter_travel_concept/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package dev.jideguru.flutter_travel_concept 2 | 3 | import android.os.Bundle 4 | 5 | import io.flutter.app.FlutterActivity 6 | import io.flutter.plugins.GeneratedPluginRegistrant 7 | 8 | class MainActivity: FlutterActivity() { 9 | override fun onCreate(savedInstanceState: Bundle?) { 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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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 | ext.kotlin_version = '1.3.50' 3 | repositories { 4 | google() 5 | jcenter() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:3.5.0' 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | } 12 | } 13 | 14 | allprojects { 15 | repositories { 16 | google() 17 | jcenter() 18 | } 19 | } 20 | 21 | rootProject.buildDir = '../build' 22 | subprojects { 23 | project.buildDir = "${rootProject.buildDir}/${project.name}" 24 | } 25 | subprojects { 26 | project.evaluationDependsOn(':app') 27 | } 28 | 29 | task clean(type: Delete) { 30 | delete rootProject.buildDir 31 | } 32 | -------------------------------------------------------------------------------- /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-5.6.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/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/assets/1.jpeg -------------------------------------------------------------------------------- /assets/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/assets/2.jpeg -------------------------------------------------------------------------------- /assets/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/assets/3.jpeg -------------------------------------------------------------------------------- /assets/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/assets/4.jpeg -------------------------------------------------------------------------------- /assets/5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/assets/5.jpeg -------------------------------------------------------------------------------- /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 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 13 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; }; 14 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 15 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 16 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXCopyFilesBuildPhase section */ 20 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 21 | isa = PBXCopyFilesBuildPhase; 22 | buildActionMask = 2147483647; 23 | dstPath = ""; 24 | dstSubfolderSpec = 10; 25 | files = ( 26 | ); 27 | name = "Embed Frameworks"; 28 | runOnlyForDeploymentPostprocessing = 0; 29 | }; 30 | /* End PBXCopyFilesBuildPhase section */ 31 | 32 | /* Begin PBXFileReference section */ 33 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 34 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 35 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 36 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 37 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 38 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 39 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 40 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 41 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 43 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 44 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 45 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 46 | /* End PBXFileReference section */ 47 | 48 | /* Begin PBXFrameworksBuildPhase section */ 49 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 50 | isa = PBXFrameworksBuildPhase; 51 | buildActionMask = 2147483647; 52 | files = ( 53 | ); 54 | runOnlyForDeploymentPostprocessing = 0; 55 | }; 56 | /* End PBXFrameworksBuildPhase section */ 57 | 58 | /* Begin PBXGroup section */ 59 | 9740EEB11CF90186004384FC /* Flutter */ = { 60 | isa = PBXGroup; 61 | children = ( 62 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 63 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 64 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 65 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 66 | ); 67 | name = Flutter; 68 | sourceTree = ""; 69 | }; 70 | 97C146E51CF9000F007C117D = { 71 | isa = PBXGroup; 72 | children = ( 73 | 9740EEB11CF90186004384FC /* Flutter */, 74 | 97C146F01CF9000F007C117D /* Runner */, 75 | 97C146EF1CF9000F007C117D /* Products */, 76 | ); 77 | sourceTree = ""; 78 | }; 79 | 97C146EF1CF9000F007C117D /* Products */ = { 80 | isa = PBXGroup; 81 | children = ( 82 | 97C146EE1CF9000F007C117D /* Runner.app */, 83 | ); 84 | name = Products; 85 | sourceTree = ""; 86 | }; 87 | 97C146F01CF9000F007C117D /* Runner */ = { 88 | isa = PBXGroup; 89 | children = ( 90 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 91 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 92 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 93 | 97C147021CF9000F007C117D /* Info.plist */, 94 | 97C146F11CF9000F007C117D /* Supporting Files */, 95 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 96 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 97 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 98 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 99 | ); 100 | path = Runner; 101 | sourceTree = ""; 102 | }; 103 | 97C146F11CF9000F007C117D /* Supporting Files */ = { 104 | isa = PBXGroup; 105 | children = ( 106 | ); 107 | name = "Supporting Files"; 108 | sourceTree = ""; 109 | }; 110 | /* End PBXGroup section */ 111 | 112 | /* Begin PBXNativeTarget section */ 113 | 97C146ED1CF9000F007C117D /* Runner */ = { 114 | isa = PBXNativeTarget; 115 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 116 | buildPhases = ( 117 | 9740EEB61CF901F6004384FC /* Run Script */, 118 | 97C146EA1CF9000F007C117D /* Sources */, 119 | 97C146EB1CF9000F007C117D /* Frameworks */, 120 | 97C146EC1CF9000F007C117D /* Resources */, 121 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 122 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 123 | ); 124 | buildRules = ( 125 | ); 126 | dependencies = ( 127 | ); 128 | name = Runner; 129 | productName = Runner; 130 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 131 | productType = "com.apple.product-type.application"; 132 | }; 133 | /* End PBXNativeTarget section */ 134 | 135 | /* Begin PBXProject section */ 136 | 97C146E61CF9000F007C117D /* Project object */ = { 137 | isa = PBXProject; 138 | attributes = { 139 | LastUpgradeCheck = 0910; 140 | ORGANIZATIONNAME = "The Chromium Authors"; 141 | TargetAttributes = { 142 | 97C146ED1CF9000F007C117D = { 143 | CreatedOnToolsVersion = 7.3.1; 144 | DevelopmentTeam = 3DDPAAW5W3; 145 | LastSwiftMigration = 0910; 146 | }; 147 | }; 148 | }; 149 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 150 | compatibilityVersion = "Xcode 3.2"; 151 | developmentRegion = English; 152 | hasScannedForEncodings = 0; 153 | knownRegions = ( 154 | English, 155 | en, 156 | Base, 157 | ); 158 | mainGroup = 97C146E51CF9000F007C117D; 159 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 160 | projectDirPath = ""; 161 | projectRoot = ""; 162 | targets = ( 163 | 97C146ED1CF9000F007C117D /* Runner */, 164 | ); 165 | }; 166 | /* End PBXProject section */ 167 | 168 | /* Begin PBXResourcesBuildPhase section */ 169 | 97C146EC1CF9000F007C117D /* Resources */ = { 170 | isa = PBXResourcesBuildPhase; 171 | buildActionMask = 2147483647; 172 | files = ( 173 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 174 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 175 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */, 176 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 177 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 178 | ); 179 | runOnlyForDeploymentPostprocessing = 0; 180 | }; 181 | /* End PBXResourcesBuildPhase section */ 182 | 183 | /* Begin PBXShellScriptBuildPhase section */ 184 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 185 | isa = PBXShellScriptBuildPhase; 186 | buildActionMask = 2147483647; 187 | files = ( 188 | ); 189 | inputPaths = ( 190 | ); 191 | name = "Thin Binary"; 192 | outputPaths = ( 193 | ); 194 | runOnlyForDeploymentPostprocessing = 0; 195 | shellPath = /bin/sh; 196 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 197 | }; 198 | 9740EEB61CF901F6004384FC /* Run Script */ = { 199 | isa = PBXShellScriptBuildPhase; 200 | buildActionMask = 2147483647; 201 | files = ( 202 | ); 203 | inputPaths = ( 204 | ); 205 | name = "Run Script"; 206 | outputPaths = ( 207 | ); 208 | runOnlyForDeploymentPostprocessing = 0; 209 | shellPath = /bin/sh; 210 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 211 | }; 212 | /* End PBXShellScriptBuildPhase section */ 213 | 214 | /* Begin PBXSourcesBuildPhase section */ 215 | 97C146EA1CF9000F007C117D /* Sources */ = { 216 | isa = PBXSourcesBuildPhase; 217 | buildActionMask = 2147483647; 218 | files = ( 219 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 220 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 221 | ); 222 | runOnlyForDeploymentPostprocessing = 0; 223 | }; 224 | /* End PBXSourcesBuildPhase section */ 225 | 226 | /* Begin PBXVariantGroup section */ 227 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 228 | isa = PBXVariantGroup; 229 | children = ( 230 | 97C146FB1CF9000F007C117D /* Base */, 231 | ); 232 | name = Main.storyboard; 233 | sourceTree = ""; 234 | }; 235 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 236 | isa = PBXVariantGroup; 237 | children = ( 238 | 97C147001CF9000F007C117D /* Base */, 239 | ); 240 | name = LaunchScreen.storyboard; 241 | sourceTree = ""; 242 | }; 243 | /* End PBXVariantGroup section */ 244 | 245 | /* Begin XCBuildConfiguration section */ 246 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 247 | isa = XCBuildConfiguration; 248 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 249 | buildSettings = { 250 | ALWAYS_SEARCH_USER_PATHS = NO; 251 | CLANG_ANALYZER_NONNULL = YES; 252 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 253 | CLANG_CXX_LIBRARY = "libc++"; 254 | CLANG_ENABLE_MODULES = YES; 255 | CLANG_ENABLE_OBJC_ARC = YES; 256 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 257 | CLANG_WARN_BOOL_CONVERSION = YES; 258 | CLANG_WARN_COMMA = YES; 259 | CLANG_WARN_CONSTANT_CONVERSION = YES; 260 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 261 | CLANG_WARN_EMPTY_BODY = YES; 262 | CLANG_WARN_ENUM_CONVERSION = YES; 263 | CLANG_WARN_INFINITE_RECURSION = YES; 264 | CLANG_WARN_INT_CONVERSION = YES; 265 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 266 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 267 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 268 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 269 | CLANG_WARN_STRICT_PROTOTYPES = YES; 270 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 271 | CLANG_WARN_UNREACHABLE_CODE = YES; 272 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 273 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 274 | COPY_PHASE_STRIP = NO; 275 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 276 | ENABLE_NS_ASSERTIONS = NO; 277 | ENABLE_STRICT_OBJC_MSGSEND = YES; 278 | GCC_C_LANGUAGE_STANDARD = gnu99; 279 | GCC_NO_COMMON_BLOCKS = YES; 280 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 281 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 282 | GCC_WARN_UNDECLARED_SELECTOR = YES; 283 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 284 | GCC_WARN_UNUSED_FUNCTION = YES; 285 | GCC_WARN_UNUSED_VARIABLE = YES; 286 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 287 | MTL_ENABLE_DEBUG_INFO = NO; 288 | SDKROOT = iphoneos; 289 | TARGETED_DEVICE_FAMILY = "1,2"; 290 | VALIDATE_PRODUCT = YES; 291 | }; 292 | name = Profile; 293 | }; 294 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 295 | isa = XCBuildConfiguration; 296 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 297 | buildSettings = { 298 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 299 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 300 | DEVELOPMENT_TEAM = 3DDPAAW5W3; 301 | ENABLE_BITCODE = NO; 302 | FRAMEWORK_SEARCH_PATHS = ( 303 | "$(inherited)", 304 | "$(PROJECT_DIR)/Flutter", 305 | ); 306 | INFOPLIST_FILE = Runner/Info.plist; 307 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 308 | LIBRARY_SEARCH_PATHS = ( 309 | "$(inherited)", 310 | "$(PROJECT_DIR)/Flutter", 311 | ); 312 | PRODUCT_BUNDLE_IDENTIFIER = dev.jideguru.flutterTravelConcept; 313 | PRODUCT_NAME = "$(TARGET_NAME)"; 314 | SWIFT_VERSION = 4.0; 315 | VERSIONING_SYSTEM = "apple-generic"; 316 | }; 317 | name = Profile; 318 | }; 319 | 97C147031CF9000F007C117D /* Debug */ = { 320 | isa = XCBuildConfiguration; 321 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 322 | buildSettings = { 323 | ALWAYS_SEARCH_USER_PATHS = NO; 324 | CLANG_ANALYZER_NONNULL = YES; 325 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 326 | CLANG_CXX_LIBRARY = "libc++"; 327 | CLANG_ENABLE_MODULES = YES; 328 | CLANG_ENABLE_OBJC_ARC = YES; 329 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 330 | CLANG_WARN_BOOL_CONVERSION = YES; 331 | CLANG_WARN_COMMA = YES; 332 | CLANG_WARN_CONSTANT_CONVERSION = YES; 333 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 334 | CLANG_WARN_EMPTY_BODY = YES; 335 | CLANG_WARN_ENUM_CONVERSION = YES; 336 | CLANG_WARN_INFINITE_RECURSION = YES; 337 | CLANG_WARN_INT_CONVERSION = YES; 338 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 339 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 340 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 341 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 342 | CLANG_WARN_STRICT_PROTOTYPES = YES; 343 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 344 | CLANG_WARN_UNREACHABLE_CODE = YES; 345 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 346 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 347 | COPY_PHASE_STRIP = NO; 348 | DEBUG_INFORMATION_FORMAT = dwarf; 349 | ENABLE_STRICT_OBJC_MSGSEND = YES; 350 | ENABLE_TESTABILITY = YES; 351 | GCC_C_LANGUAGE_STANDARD = gnu99; 352 | GCC_DYNAMIC_NO_PIC = NO; 353 | GCC_NO_COMMON_BLOCKS = YES; 354 | GCC_OPTIMIZATION_LEVEL = 0; 355 | GCC_PREPROCESSOR_DEFINITIONS = ( 356 | "DEBUG=1", 357 | "$(inherited)", 358 | ); 359 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 360 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 361 | GCC_WARN_UNDECLARED_SELECTOR = YES; 362 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 363 | GCC_WARN_UNUSED_FUNCTION = YES; 364 | GCC_WARN_UNUSED_VARIABLE = YES; 365 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 366 | MTL_ENABLE_DEBUG_INFO = YES; 367 | ONLY_ACTIVE_ARCH = YES; 368 | SDKROOT = iphoneos; 369 | TARGETED_DEVICE_FAMILY = "1,2"; 370 | }; 371 | name = Debug; 372 | }; 373 | 97C147041CF9000F007C117D /* Release */ = { 374 | isa = XCBuildConfiguration; 375 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 376 | buildSettings = { 377 | ALWAYS_SEARCH_USER_PATHS = NO; 378 | CLANG_ANALYZER_NONNULL = YES; 379 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 380 | CLANG_CXX_LIBRARY = "libc++"; 381 | CLANG_ENABLE_MODULES = YES; 382 | CLANG_ENABLE_OBJC_ARC = YES; 383 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 384 | CLANG_WARN_BOOL_CONVERSION = YES; 385 | CLANG_WARN_COMMA = YES; 386 | CLANG_WARN_CONSTANT_CONVERSION = YES; 387 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 388 | CLANG_WARN_EMPTY_BODY = YES; 389 | CLANG_WARN_ENUM_CONVERSION = YES; 390 | CLANG_WARN_INFINITE_RECURSION = YES; 391 | CLANG_WARN_INT_CONVERSION = YES; 392 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 393 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 394 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 395 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 396 | CLANG_WARN_STRICT_PROTOTYPES = YES; 397 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 398 | CLANG_WARN_UNREACHABLE_CODE = YES; 399 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 400 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 401 | COPY_PHASE_STRIP = NO; 402 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 403 | ENABLE_NS_ASSERTIONS = NO; 404 | ENABLE_STRICT_OBJC_MSGSEND = YES; 405 | GCC_C_LANGUAGE_STANDARD = gnu99; 406 | GCC_NO_COMMON_BLOCKS = YES; 407 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 408 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 409 | GCC_WARN_UNDECLARED_SELECTOR = YES; 410 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 411 | GCC_WARN_UNUSED_FUNCTION = YES; 412 | GCC_WARN_UNUSED_VARIABLE = YES; 413 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 414 | MTL_ENABLE_DEBUG_INFO = NO; 415 | SDKROOT = iphoneos; 416 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 417 | TARGETED_DEVICE_FAMILY = "1,2"; 418 | VALIDATE_PRODUCT = YES; 419 | }; 420 | name = Release; 421 | }; 422 | 97C147061CF9000F007C117D /* Debug */ = { 423 | isa = XCBuildConfiguration; 424 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 425 | buildSettings = { 426 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 427 | CLANG_ENABLE_MODULES = YES; 428 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 429 | DEVELOPMENT_TEAM = 3DDPAAW5W3; 430 | ENABLE_BITCODE = NO; 431 | FRAMEWORK_SEARCH_PATHS = ( 432 | "$(inherited)", 433 | "$(PROJECT_DIR)/Flutter", 434 | ); 435 | INFOPLIST_FILE = Runner/Info.plist; 436 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 437 | LIBRARY_SEARCH_PATHS = ( 438 | "$(inherited)", 439 | "$(PROJECT_DIR)/Flutter", 440 | ); 441 | PRODUCT_BUNDLE_IDENTIFIER = dev.jideguru.flutterTravelConcept; 442 | PRODUCT_NAME = "$(TARGET_NAME)"; 443 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 444 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 445 | SWIFT_SWIFT3_OBJC_INFERENCE = On; 446 | SWIFT_VERSION = 4.0; 447 | VERSIONING_SYSTEM = "apple-generic"; 448 | }; 449 | name = Debug; 450 | }; 451 | 97C147071CF9000F007C117D /* Release */ = { 452 | isa = XCBuildConfiguration; 453 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 454 | buildSettings = { 455 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 456 | CLANG_ENABLE_MODULES = YES; 457 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 458 | DEVELOPMENT_TEAM = 3DDPAAW5W3; 459 | ENABLE_BITCODE = NO; 460 | FRAMEWORK_SEARCH_PATHS = ( 461 | "$(inherited)", 462 | "$(PROJECT_DIR)/Flutter", 463 | ); 464 | INFOPLIST_FILE = Runner/Info.plist; 465 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 466 | LIBRARY_SEARCH_PATHS = ( 467 | "$(inherited)", 468 | "$(PROJECT_DIR)/Flutter", 469 | ); 470 | PRODUCT_BUNDLE_IDENTIFIER = dev.jideguru.flutterTravelConcept; 471 | PRODUCT_NAME = "$(TARGET_NAME)"; 472 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 473 | SWIFT_SWIFT3_OBJC_INFERENCE = On; 474 | SWIFT_VERSION = 4.0; 475 | VERSIONING_SYSTEM = "apple-generic"; 476 | }; 477 | name = Release; 478 | }; 479 | /* End XCBuildConfiguration section */ 480 | 481 | /* Begin XCConfigurationList section */ 482 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 483 | isa = XCConfigurationList; 484 | buildConfigurations = ( 485 | 97C147031CF9000F007C117D /* Debug */, 486 | 97C147041CF9000F007C117D /* Release */, 487 | 249021D3217E4FDB00AE95B9 /* Profile */, 488 | ); 489 | defaultConfigurationIsVisible = 0; 490 | defaultConfigurationName = Release; 491 | }; 492 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 493 | isa = XCConfigurationList; 494 | buildConfigurations = ( 495 | 97C147061CF9000F007C117D /* Debug */, 496 | 97C147071CF9000F007C117D /* Release */, 497 | 249021D4217E4FDB00AE95B9 /* Profile */, 498 | ); 499 | defaultConfigurationIsVisible = 0; 500 | defaultConfigurationName = Release; 501 | }; 502 | /* End XCConfigurationList section */ 503 | }; 504 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 505 | } 506 | -------------------------------------------------------------------------------- /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.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-60x60@2x.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "60x60", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-60x60@3x.png", 55 | "scale" : "3x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-App-20x20@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "20x20", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-App-20x20@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-29x29@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-29x29@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-40x40@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "40x40", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-40x40@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-76x76@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "76x76", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-76x76@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "83.5x83.5", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-App-83.5x83.5@2x.png", 109 | "scale" : "2x" 110 | }, 111 | { 112 | "size" : "1024x1024", 113 | "idiom" : "ios-marketing", 114 | "filename" : "Icon-App-1024x1024@1x.png", 115 | "scale" : "1x" 116 | } 117 | ], 118 | "info" : { 119 | "version" : 1, 120 | "author" : "xcode" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/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 | flutter_travel_concept 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | $(FLUTTER_BUILD_NAME) 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UISupportedInterfaceOrientations 30 | 31 | UIInterfaceOrientationPortrait 32 | UIInterfaceOrientationLandscapeLeft 33 | UIInterfaceOrientationLandscapeRight 34 | 35 | UISupportedInterfaceOrientations~ipad 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationPortraitUpsideDown 39 | UIInterfaceOrientationLandscapeLeft 40 | UIInterfaceOrientationLandscapeRight 41 | 42 | UIViewControllerBasedStatusBarAppearance 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_travel_concept/screens/main_screen.dart'; 3 | import 'package:flutter_travel_concept/util/const.dart'; 4 | 5 | void main() async { 6 | runApp(MyApp()); 7 | } 8 | 9 | class MyApp extends StatefulWidget { 10 | @override 11 | _MyAppState createState() => _MyAppState(); 12 | } 13 | 14 | class _MyAppState extends State { 15 | @override 16 | Widget build(BuildContext context) { 17 | return MaterialApp( 18 | debugShowCheckedModeBanner: false, 19 | title: Constants.appName, 20 | theme: Constants.lightTheme, 21 | darkTheme: Constants.darkTheme, 22 | home: MainScreen(), 23 | ); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lib/screens/details.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_travel_concept/util/places.dart'; 3 | import 'package:flutter_travel_concept/widgets/icon_badge.dart'; 4 | 5 | class Details extends StatelessWidget { 6 | @override 7 | Widget build(BuildContext context) { 8 | return Scaffold( 9 | appBar: AppBar( 10 | leading: IconButton( 11 | icon: Icon( 12 | Icons.arrow_back, 13 | ), 14 | onPressed: () => Navigator.pop(context), 15 | ), 16 | actions: [ 17 | IconButton( 18 | icon: IconBadge( 19 | icon: Icons.notifications_none, 20 | ), 21 | onPressed: () {}, 22 | ), 23 | ], 24 | ), 25 | body: ListView( 26 | children: [ 27 | SizedBox(height: 10.0), 28 | buildSlider(), 29 | SizedBox(height: 20), 30 | ListView( 31 | padding: EdgeInsets.symmetric(horizontal: 20), 32 | primary: false, 33 | physics: NeverScrollableScrollPhysics(), 34 | shrinkWrap: true, 35 | children: [ 36 | Row( 37 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 38 | children: [ 39 | Container( 40 | alignment: Alignment.centerLeft, 41 | child: Text( 42 | "${places[0]["name"]}", 43 | style: TextStyle( 44 | fontWeight: FontWeight.w700, 45 | fontSize: 20, 46 | ), 47 | maxLines: 2, 48 | textAlign: TextAlign.left, 49 | ), 50 | ), 51 | IconButton( 52 | icon: Icon( 53 | Icons.bookmark, 54 | ), 55 | onPressed: () {}, 56 | ), 57 | ], 58 | ), 59 | Row( 60 | children: [ 61 | Icon( 62 | Icons.location_on, 63 | size: 14, 64 | color: Colors.blueGrey[300], 65 | ), 66 | SizedBox(width: 3), 67 | Container( 68 | alignment: Alignment.centerLeft, 69 | child: Text( 70 | "${places[0]["location"]}", 71 | style: TextStyle( 72 | fontWeight: FontWeight.bold, 73 | fontSize: 13, 74 | color: Colors.blueGrey[300], 75 | ), 76 | maxLines: 1, 77 | textAlign: TextAlign.left, 78 | ), 79 | ), 80 | ], 81 | ), 82 | SizedBox(height: 20), 83 | Container( 84 | alignment: Alignment.centerLeft, 85 | child: Text( 86 | "${places[0]["price"]}", 87 | style: TextStyle( 88 | fontWeight: FontWeight.bold, 89 | fontSize: 17, 90 | ), 91 | maxLines: 1, 92 | textAlign: TextAlign.left, 93 | ), 94 | ), 95 | SizedBox(height: 40), 96 | Container( 97 | alignment: Alignment.centerLeft, 98 | child: Text( 99 | "Details", 100 | style: TextStyle( 101 | fontWeight: FontWeight.bold, 102 | fontSize: 16, 103 | ), 104 | maxLines: 1, 105 | textAlign: TextAlign.left, 106 | ), 107 | ), 108 | SizedBox(height: 10.0), 109 | Container( 110 | alignment: Alignment.centerLeft, 111 | child: Text( 112 | "${places[0]["details"]}", 113 | style: TextStyle( 114 | fontWeight: FontWeight.normal, 115 | fontSize: 15.0, 116 | ), 117 | textAlign: TextAlign.left, 118 | ), 119 | ), 120 | SizedBox(height: 10.0), 121 | ], 122 | ), 123 | ], 124 | ), 125 | floatingActionButton: FloatingActionButton( 126 | child: Icon( 127 | Icons.airplanemode_active, 128 | ), 129 | onPressed: () {}, 130 | ), 131 | ); 132 | } 133 | 134 | buildSlider() { 135 | return Container( 136 | padding: EdgeInsets.only(left: 20), 137 | height: 250.0, 138 | child: ListView.builder( 139 | scrollDirection: Axis.horizontal, 140 | primary: false, 141 | itemCount: places == null ? 0 : places.length, 142 | itemBuilder: (BuildContext context, int index) { 143 | Map place = places[index]; 144 | 145 | return Padding( 146 | padding: EdgeInsets.only(right: 10.0), 147 | child: ClipRRect( 148 | borderRadius: BorderRadius.circular(10.0), 149 | child: Image.asset( 150 | "${place["img"]}", 151 | height: 250.0, 152 | width: MediaQuery.of(context).size.width - 40.0, 153 | fit: BoxFit.cover, 154 | ), 155 | ), 156 | ); 157 | }, 158 | ), 159 | ); 160 | } 161 | } 162 | -------------------------------------------------------------------------------- /lib/screens/home.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_travel_concept/util/places.dart'; 3 | import 'package:flutter_travel_concept/widgets/horizontal_place_item.dart'; 4 | import 'package:flutter_travel_concept/widgets/icon_badge.dart'; 5 | import 'package:flutter_travel_concept/widgets/search_bar.dart'; 6 | import 'package:flutter_travel_concept/widgets/vertical_place_item.dart'; 7 | 8 | class Home extends StatelessWidget { 9 | @override 10 | Widget build(BuildContext context) { 11 | return Scaffold( 12 | appBar: AppBar( 13 | actions: [ 14 | IconButton( 15 | icon: IconBadge( 16 | icon: Icons.notifications_none, 17 | ), 18 | onPressed: () {}, 19 | ), 20 | ], 21 | ), 22 | body: ListView( 23 | children: [ 24 | Padding( 25 | padding: EdgeInsets.all(20.0), 26 | child: Text( 27 | "Where are you \ngoing?", 28 | style: TextStyle( 29 | fontSize: 30.0, 30 | fontWeight: FontWeight.w600, 31 | ), 32 | ), 33 | ), 34 | Padding( 35 | padding: EdgeInsets.all(20.0), 36 | child: SearchBar(), 37 | ), 38 | buildHorizontalList(context), 39 | buildVerticalList(), 40 | ], 41 | ), 42 | ); 43 | } 44 | 45 | buildHorizontalList(BuildContext context) { 46 | return Container( 47 | padding: EdgeInsets.only(top: 10.0, left: 20.0), 48 | height: 250.0, 49 | width: MediaQuery.of(context).size.width, 50 | child: ListView.builder( 51 | scrollDirection: Axis.horizontal, 52 | primary: false, 53 | itemCount: places == null ? 0.0 : places.length, 54 | itemBuilder: (BuildContext context, int index) { 55 | Map place = places.reversed.toList()[index]; 56 | return HorizontalPlaceItem(place: place); 57 | }, 58 | ), 59 | ); 60 | } 61 | 62 | buildVerticalList() { 63 | return Padding( 64 | padding: EdgeInsets.all(20.0), 65 | child: ListView.builder( 66 | primary: false, 67 | physics: NeverScrollableScrollPhysics(), 68 | shrinkWrap: true, 69 | itemCount: places == null ? 0 : places.length, 70 | itemBuilder: (BuildContext context, int index) { 71 | Map place = places[index]; 72 | return VerticalPlaceItem(place: place); 73 | }, 74 | ), 75 | ); 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /lib/screens/main_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_travel_concept/screens/home.dart'; 3 | import 'package:flutter_travel_concept/widgets/icon_badge.dart'; 4 | 5 | class MainScreen extends StatefulWidget { 6 | @override 7 | _MainScreenState createState() => _MainScreenState(); 8 | } 9 | 10 | class _MainScreenState extends State { 11 | PageController _pageController; 12 | int _page = 0; 13 | 14 | @override 15 | Widget build(BuildContext context) { 16 | return Scaffold( 17 | body: PageView( 18 | physics: NeverScrollableScrollPhysics(), 19 | controller: _pageController, 20 | onPageChanged: onPageChanged, 21 | children: List.generate(4, (index) => Home()), 22 | ), 23 | bottomNavigationBar: BottomAppBar( 24 | child: Row( 25 | mainAxisSize: MainAxisSize.max, 26 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 27 | children: [ 28 | SizedBox(width: 7.0), 29 | barIcon(icon: Icons.home, page: 0), 30 | barIcon(icon: Icons.favorite, page: 1), 31 | barIcon(icon: Icons.mode_comment, page: 2, badge: true), 32 | barIcon(icon: Icons.person, page: 3), 33 | SizedBox(width: 7.0), 34 | ], 35 | ), 36 | color: Theme.of(context).primaryColor, 37 | ), 38 | ); 39 | } 40 | 41 | void navigationTapped(int page) { 42 | _pageController.jumpToPage(page); 43 | } 44 | 45 | @override 46 | void initState() { 47 | super.initState(); 48 | _pageController = PageController(); 49 | } 50 | 51 | @override 52 | void dispose() { 53 | super.dispose(); 54 | _pageController.dispose(); 55 | } 56 | 57 | void onPageChanged(int page) { 58 | setState(() { 59 | this._page = page; 60 | }); 61 | } 62 | 63 | Widget barIcon( 64 | {IconData icon = Icons.home, int page = 0, bool badge = false}) { 65 | return IconButton( 66 | icon: badge ? IconBadge(icon: icon, size: 24.0) : Icon(icon, size: 24.0), 67 | color: 68 | _page == page ? Theme.of(context).accentColor : Colors.blueGrey[300], 69 | onPressed: () => _pageController.jumpToPage(page), 70 | ); 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /lib/util/const.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class Constants { 4 | static String appName = "Flutter Travel"; 5 | 6 | //Colors for theme 7 | static Color lightPrimary = Color(0xfffcfcff); 8 | static Color darkPrimary = Colors.black; 9 | static Color lightAccent = Colors.blueGrey[900]; 10 | static Color darkAccent = Colors.white; 11 | static Color lightBG = Color(0xfffcfcff); 12 | static Color darkBG = Colors.black; 13 | static Color badgeColor = Colors.red; 14 | 15 | static ThemeData lightTheme = ThemeData( 16 | backgroundColor: lightBG, 17 | primaryColor: lightPrimary, 18 | accentColor: lightAccent, 19 | cursorColor: lightAccent, 20 | scaffoldBackgroundColor: lightBG, 21 | appBarTheme: AppBarTheme( 22 | elevation: 0, 23 | textTheme: TextTheme( 24 | headline6: TextStyle( 25 | color: darkBG, 26 | fontSize: 18.0, 27 | fontWeight: FontWeight.w800, 28 | ), 29 | ), 30 | ), 31 | ); 32 | 33 | static ThemeData darkTheme = ThemeData( 34 | brightness: Brightness.dark, 35 | backgroundColor: darkBG, 36 | primaryColor: darkPrimary, 37 | accentColor: darkAccent, 38 | scaffoldBackgroundColor: darkBG, 39 | cursorColor: darkAccent, 40 | appBarTheme: AppBarTheme( 41 | elevation: 0, 42 | textTheme: TextTheme( 43 | headline6: TextStyle( 44 | color: lightBG, 45 | fontSize: 18.0, 46 | fontWeight: FontWeight.w800, 47 | ), 48 | ), 49 | ), 50 | ); 51 | } 52 | -------------------------------------------------------------------------------- /lib/util/places.dart: -------------------------------------------------------------------------------- 1 | List places = [ 2 | { 3 | "name": "Hotel Dolah Amet & Suites", 4 | "img": "assets/1.jpeg", 5 | "price": r"$100/night", 6 | "location": "London, England", 7 | "details": "Pellentesque in ipsum id orci porta dapibus. " 8 | "Nulla porttitor accumsan tincidunt. Donec rutrum " 9 | "congue leo eget malesuada. " 10 | "\n\nPraesent sapien massa, convallis a pellentesque " 11 | "nec, egestas non nisi. Donec rutrum congue leo eget malesuada. " 12 | "Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. " 13 | "Sed porttitor lectus nibh. Donec sollicitudin molestie malesuada. " 14 | "\nCurabitur arcu erat, accumsan id imperdiet et, porttitor at sem. " 15 | "Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", 16 | }, 17 | { 18 | "name": "Beach Mauris Blandit", 19 | "img": "assets/2.jpeg", 20 | "price": r"$100/night", 21 | "location": "Lisbon, Portugal", 22 | "details": "Pellentesque in ipsum id orci porta dapibus. " 23 | "Nulla porttitor accumsan tincidunt. Donec rutrum " 24 | "congue leo eget malesuada. " 25 | "\nPraesent sapien massa, convallis a pellentesque " 26 | "nec, egestas non nisi. Donec rutrum congue leo eget malesuada. " 27 | "Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. " 28 | "Sed porttitor lectus nibh. Donec sollicitudin molestie malesuada. " 29 | "\nCurabitur arcu erat, accumsan id imperdiet et, porttitor at sem. " 30 | "Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", 31 | }, 32 | { 33 | "name": "Ipsum Restaurant", 34 | "img": "assets/3.jpeg", 35 | "price": r"$100/night", 36 | "location": "Paris, France", 37 | "details": "Pellentesque in ipsum id orci porta dapibus. " 38 | "Nulla porttitor accumsan tincidunt. Donec rutrum " 39 | "congue leo eget malesuada. " 40 | "\n\nPraesent sapien massa, convallis a pellentesque " 41 | "nec, egestas non nisi. Donec rutrum congue leo eget malesuada. " 42 | "Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. " 43 | "Sed porttitor lectus nibh. Donec sollicitudin molestie malesuada. " 44 | "\nCurabitur arcu erat, accumsan id imperdiet et, porttitor at sem. " 45 | "Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", 46 | }, 47 | { 48 | "name": "Curabitur Beach", 49 | "img": "assets/4.jpeg", 50 | "price": r"$100/night", 51 | "location": "Rome, Italy", 52 | "details": "Pellentesque in ipsum id orci porta dapibus. " 53 | "Nulla porttitor accumsan tincidunt. Donec rutrum " 54 | "congue leo eget malesuada. " 55 | "\nPraesent sapien massa, convallis a pellentesque " 56 | "nec, egestas non nisi. Donec rutrum congue leo eget malesuada. " 57 | "Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. " 58 | "Sed porttitor lectus nibh. Donec sollicitudin molestie malesuada. " 59 | "\nCurabitur arcu erat, accumsan id imperdiet et, porttitor at sem. " 60 | "Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", 61 | }, 62 | { 63 | "name": "Tincidunt Pool", 64 | "img": "assets/5.jpeg", 65 | "price": r"$100/night", 66 | "location": "Madrid, Spain", 67 | "details": "Pellentesque in ipsum id orci porta dapibus. " 68 | "Nulla porttitor accumsan tincidunt. Donec rutrum " 69 | "congue leo eget malesuada. " 70 | "\nPraesent sapien massa, convallis a pellentesque " 71 | "nec, egestas non nisi. Donec rutrum congue leo eget malesuada. " 72 | "Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. " 73 | "Sed porttitor lectus nibh. Donec sollicitudin molestie malesuada. " 74 | "\nCurabitur arcu erat, accumsan id imperdiet et, porttitor at sem. " 75 | "Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui.", 76 | }, 77 | ]; -------------------------------------------------------------------------------- /lib/widgets/horizontal_place_item.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | import '../screens/details.dart'; 4 | 5 | class HorizontalPlaceItem extends StatelessWidget { 6 | final Map place; 7 | 8 | HorizontalPlaceItem({this.place}); 9 | 10 | @override 11 | Widget build(BuildContext context) { 12 | return Padding( 13 | padding: const EdgeInsets.only(right: 20.0), 14 | child: InkWell( 15 | child: Container( 16 | height: 250.0, 17 | width: 140.0, 18 | child: Column( 19 | children: [ 20 | ClipRRect( 21 | borderRadius: BorderRadius.circular(10), 22 | child: Image.asset( 23 | "${place["img"]}", 24 | height: 178.0, 25 | width: 140.0, 26 | fit: BoxFit.cover, 27 | ), 28 | ), 29 | SizedBox(height: 7.0), 30 | Container( 31 | alignment: Alignment.centerLeft, 32 | child: Text( 33 | "${place["name"]}", 34 | style: TextStyle( 35 | fontWeight: FontWeight.bold, 36 | fontSize: 15.0, 37 | ), 38 | maxLines: 2, 39 | textAlign: TextAlign.left, 40 | ), 41 | ), 42 | SizedBox(height: 3.0), 43 | Container( 44 | alignment: Alignment.centerLeft, 45 | child: Text( 46 | "${place["location"]}", 47 | style: TextStyle( 48 | fontWeight: FontWeight.bold, 49 | fontSize: 13.0, 50 | color: Colors.blueGrey[300], 51 | ), 52 | maxLines: 1, 53 | textAlign: TextAlign.left, 54 | ), 55 | ), 56 | ], 57 | ), 58 | ), 59 | onTap: () { 60 | Navigator.of(context).push( 61 | MaterialPageRoute( 62 | builder: (BuildContext context) { 63 | return Details(); 64 | }, 65 | ), 66 | ); 67 | }, 68 | ), 69 | ); 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /lib/widgets/icon_badge.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class IconBadge extends StatefulWidget { 4 | final IconData icon; 5 | final double size; 6 | final Color color; 7 | 8 | IconBadge({Key key, @required this.icon, this.size, this.color}) 9 | : super(key: key); 10 | 11 | @override 12 | _IconBadgeState createState() => _IconBadgeState(); 13 | } 14 | 15 | class _IconBadgeState extends State { 16 | int counter = 0; 17 | 18 | @override 19 | void initState() { 20 | super.initState(); 21 | } 22 | 23 | @override 24 | Widget build(BuildContext context) { 25 | return Stack( 26 | children: [ 27 | Icon( 28 | widget.icon, 29 | size: widget.size, 30 | color: widget.color ?? null, 31 | ), 32 | Positioned( 33 | right: 0.0, 34 | top: 0.0, 35 | child: Container( 36 | padding: EdgeInsets.all(1), 37 | decoration: BoxDecoration( 38 | color: Theme.of(context).primaryColor, 39 | borderRadius: BorderRadius.circular(6), 40 | ), 41 | height: 12.0, 42 | width: 12.0, 43 | child: Container( 44 | padding: EdgeInsets.all(1), 45 | decoration: BoxDecoration( 46 | color: Colors.red[300], 47 | borderRadius: BorderRadius.circular(6), 48 | ), 49 | height: 7.0, 50 | width: 7.0, 51 | ), 52 | ), 53 | ), 54 | ], 55 | ); 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /lib/widgets/search_bar.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class SearchBar extends StatelessWidget { 4 | final TextEditingController _searchControl = new TextEditingController(); 5 | 6 | @override 7 | Widget build(BuildContext context) { 8 | return Container( 9 | decoration: BoxDecoration( 10 | color: Colors.blueGrey[50], 11 | borderRadius: BorderRadius.all( 12 | Radius.circular(5.0), 13 | ), 14 | ), 15 | child: TextField( 16 | style: TextStyle( 17 | fontSize: 15.0, 18 | color: Colors.blueGrey[300], 19 | ), 20 | decoration: InputDecoration( 21 | contentPadding: EdgeInsets.all(10.0), 22 | border: OutlineInputBorder( 23 | borderRadius: BorderRadius.circular(5.0), 24 | borderSide: BorderSide( 25 | color: Colors.white, 26 | ), 27 | ), 28 | enabledBorder: OutlineInputBorder( 29 | borderSide: BorderSide( 30 | color: Colors.white, 31 | ), 32 | borderRadius: BorderRadius.circular(5.0), 33 | ), 34 | hintText: "E.g: New York, United States", 35 | prefixIcon: Icon( 36 | Icons.location_on, 37 | color: Colors.blueGrey[300], 38 | ), 39 | hintStyle: TextStyle( 40 | fontSize: 15.0, 41 | color: Colors.blueGrey[300], 42 | ), 43 | ), 44 | maxLines: 1, 45 | controller: _searchControl, 46 | ), 47 | ); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /lib/widgets/vertical_place_item.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | import '../screens/details.dart'; 4 | 5 | class VerticalPlaceItem extends StatelessWidget { 6 | final Map place; 7 | 8 | VerticalPlaceItem({this.place}); 9 | 10 | @override 11 | Widget build(BuildContext context) { 12 | return Padding( 13 | padding: const EdgeInsets.only(bottom: 15.0), 14 | child: InkWell( 15 | child: Container( 16 | height: 70.0, 17 | child: Row( 18 | children: [ 19 | ClipRRect( 20 | borderRadius: BorderRadius.circular(5), 21 | child: Image.asset( 22 | "${place["img"]}", 23 | height: 70.0, 24 | width: 70.0, 25 | fit: BoxFit.cover, 26 | ), 27 | ), 28 | SizedBox(width: 15.0), 29 | Container( 30 | height: 80.0, 31 | width: MediaQuery.of(context).size.width - 130.0, 32 | child: ListView( 33 | primary: false, 34 | physics: NeverScrollableScrollPhysics(), 35 | shrinkWrap: true, 36 | children: [ 37 | Container( 38 | alignment: Alignment.centerLeft, 39 | child: Text( 40 | "${place["name"]}", 41 | style: TextStyle( 42 | fontWeight: FontWeight.w700, 43 | fontSize: 14.0, 44 | ), 45 | maxLines: 2, 46 | textAlign: TextAlign.left, 47 | ), 48 | ), 49 | SizedBox(height: 3.0), 50 | Row( 51 | children: [ 52 | Icon( 53 | Icons.location_on, 54 | size: 13.0, 55 | color: Colors.blueGrey[300], 56 | ), 57 | SizedBox(width: 3.0), 58 | Container( 59 | alignment: Alignment.centerLeft, 60 | child: Text( 61 | "${place["location"]}", 62 | style: TextStyle( 63 | fontWeight: FontWeight.bold, 64 | fontSize: 13.0, 65 | color: Colors.blueGrey[300], 66 | ), 67 | maxLines: 1, 68 | textAlign: TextAlign.left, 69 | ), 70 | ), 71 | ], 72 | ), 73 | SizedBox(height: 10.0), 74 | Container( 75 | alignment: Alignment.centerLeft, 76 | child: Text( 77 | "${place["price"]}", 78 | style: TextStyle( 79 | fontWeight: FontWeight.bold, 80 | fontSize: 16.0, 81 | ), 82 | maxLines: 1, 83 | textAlign: TextAlign.left, 84 | ), 85 | ), 86 | ], 87 | ), 88 | ), 89 | ], 90 | ), 91 | ), 92 | onTap: () { 93 | Navigator.of(context).push( 94 | MaterialPageRoute( 95 | builder: (BuildContext context) { 96 | return Details(); 97 | }, 98 | ), 99 | ); 100 | }, 101 | ), 102 | ); 103 | } 104 | } 105 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | archive: 5 | dependency: transitive 6 | description: 7 | name: archive 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "2.0.13" 11 | args: 12 | dependency: transitive 13 | description: 14 | name: args 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "1.6.0" 18 | async: 19 | dependency: transitive 20 | description: 21 | name: async 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "2.4.1" 25 | boolean_selector: 26 | dependency: transitive 27 | description: 28 | name: boolean_selector 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "2.0.0" 32 | charcode: 33 | dependency: transitive 34 | description: 35 | name: charcode 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.1.3" 39 | collection: 40 | dependency: transitive 41 | description: 42 | name: collection 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.14.12" 46 | convert: 47 | dependency: transitive 48 | description: 49 | name: convert 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "2.1.1" 53 | crypto: 54 | dependency: transitive 55 | description: 56 | name: crypto 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "2.1.4" 60 | cupertino_icons: 61 | dependency: "direct main" 62 | description: 63 | name: cupertino_icons 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "0.1.2" 67 | flutter: 68 | dependency: "direct main" 69 | description: flutter 70 | source: sdk 71 | version: "0.0.0" 72 | flutter_test: 73 | dependency: "direct dev" 74 | description: flutter 75 | source: sdk 76 | version: "0.0.0" 77 | image: 78 | dependency: transitive 79 | description: 80 | name: image 81 | url: "https://pub.dartlang.org" 82 | source: hosted 83 | version: "2.1.12" 84 | matcher: 85 | dependency: transitive 86 | description: 87 | name: matcher 88 | url: "https://pub.dartlang.org" 89 | source: hosted 90 | version: "0.12.6" 91 | meta: 92 | dependency: transitive 93 | description: 94 | name: meta 95 | url: "https://pub.dartlang.org" 96 | source: hosted 97 | version: "1.1.8" 98 | path: 99 | dependency: transitive 100 | description: 101 | name: path 102 | url: "https://pub.dartlang.org" 103 | source: hosted 104 | version: "1.6.4" 105 | petitparser: 106 | dependency: transitive 107 | description: 108 | name: petitparser 109 | url: "https://pub.dartlang.org" 110 | source: hosted 111 | version: "2.4.0" 112 | quiver: 113 | dependency: transitive 114 | description: 115 | name: quiver 116 | url: "https://pub.dartlang.org" 117 | source: hosted 118 | version: "2.1.3" 119 | sky_engine: 120 | dependency: transitive 121 | description: flutter 122 | source: sdk 123 | version: "0.0.99" 124 | source_span: 125 | dependency: transitive 126 | description: 127 | name: source_span 128 | url: "https://pub.dartlang.org" 129 | source: hosted 130 | version: "1.7.0" 131 | stack_trace: 132 | dependency: transitive 133 | description: 134 | name: stack_trace 135 | url: "https://pub.dartlang.org" 136 | source: hosted 137 | version: "1.9.3" 138 | stream_channel: 139 | dependency: transitive 140 | description: 141 | name: stream_channel 142 | url: "https://pub.dartlang.org" 143 | source: hosted 144 | version: "2.0.0" 145 | string_scanner: 146 | dependency: transitive 147 | description: 148 | name: string_scanner 149 | url: "https://pub.dartlang.org" 150 | source: hosted 151 | version: "1.0.5" 152 | term_glyph: 153 | dependency: transitive 154 | description: 155 | name: term_glyph 156 | url: "https://pub.dartlang.org" 157 | source: hosted 158 | version: "1.1.0" 159 | test_api: 160 | dependency: transitive 161 | description: 162 | name: test_api 163 | url: "https://pub.dartlang.org" 164 | source: hosted 165 | version: "0.2.15" 166 | typed_data: 167 | dependency: transitive 168 | description: 169 | name: typed_data 170 | url: "https://pub.dartlang.org" 171 | source: hosted 172 | version: "1.1.6" 173 | vector_math: 174 | dependency: transitive 175 | description: 176 | name: vector_math 177 | url: "https://pub.dartlang.org" 178 | source: hosted 179 | version: "2.0.8" 180 | xml: 181 | dependency: transitive 182 | description: 183 | name: xml 184 | url: "https://pub.dartlang.org" 185 | source: hosted 186 | version: "3.6.1" 187 | sdks: 188 | dart: ">=2.6.0 <3.0.0" 189 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: flutter_travel_concept 2 | description: A UI concept for travel app 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 | cupertino_icons: ^0.1.2 23 | 24 | dev_dependencies: 25 | flutter_test: 26 | sdk: flutter 27 | 28 | # For information on the generic Dart part of this file, see the 29 | # following page: https://www.dartlang.org/tools/pub/pubspec 30 | 31 | # The following section is specific to Flutter. 32 | flutter: 33 | # The following line ensures that the Material Icons font is 34 | # included with your application, so that you can use the icons in 35 | # the material Icons class. 36 | uses-material-design: true 37 | 38 | # To add assets to your application, add an assets section, like this: 39 | assets: 40 | - assets/ 41 | # An image asset can refer to one or more resolution-specific "variants", see 42 | # https://flutter.dev/assets-and-images/#resolution-aware. 43 | # For details regarding adding assets from package dependencies, see 44 | # https://flutter.dev/assets-and-images/#from-packages 45 | # To add custom fonts to your application, add a fonts section here, 46 | # in this "flutter" section. Each entry in this list should have a 47 | # "family" key with the font family name, and a "fonts" key with a 48 | # list giving the asset and other descriptors for the font. For 49 | # example: 50 | # fonts: 51 | # - family: Schyler 52 | # fonts: 53 | # - asset: fonts/Schyler-Regular.ttf 54 | # - asset: fonts/Schyler-Italic.ttf 55 | # style: italic 56 | # - family: Trajan Pro 57 | # fonts: 58 | # - asset: fonts/TrajanPro.ttf 59 | # - asset: fonts/TrajanPro_Bold.ttf 60 | # weight: 700 61 | # 62 | # For details regarding fonts from package dependencies, 63 | # see https://flutter.dev/custom-fonts/#from-packages 64 | -------------------------------------------------------------------------------- /ss/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/ss/1.png -------------------------------------------------------------------------------- /ss/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/ss/2.png -------------------------------------------------------------------------------- /ss/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/ss/3.png -------------------------------------------------------------------------------- /ss/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/ss/4.png -------------------------------------------------------------------------------- /ss/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JideGuru/FlutterTravel/7724ebb59e7b7be769d9379b1de93a1c94f590b0/ss/5.png --------------------------------------------------------------------------------