├── ios ├── Runner │ ├── Runner-Bridging-Header.h │ ├── Assets.xcassets │ │ ├── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ ├── README.md │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ ├── 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-1024x1024@1x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── Contents.json │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.storyboard │ └── Info.plist ├── Flutter │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── AppFrameworkInfo.plist ├── Runner.xcodeproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── IDEWorkspaceChecks.plist │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ └── project.pbxproj ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── WorkspaceSettings.xcsettings │ │ └── IDEWorkspaceChecks.plist ├── Podfile.lock ├── .gitignore └── Podfile ├── .vscode └── settings.json ├── assets └── images │ ├── house.png │ ├── villa.png │ └── building.png ├── android ├── gradle.properties ├── app │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── 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 │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── values │ │ │ │ │ └── styles.xml │ │ │ │ └── values-night │ │ │ │ │ └── styles.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── real_estate │ │ │ │ │ └── MainActivity.kt │ │ │ └── AndroidManifest.xml │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ └── profile │ │ │ └── AndroidManifest.xml │ └── build.gradle ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── .gitignore ├── settings.gradle └── build.gradle ├── .metadata ├── lib ├── main.dart ├── theme │ └── color.dart ├── widgets │ ├── icon_box.dart │ ├── custom_image.dart │ ├── custom_textbox.dart │ ├── bottombar_item.dart │ ├── category_item.dart │ ├── company_item.dart │ ├── recent_item.dart │ ├── recommend_item.dart │ ├── broker_item.dart │ └── property_item.dart ├── pages │ ├── root.dart │ ├── explore.dart │ └── home.dart └── utils │ └── data.dart ├── pubspec.yaml ├── .gitignore ├── test └── widget_test.dart ├── README.md └── pubspec.lock /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dart.flutterSdkPath": "/Users/sangvaleapvanny/fvm/versions/stable" 3 | } -------------------------------------------------------------------------------- /assets/images/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/assets/images/house.png -------------------------------------------------------------------------------- /assets/images/villa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/assets/images/villa.png -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /assets/images/building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/assets/images/building.png -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renealexander616/flutter-real-estate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/real_estate/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.real_estate 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip 7 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.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: d79295af24c3ed621c33713ecda14ad196fd9c31 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /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/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") 4 | def properties = new Properties() 5 | 6 | assert localPropertiesFile.exists() 7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } 8 | 9 | def flutterSdkPath = properties.getProperty("flutter.sdk") 10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" 12 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'pages/root.dart'; 3 | import 'theme/color.dart'; 4 | 5 | void main() { 6 | runApp(MyApp()); 7 | } 8 | 9 | class MyApp extends StatelessWidget { 10 | @override 11 | Widget build(BuildContext context) { 12 | return MaterialApp( 13 | debugShowCheckedModeBanner: false, 14 | title: 'Real Estate App', 15 | theme: ThemeData( 16 | primaryColor: AppColor.primary, 17 | ), 18 | home: const RootApp(), 19 | ); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: real_estate 2 | description: A new Flutter project. 3 | 4 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev 5 | 6 | version: 1.0.0+1 7 | 8 | environment: 9 | sdk: ">=2.12.0 <3.0.0" 10 | 11 | dependencies: 12 | flutter: 13 | sdk: flutter 14 | 15 | cupertino_icons: ^1.0.2 16 | google_fonts: ^2.1.1 17 | font_awesome_flutter: ^9.2.0 18 | carousel_slider: ^4.0.0 19 | 20 | 21 | dev_dependencies: 22 | flutter_test: 23 | sdk: flutter 24 | 25 | flutter: 26 | uses-material-design: true 27 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Flutter (1.0.0) 3 | - path_provider (0.0.1): 4 | - Flutter 5 | 6 | DEPENDENCIES: 7 | - Flutter (from `Flutter`) 8 | - path_provider (from `.symlinks/plugins/path_provider/ios`) 9 | 10 | EXTERNAL SOURCES: 11 | Flutter: 12 | :path: Flutter 13 | path_provider: 14 | :path: ".symlinks/plugins/path_provider/ios" 15 | 16 | SPEC CHECKSUMS: 17 | Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c 18 | path_provider: abfe2b5c733d04e238b0d8691db0cfd63a27a93c 19 | 20 | PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c 21 | 22 | COCOAPODS: 1.10.1 23 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.3.50' 3 | repositories { 4 | google() 5 | jcenter() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:4.1.0' 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | } 12 | } 13 | 14 | allprojects { 15 | repositories { 16 | google() 17 | jcenter() 18 | } 19 | } 20 | 21 | rootProject.buildDir = '../build' 22 | subprojects { 23 | project.buildDir = "${rootProject.buildDir}/${project.name}" 24 | project.evaluationDependsOn(':app') 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | *.mode1v3 2 | *.mode2v3 3 | *.moved-aside 4 | *.pbxuser 5 | *.perspectivev3 6 | **/*sync/ 7 | .sconsign.dblite 8 | .tags* 9 | **/.vagrant/ 10 | **/DerivedData/ 11 | Icon? 12 | **/Pods/ 13 | **/.symlinks/ 14 | profile 15 | xcuserdata 16 | **/.generated/ 17 | Flutter/App.framework 18 | Flutter/Flutter.framework 19 | Flutter/Flutter.podspec 20 | Flutter/Generated.xcconfig 21 | Flutter/ephemeral/ 22 | Flutter/app.flx 23 | Flutter/app.zip 24 | Flutter/flutter_assets/ 25 | Flutter/flutter_export_environment.sh 26 | ServiceDefinitions.json 27 | Runner/GeneratedPluginRegistrant.* 28 | 29 | # Exceptions to above rules. 30 | !default.mode1v3 31 | !default.mode2v3 32 | !default.pbxuser 33 | !default.perspectivev3 34 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 8.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ 17 | 18 | # The .vscode folder contains launch configuration and tasks you configure in 19 | # VS Code which you may wish to be included in version control, so this line 20 | # is commented out by default. 21 | #.vscode/ 22 | 23 | # Flutter/Dart/Pub related 24 | **/doc/api/ 25 | **/ios/Flutter/.last_build_id 26 | .dart_tool/ 27 | .flutter-plugins 28 | .flutter-plugins-dependencies 29 | .packages 30 | .pub-cache/ 31 | .pub/ 32 | /build/ 33 | 34 | # Web related 35 | lib/generated_plugin_registrant.dart 36 | 37 | # Symbolication related 38 | app.*.symbols 39 | 40 | # Obfuscation related 41 | app.*.map.json 42 | 43 | # Android Studio will place build artifacts here 44 | /android/app/debug 45 | /android/app/profile 46 | /android/app/release 47 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /lib/theme/color.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class AppColor { 4 | static const primary = Color(0xFF3498db); 5 | static const secondary = Color(0xFF2ecc71); 6 | 7 | static const darker = Color(0xFF3E4249); 8 | static const cardColor = Colors.white; 9 | static const mainColor = Color(0xFF000000); 10 | static const appBgColor = Color(0xFFFAFAFA); 11 | static const shadowColor = Colors.black87; 12 | static const textBoxColor = Colors.white; 13 | 14 | static const bottomBarColor = Colors.white; 15 | static const inActiveColor = Colors.grey; 16 | 17 | static const yellow = Color(0xFFffcb66); 18 | static const green = Color(0xFFb2e1b5); 19 | static const pink = Color(0xFFf5bde8); 20 | static const purple = Color(0xFFd9bcff); 21 | static const red = Color(0xFFff4b60); 22 | static const orange = Color(0xFFFFC8A2); 23 | static const sky = Color(0xFFABDEE6); 24 | static const blue = Color(0xFF509BE4); 25 | 26 | static const listColors = [ 27 | green, 28 | purple, 29 | yellow, 30 | orange, 31 | sky, 32 | secondary, 33 | red, 34 | blue, 35 | pink, 36 | yellow, 37 | ]; 38 | } 39 | -------------------------------------------------------------------------------- /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:real_estate/main.dart'; 12 | 13 | void main() { 14 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 15 | // Build our app and trigger a frame. 16 | await tester.pumpWidget(MyApp()); 17 | 18 | // Verify that our counter starts at 0. 19 | expect(find.text('0'), findsOneWidget); 20 | expect(find.text('1'), findsNothing); 21 | 22 | // Tap the '+' icon and trigger a frame. 23 | await tester.tap(find.byIcon(Icons.add)); 24 | await tester.pump(); 25 | 26 | // Verify that our counter has incremented. 27 | expect(find.text('0'), findsNothing); 28 | expect(find.text('1'), findsOneWidget); 29 | }); 30 | } 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Real Estate App - Flutter 2 | 3 | 4 | Screen Shot 2022-01-05 at 6 43 05 PM 5 | Screen Shot 2022-01-05 at 6 43 24 PM 6 | Screen Shot 2022-01-05 at 6 43 45 PM 7 | Screen Shot 2022-01-05 at 6 44 48 PM 8 | Screen Shot 2022-01-05 at 6 45 16 PM 9 | Screen Shot 2022-01-05 at 6 44 06 PM 10 | Screen Shot 2022-01-05 at 6 44 22 PM 11 | -------------------------------------------------------------------------------- /lib/widgets/icon_box.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:real_estate/theme/color.dart'; 3 | 4 | class IconBox extends StatelessWidget { 5 | const IconBox({ 6 | Key? key, 7 | required this.child, 8 | this.bgColor, 9 | this.onTap, 10 | this.borderColor = Colors.transparent, 11 | this.radius = 50, 12 | }) : super(key: key); 13 | 14 | final Widget child; 15 | final Color borderColor; 16 | final Color? bgColor; 17 | final double radius; 18 | final GestureTapCallback? onTap; 19 | 20 | @override 21 | Widget build(BuildContext context) { 22 | return GestureDetector( 23 | onTap: onTap, 24 | child: Container( 25 | padding: EdgeInsets.all(5), 26 | decoration: BoxDecoration( 27 | color: bgColor, 28 | borderRadius: BorderRadius.circular(radius), 29 | border: Border.all(color: borderColor), 30 | boxShadow: [ 31 | BoxShadow( 32 | color: AppColor.shadowColor.withOpacity(0.1), 33 | spreadRadius: 1, 34 | blurRadius: 1, 35 | offset: Offset(0, 1), // changes position of shadow 36 | ), 37 | ], 38 | ), 39 | child: child, 40 | ), 41 | ); 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /lib/widgets/custom_image.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:real_estate/theme/color.dart'; 3 | 4 | class CustomImage extends StatelessWidget { 5 | const CustomImage( 6 | this.name, { 7 | this.width = 100, 8 | this.height = 100, 9 | this.bgColor, 10 | this.borderWidth = 0, 11 | this.borderColor, 12 | this.trBackground = false, 13 | this.isNetwork = true, 14 | this.radius = 50, 15 | }); 16 | 17 | final String name; 18 | final double width; 19 | final double height; 20 | final double borderWidth; 21 | final Color? borderColor; 22 | final Color? bgColor; 23 | final bool trBackground; 24 | final bool isNetwork; 25 | final double radius; 26 | 27 | @override 28 | Widget build(BuildContext context) { 29 | return Container( 30 | width: width, 31 | height: height, 32 | decoration: BoxDecoration( 33 | color: bgColor, 34 | borderRadius: BorderRadius.circular(radius), 35 | boxShadow: [ 36 | BoxShadow( 37 | color: AppColor.shadowColor.withOpacity(0.1), 38 | spreadRadius: 1, 39 | blurRadius: 1, 40 | offset: Offset(0, 1), // changes position of shadow 41 | ), 42 | ], 43 | image: DecorationImage( 44 | image: NetworkImage(name), 45 | fit: BoxFit.cover, 46 | ), 47 | ), 48 | ); 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency. 5 | ENV['COCOAPODS_DISABLE_STATS'] = 'true' 6 | 7 | project 'Runner', { 8 | 'Debug' => :debug, 9 | 'Profile' => :release, 10 | 'Release' => :release, 11 | } 12 | 13 | def flutter_root 14 | generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) 15 | unless File.exist?(generated_xcode_build_settings_path) 16 | raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" 17 | end 18 | 19 | File.foreach(generated_xcode_build_settings_path) do |line| 20 | matches = line.match(/FLUTTER_ROOT\=(.*)/) 21 | return matches[1].strip if matches 22 | end 23 | raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" 24 | end 25 | 26 | require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) 27 | 28 | flutter_ios_podfile_setup 29 | 30 | target 'Runner' do 31 | use_frameworks! 32 | use_modular_headers! 33 | 34 | flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) 35 | end 36 | 37 | post_install do |installer| 38 | installer.pods_project.targets.each do |target| 39 | flutter_additional_ios_build_settings(target) 40 | end 41 | end 42 | -------------------------------------------------------------------------------- /lib/widgets/custom_textbox.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:real_estate/theme/color.dart'; 3 | 4 | class CustomTextBox extends StatelessWidget { 5 | const CustomTextBox({ 6 | Key? key, 7 | this.hint = "", 8 | this.prefix, 9 | this.suffix, 10 | this.controller, 11 | this.readOnly = false, 12 | }) : super(key: key); 13 | 14 | final String hint; 15 | final Widget? prefix; 16 | final Widget? suffix; 17 | final bool readOnly; 18 | final TextEditingController? controller; 19 | 20 | @override 21 | Widget build(BuildContext context) { 22 | return Container( 23 | alignment: Alignment.center, 24 | padding: EdgeInsets.only(bottom: 3), 25 | height: 40, 26 | decoration: BoxDecoration( 27 | color: AppColor.textBoxColor, 28 | border: Border.all(color: AppColor.textBoxColor), 29 | borderRadius: BorderRadius.circular(10), 30 | boxShadow: [ 31 | BoxShadow( 32 | color: AppColor.shadowColor.withOpacity(.05), 33 | spreadRadius: .5, 34 | blurRadius: .5, 35 | offset: Offset(0, 1), // changes position of shadow 36 | ), 37 | ], 38 | ), 39 | child: TextField( 40 | readOnly: readOnly, 41 | controller: controller, 42 | decoration: InputDecoration( 43 | prefixIcon: prefix, 44 | suffixIcon: suffix, 45 | border: InputBorder.none, 46 | hintText: hint, 47 | hintStyle: TextStyle( 48 | color: Colors.grey, 49 | fontSize: 15, 50 | ), 51 | ), 52 | ), 53 | ); 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | real_estate 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 | -------------------------------------------------------------------------------- /lib/widgets/bottombar_item.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:real_estate/theme/color.dart'; 3 | 4 | class BottomBarItem extends StatelessWidget { 5 | const BottomBarItem( 6 | this.icon, { 7 | this.onTap, 8 | this.color = AppColor.inActiveColor, 9 | this.activeColor = AppColor.primary, 10 | this.isActive = false, 11 | this.isNotified = false, 12 | }); 13 | 14 | final IconData icon; 15 | final Color color; 16 | final Color activeColor; 17 | final bool isNotified; 18 | final bool isActive; 19 | final GestureTapCallback? onTap; 20 | 21 | @override 22 | Widget build(BuildContext context) { 23 | return GestureDetector( 24 | onTap: onTap, 25 | child: Container( 26 | alignment: Alignment.center, 27 | child: Stack( 28 | alignment: Alignment.center, 29 | children: [ 30 | Container( 31 | padding: EdgeInsets.all(7), 32 | decoration: BoxDecoration( 33 | borderRadius: BorderRadius.circular(50), 34 | color: isActive 35 | ? AppColor.primary.withOpacity(.1) 36 | : Colors.transparent, 37 | ), 38 | child: Icon( 39 | icon, 40 | size: 25, 41 | color: isActive ? activeColor : color, 42 | ), 43 | ), 44 | Positioned( 45 | bottom: -8, 46 | child: Icon( 47 | Icons.arrow_drop_up, 48 | size: 20.0, 49 | color: isActive ? activeColor : Colors.transparent, 50 | ), 51 | ), 52 | ], 53 | ), 54 | ), 55 | ); 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply plugin: 'kotlin-android' 26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 27 | 28 | android { 29 | compileSdkVersion 30 30 | 31 | sourceSets { 32 | main.java.srcDirs += 'src/main/kotlin' 33 | } 34 | 35 | defaultConfig { 36 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 37 | applicationId "com.example.real_estate" 38 | minSdkVersion 16 39 | targetSdkVersion 30 40 | versionCode flutterVersionCode.toInteger() 41 | versionName flutterVersionName 42 | } 43 | 44 | buildTypes { 45 | release { 46 | // TODO: Add your own signing config for the release build. 47 | // Signing with the debug keys for now, so `flutter run --release` works. 48 | signingConfig signingConfigs.debug 49 | } 50 | } 51 | } 52 | 53 | flutter { 54 | source '../..' 55 | } 56 | 57 | dependencies { 58 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 59 | } 60 | -------------------------------------------------------------------------------- /lib/widgets/category_item.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:real_estate/theme/color.dart'; 3 | 4 | class CategoryItem extends StatelessWidget { 5 | const CategoryItem({ 6 | Key? key, 7 | required this.data, 8 | this.selected = false, 9 | this.onTap, 10 | }) : super(key: key); 11 | 12 | final data; 13 | final bool selected; 14 | final GestureTapCallback? onTap; 15 | 16 | @override 17 | Widget build(BuildContext context) { 18 | return GestureDetector( 19 | onTap: onTap, 20 | child: AnimatedContainer( 21 | duration: const Duration(milliseconds: 500), 22 | curve: Curves.fastOutSlowIn, 23 | padding: EdgeInsets.fromLTRB(5, 20, 5, 0), 24 | margin: EdgeInsets.only(right: 10), 25 | width: 90, 26 | height: 90, 27 | decoration: BoxDecoration( 28 | color: selected ? AppColor.primary : AppColor.cardColor, 29 | borderRadius: BorderRadius.circular(10), 30 | boxShadow: [ 31 | BoxShadow( 32 | color: AppColor.shadowColor.withOpacity(0.1), 33 | spreadRadius: .5, 34 | blurRadius: .5, 35 | offset: Offset(0, 1), // changes position of shadow 36 | ), 37 | ], 38 | ), 39 | child: Column( 40 | children: [ 41 | Icon( 42 | data["icon"], 43 | size: 25, 44 | color: selected ? Colors.white : Colors.black, 45 | ), 46 | const SizedBox( 47 | height: 5, 48 | ), 49 | Expanded( 50 | child: Text( 51 | data["name"], 52 | maxLines: 1, 53 | overflow: TextOverflow.ellipsis, 54 | style: TextStyle( 55 | fontSize: 13, 56 | color: selected ? Colors.white : AppColor.darker, 57 | ), 58 | ), 59 | ), 60 | ], 61 | ), 62 | ), 63 | ); 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 13 | 17 | 21 | 26 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/widgets/company_item.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:real_estate/theme/color.dart'; 3 | 4 | class CompanyItem extends StatelessWidget { 5 | const CompanyItem({ 6 | Key? key, 7 | required this.data, 8 | this.bgColor = Colors.white, 9 | this.color = AppColor.primary, 10 | this.selected = false, 11 | this.onTap, 12 | }) : super(key: key); 13 | 14 | final data; 15 | final Color bgColor; 16 | final Color color; 17 | final bool selected; 18 | final GestureTapCallback? onTap; 19 | 20 | @override 21 | Widget build(BuildContext context) { 22 | return GestureDetector( 23 | onTap: onTap, 24 | child: Container( 25 | width: 110, 26 | height: 110, 27 | margin: EdgeInsets.only(right: 15), 28 | padding: EdgeInsets.fromLTRB(5, 10, 5, 0), 29 | decoration: BoxDecoration( 30 | color: Colors.white, 31 | borderRadius: BorderRadius.circular(10), 32 | boxShadow: [ 33 | BoxShadow( 34 | color: AppColor.shadowColor.withOpacity(0.1), 35 | spreadRadius: .5, 36 | blurRadius: 1, 37 | offset: Offset(0, 1), // changes position of shadow 38 | ), 39 | ], 40 | ), 41 | child: Column( 42 | mainAxisAlignment: MainAxisAlignment.center, 43 | children: [ 44 | Container( 45 | padding: EdgeInsets.all(7), 46 | decoration: BoxDecoration( 47 | shape: BoxShape.circle, 48 | color: color.withOpacity(.3), 49 | ), 50 | child: Icon(data["icon"], color: color), 51 | ), 52 | const SizedBox( 53 | height: 8, 54 | ), 55 | Text( 56 | data["name"], 57 | maxLines: 1, 58 | style: TextStyle(fontSize: 13, fontWeight: FontWeight.w500), 59 | ), 60 | const SizedBox( 61 | height: 5, 62 | ), 63 | Expanded( 64 | child: Text( 65 | data["type"], 66 | style: TextStyle(fontSize: 12, color: AppColor.darker), 67 | ), 68 | ), 69 | Visibility( 70 | visible: selected, 71 | child: Container( 72 | width: double.infinity, 73 | height: 2, 74 | decoration: BoxDecoration(color: AppColor.primary), 75 | ), 76 | ), 77 | ], 78 | ), 79 | ), 80 | ); 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /lib/widgets/recent_item.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:real_estate/theme/color.dart'; 3 | 4 | import 'custom_image.dart'; 5 | 6 | class RecentItem extends StatelessWidget { 7 | const RecentItem({Key? key, required this.data}) : super(key: key); 8 | final data; 9 | 10 | @override 11 | Widget build(BuildContext context) { 12 | return Container( 13 | width: 280, 14 | margin: EdgeInsets.only(right: 15), 15 | decoration: BoxDecoration( 16 | color: Colors.white, 17 | borderRadius: BorderRadius.circular(20), 18 | boxShadow: [ 19 | BoxShadow( 20 | color: AppColor.shadowColor.withOpacity(0.1), 21 | spreadRadius: 1, 22 | blurRadius: 1, 23 | offset: Offset(0, 1), // changes position of shadow 24 | ), 25 | ], 26 | ), 27 | child: Row( 28 | children: [ 29 | CustomImage( 30 | data["image"], 31 | radius: 20, 32 | ), 33 | const SizedBox( 34 | width: 15, 35 | ), 36 | Expanded( 37 | child: _buildInfo(), 38 | ) 39 | ], 40 | ), 41 | ); 42 | } 43 | 44 | Widget _buildInfo() { 45 | return Column( 46 | crossAxisAlignment: CrossAxisAlignment.start, 47 | children: [ 48 | Text( 49 | data["name"], 50 | maxLines: 1, 51 | overflow: TextOverflow.ellipsis, 52 | style: TextStyle(fontSize: 14, fontWeight: FontWeight.w600), 53 | ), 54 | const SizedBox( 55 | height: 5, 56 | ), 57 | Row( 58 | crossAxisAlignment: CrossAxisAlignment.start, 59 | children: [ 60 | Icon( 61 | Icons.place_outlined, 62 | size: 13, 63 | ), 64 | const SizedBox( 65 | width: 3, 66 | ), 67 | Expanded( 68 | child: Text( 69 | data["location"], 70 | maxLines: 1, 71 | overflow: TextOverflow.ellipsis, 72 | style: TextStyle( 73 | fontSize: 12, 74 | ), 75 | ), 76 | ), 77 | ], 78 | ), 79 | const SizedBox( 80 | height: 5, 81 | ), 82 | Text( 83 | data["price"], 84 | style: TextStyle( 85 | fontSize: 13, 86 | color: AppColor.primary, 87 | fontWeight: FontWeight.w500, 88 | ), 89 | ) 90 | ], 91 | ); 92 | } 93 | } 94 | -------------------------------------------------------------------------------- /lib/widgets/recommend_item.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:real_estate/theme/color.dart'; 3 | 4 | import 'custom_image.dart'; 5 | 6 | class RecommendItem extends StatelessWidget { 7 | const RecommendItem({Key? key, required this.data}) : super(key: key); 8 | final data; 9 | 10 | @override 11 | Widget build(BuildContext context) { 12 | return Container( 13 | width: 220, 14 | height: 130, 15 | margin: EdgeInsets.only(right: 15), 16 | decoration: BoxDecoration( 17 | borderRadius: BorderRadius.circular(20), 18 | boxShadow: [ 19 | BoxShadow( 20 | color: AppColor.shadowColor.withOpacity(0.1), 21 | spreadRadius: 1, 22 | blurRadius: 1, 23 | offset: Offset(0, 1), // changes position of shadow 24 | ), 25 | ], 26 | ), 27 | child: Stack( 28 | children: [ 29 | CustomImage( 30 | data["image"], 31 | radius: 20, 32 | width: double.infinity, 33 | height: double.infinity, 34 | ), 35 | _buildOverlay(), 36 | Positioned( 37 | bottom: 12, 38 | left: 10, 39 | child: _buildInfo(), 40 | ), 41 | ], 42 | ), 43 | ); 44 | } 45 | 46 | Widget _buildOverlay() { 47 | return Container( 48 | width: double.infinity, 49 | height: double.infinity, 50 | decoration: BoxDecoration( 51 | borderRadius: BorderRadius.circular(20), 52 | gradient: LinearGradient( 53 | begin: Alignment.bottomCenter, 54 | end: Alignment.topCenter, 55 | colors: [ 56 | Colors.black.withOpacity(.8), 57 | Colors.white.withOpacity(.01), 58 | ], 59 | ), 60 | ), 61 | ); 62 | } 63 | 64 | Widget _buildInfo() { 65 | return Column( 66 | crossAxisAlignment: CrossAxisAlignment.start, 67 | children: [ 68 | Text( 69 | data["name"], 70 | maxLines: 1, 71 | overflow: TextOverflow.ellipsis, 72 | style: TextStyle( 73 | color: Colors.white, 74 | fontSize: 14, 75 | fontWeight: FontWeight.w600, 76 | ), 77 | ), 78 | const SizedBox( 79 | height: 5, 80 | ), 81 | Row( 82 | children: [ 83 | Icon( 84 | Icons.place_outlined, 85 | color: Colors.white, 86 | size: 13, 87 | ), 88 | const SizedBox( 89 | width: 3, 90 | ), 91 | Text( 92 | data["location"], 93 | style: TextStyle( 94 | fontSize: 13, 95 | color: Colors.white, 96 | ), 97 | ), 98 | ], 99 | ), 100 | ], 101 | ); 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /lib/widgets/broker_item.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:real_estate/theme/color.dart'; 3 | import 'custom_image.dart'; 4 | 5 | class BrokerItem extends StatelessWidget { 6 | const BrokerItem({Key? key, required this.data}) : super(key: key); 7 | 8 | final data; 9 | 10 | @override 11 | Widget build(BuildContext context) { 12 | return Container( 13 | padding: EdgeInsets.all(10), 14 | margin: EdgeInsets.only(bottom: 10), 15 | decoration: BoxDecoration( 16 | color: Colors.white, 17 | borderRadius: BorderRadius.circular(10), 18 | boxShadow: [ 19 | BoxShadow( 20 | color: AppColor.shadowColor.withOpacity(0.1), 21 | spreadRadius: .5, 22 | blurRadius: 1, 23 | offset: Offset(0, 1), // changes position of shadow 24 | ), 25 | ], 26 | ), 27 | child: Column( 28 | crossAxisAlignment: CrossAxisAlignment.start, 29 | children: [ 30 | _buildProfile(), 31 | const SizedBox( 32 | height: 10, 33 | ), 34 | Text( 35 | data["description"], 36 | style: TextStyle(height: 1.5, color: AppColor.darker), 37 | ), 38 | const SizedBox( 39 | height: 10, 40 | ), 41 | _buildRate() 42 | ], 43 | ), 44 | ); 45 | } 46 | 47 | Widget _buildProfile() { 48 | return Row( 49 | children: [ 50 | CustomImage( 51 | data["image"], 52 | width: 35, 53 | height: 35, 54 | ), 55 | const SizedBox( 56 | width: 10, 57 | ), 58 | Column( 59 | crossAxisAlignment: CrossAxisAlignment.start, 60 | children: [ 61 | Text( 62 | data["name"], 63 | style: TextStyle(fontSize: 13, fontWeight: FontWeight.w500), 64 | ), 65 | const SizedBox( 66 | height: 3, 67 | ), 68 | Text( 69 | data["type"], 70 | style: TextStyle(fontSize: 12, color: Colors.grey), 71 | ), 72 | ], 73 | ) 74 | ], 75 | ); 76 | } 77 | 78 | Widget _buildRate() { 79 | return Row( 80 | children: [ 81 | Icon( 82 | Icons.star, 83 | size: 16, 84 | color: AppColor.yellow, 85 | ), 86 | Icon( 87 | Icons.star, 88 | size: 16, 89 | color: AppColor.yellow, 90 | ), 91 | Icon( 92 | Icons.star, 93 | size: 16, 94 | color: AppColor.yellow, 95 | ), 96 | Icon( 97 | Icons.star, 98 | size: 16, 99 | color: AppColor.yellow, 100 | ), 101 | Icon( 102 | Icons.star_outline, 103 | size: 16, 104 | color: AppColor.yellow, 105 | ), 106 | ], 107 | ); 108 | } 109 | } 110 | -------------------------------------------------------------------------------- /lib/widgets/property_item.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:real_estate/theme/color.dart'; 3 | 4 | import 'custom_image.dart'; 5 | import 'icon_box.dart'; 6 | 7 | class PropertyItem extends StatelessWidget { 8 | const PropertyItem({Key? key, required this.data}) : super(key: key); 9 | 10 | final data; 11 | 12 | @override 13 | Widget build(BuildContext context) { 14 | return Container( 15 | width: double.infinity, 16 | height: 240, 17 | margin: EdgeInsets.fromLTRB(0, 0, 0, 5), 18 | decoration: BoxDecoration( 19 | color: Colors.white, 20 | borderRadius: BorderRadius.circular(25), 21 | boxShadow: [ 22 | BoxShadow( 23 | color: AppColor.shadowColor.withOpacity(0.1), 24 | spreadRadius: .5, 25 | blurRadius: 1, 26 | offset: Offset(0, 1), // changes position of shadow 27 | ), 28 | ], 29 | ), 30 | child: Stack( 31 | children: [ 32 | CustomImage( 33 | data["image"], 34 | width: double.infinity, 35 | height: 150, 36 | radius: 25, 37 | ), 38 | Positioned( 39 | right: 20, 40 | top: 130, 41 | child: _buildFavorite(), 42 | ), 43 | Positioned( 44 | left: 15, 45 | top: 160, 46 | child: _buildInfo(), 47 | ), 48 | ], 49 | ), 50 | ); 51 | } 52 | 53 | Widget _buildFavorite() { 54 | return IconBox( 55 | bgColor: AppColor.red, 56 | child: Icon( 57 | data["is_favorited"] ? Icons.favorite : Icons.favorite_border, 58 | color: Colors.white, 59 | size: 20, 60 | ), 61 | ); 62 | } 63 | 64 | Widget _buildInfo() { 65 | return Column( 66 | crossAxisAlignment: CrossAxisAlignment.start, 67 | children: [ 68 | Text( 69 | data["name"], 70 | maxLines: 1, 71 | overflow: TextOverflow.ellipsis, 72 | style: TextStyle(fontSize: 16, fontWeight: FontWeight.w600), 73 | ), 74 | const SizedBox( 75 | height: 5, 76 | ), 77 | Row( 78 | children: [ 79 | Icon( 80 | Icons.place_outlined, 81 | color: AppColor.darker, 82 | size: 13, 83 | ), 84 | const SizedBox( 85 | width: 3, 86 | ), 87 | Text( 88 | data["location"], 89 | style: TextStyle(fontSize: 13, color: AppColor.darker), 90 | ), 91 | ], 92 | ), 93 | const SizedBox( 94 | height: 5, 95 | ), 96 | Text( 97 | data["price"], 98 | style: TextStyle( 99 | fontSize: 15, 100 | color: AppColor.primary, 101 | fontWeight: FontWeight.w500, 102 | ), 103 | ), 104 | ], 105 | ); 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /lib/pages/root.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:real_estate/pages/explore.dart'; 3 | import 'package:real_estate/theme/color.dart'; 4 | import 'package:real_estate/widgets/bottombar_item.dart'; 5 | 6 | import 'home.dart'; 7 | 8 | class RootApp extends StatefulWidget { 9 | const RootApp({Key? key}) : super(key: key); 10 | 11 | @override 12 | _RootAppState createState() => _RootAppState(); 13 | } 14 | 15 | class _RootAppState extends State { 16 | int _activeTab = 0; 17 | final List _barItems = [ 18 | { 19 | "icon": Icons.home_outlined, 20 | "active_icon": Icons.home_rounded, 21 | "page": HomePage(), 22 | }, 23 | { 24 | "icon": Icons.search_outlined, 25 | "active_icon": Icons.search, 26 | "page": ExplorePage(), 27 | }, 28 | { 29 | "icon": Icons.favorite_border, 30 | "active_icon": Icons.favorite_outlined, 31 | "page": HomePage(), 32 | }, 33 | { 34 | "icon": Icons.forum_outlined, 35 | "active_icon": Icons.forum_rounded, 36 | "page": HomePage(), 37 | }, 38 | { 39 | "icon": Icons.settings_outlined, 40 | "active_icon": Icons.settings_rounded, 41 | "page": HomePage(), 42 | }, 43 | ]; 44 | 45 | @override 46 | Widget build(BuildContext context) { 47 | return Scaffold( 48 | backgroundColor: AppColor.appBgColor, 49 | body: _buildPage(), 50 | floatingActionButton: _buildBottomBar(), 51 | floatingActionButtonLocation: 52 | FloatingActionButtonLocation.miniCenterDocked, 53 | ); 54 | } 55 | 56 | Widget _buildPage() { 57 | return IndexedStack( 58 | index: _activeTab, 59 | children: List.generate( 60 | _barItems.length, 61 | (index) => _barItems[index]["page"], 62 | ), 63 | ); 64 | } 65 | 66 | Widget _buildBottomBar() { 67 | return Container( 68 | height: 55, 69 | width: double.infinity, 70 | margin: EdgeInsets.symmetric(horizontal: 15), 71 | decoration: BoxDecoration( 72 | color: AppColor.bottomBarColor, 73 | borderRadius: BorderRadius.circular(20), 74 | boxShadow: [ 75 | BoxShadow( 76 | color: AppColor.shadowColor.withOpacity(0.1), 77 | blurRadius: 1, 78 | spreadRadius: 1, 79 | offset: Offset(0, 1), 80 | ) 81 | ], 82 | ), 83 | child: Row( 84 | mainAxisAlignment: MainAxisAlignment.spaceAround, 85 | crossAxisAlignment: CrossAxisAlignment.end, 86 | children: List.generate( 87 | _barItems.length, 88 | (index) => BottomBarItem( 89 | _activeTab == index 90 | ? _barItems[index]["active_icon"] 91 | : _barItems[index]["icon"], 92 | isActive: _activeTab == index, 93 | activeColor: AppColor.primary, 94 | onTap: () { 95 | setState(() { 96 | _activeTab = index; 97 | }); 98 | }, 99 | ), 100 | ), 101 | ), 102 | ); 103 | } 104 | } 105 | -------------------------------------------------------------------------------- /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.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /lib/pages/explore.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:real_estate/theme/color.dart'; 3 | import 'package:real_estate/utils/data.dart'; 4 | import 'package:real_estate/widgets/broker_item.dart'; 5 | import 'package:real_estate/widgets/company_item.dart'; 6 | import 'package:real_estate/widgets/custom_textbox.dart'; 7 | import 'package:real_estate/widgets/icon_box.dart'; 8 | import 'package:real_estate/widgets/recommend_item.dart'; 9 | 10 | class ExplorePage extends StatefulWidget { 11 | const ExplorePage({Key? key}) : super(key: key); 12 | 13 | @override 14 | _ExplorePageState createState() => _ExplorePageState(); 15 | } 16 | 17 | class _ExplorePageState extends State { 18 | @override 19 | Widget build(BuildContext context) { 20 | return CustomScrollView( 21 | slivers: [ 22 | SliverAppBar( 23 | backgroundColor: AppColor.appBgColor, 24 | pinned: true, 25 | snap: true, 26 | floating: true, 27 | title: _buildHeader(), 28 | ), 29 | SliverToBoxAdapter(child: _buildBody()) 30 | ], 31 | ); 32 | } 33 | 34 | _buildHeader() { 35 | return Row( 36 | children: [ 37 | Expanded( 38 | child: CustomTextBox( 39 | hint: "Search", 40 | prefix: Icon(Icons.search, color: Colors.grey), 41 | ), 42 | ), 43 | const SizedBox( 44 | width: 10, 45 | ), 46 | IconBox( 47 | child: Icon(Icons.filter_list_rounded, color: Colors.white), 48 | bgColor: AppColor.secondary, 49 | radius: 10, 50 | ) 51 | ], 52 | ); 53 | } 54 | 55 | _buildBody() { 56 | return SingleChildScrollView( 57 | child: Column( 58 | crossAxisAlignment: CrossAxisAlignment.start, 59 | children: [ 60 | const SizedBox( 61 | height: 20, 62 | ), 63 | const Padding( 64 | padding: EdgeInsets.only(left: 15), 65 | child: Text( 66 | "Matched Properties", 67 | style: TextStyle(fontSize: 18, fontWeight: FontWeight.w600), 68 | ), 69 | ), 70 | const SizedBox( 71 | height: 20, 72 | ), 73 | _buildRecommended(), 74 | const SizedBox( 75 | height: 20, 76 | ), 77 | const Padding( 78 | padding: EdgeInsets.only(left: 15), 79 | child: Text( 80 | "Companies", 81 | style: TextStyle( 82 | fontSize: 18, 83 | fontWeight: FontWeight.w600, 84 | ), 85 | ), 86 | ), 87 | const SizedBox( 88 | height: 20, 89 | ), 90 | _buildCompanies(), 91 | const SizedBox( 92 | height: 20, 93 | ), 94 | _buildBrokers(), 95 | const SizedBox( 96 | height: 100, 97 | ), 98 | ], 99 | ), 100 | ); 101 | } 102 | 103 | _buildRecommended() { 104 | List lists = List.generate( 105 | recommended.length, 106 | (index) => RecommendItem( 107 | data: recommended[index], 108 | ), 109 | ); 110 | 111 | return SingleChildScrollView( 112 | scrollDirection: Axis.horizontal, 113 | padding: EdgeInsets.only(bottom: 5, left: 15), 114 | child: Row(children: lists), 115 | ); 116 | } 117 | 118 | int _selectedCategory = 0; 119 | _buildCompanies() { 120 | List lists = List.generate( 121 | companies.length, 122 | (index) => CompanyItem( 123 | data: companies[index], 124 | color: AppColor.listColors[index % 10], 125 | selected: index == _selectedCategory, 126 | onTap: () { 127 | setState(() { 128 | _selectedCategory = index; 129 | }); 130 | }, 131 | ), 132 | ); 133 | 134 | return SingleChildScrollView( 135 | scrollDirection: Axis.horizontal, 136 | padding: EdgeInsets.only(bottom: 5, left: 15), 137 | child: Row(children: lists), 138 | ); 139 | } 140 | 141 | _buildBrokers() { 142 | List lists = List.generate( 143 | brokers.length, 144 | (index) => BrokerItem( 145 | data: brokers[index], 146 | ), 147 | ); 148 | 149 | return Padding( 150 | padding: EdgeInsets.symmetric(horizontal: 15), 151 | child: Column(children: lists), 152 | ); 153 | } 154 | } 155 | -------------------------------------------------------------------------------- /lib/utils/data.dart: -------------------------------------------------------------------------------- 1 | 2 | import 'package:flutter/material.dart'; 3 | import 'package:font_awesome_flutter/font_awesome_flutter.dart'; 4 | 5 | var profile = "https://avatars.githubusercontent.com/u/86506519?v=4"; 6 | 7 | List populars = [ 8 | { 9 | "image": "https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8Zm9vZHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 10 | "name": "Single Villa", 11 | "price": "\$280k", 12 | "location": "Phnom Penh, Cambodia", 13 | "is_favorited": true, 14 | }, 15 | { 16 | "image": "https://images.unsplash.com/photo-1598928506311-c55ded91a20c?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8Zm9vZHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 17 | "name": "Convertible Studio", 18 | "price": "\$150k", 19 | "location": "Phnom Penh, Cambodia", 20 | "is_favorited": false, 21 | }, 22 | { 23 | "image": "https://images.unsplash.com/photo-1576941089067-2de3c901e126?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8Zm9vZHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 24 | "name": "Twin Castle", 25 | "price": "\$175k", 26 | "location": "Phnom Penh, Cambodia", 27 | "is_favorited": false, 28 | }, 29 | { 30 | "image": "https://images.unsplash.com/photo-1549517045-bc93de075e53?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8Zm9vZHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 31 | "name": "Twin Villa", 32 | "price": "\$120k", 33 | "location": "Phnom Penh, Cambodia", 34 | "is_favorited": false, 35 | }, 36 | ]; 37 | 38 | List recommended = [ 39 | { 40 | "image": "https://images.unsplash.com/photo-1592595896616-c37162298647?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8Zm9vZHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 41 | "name": "Garden House", 42 | "price": "\$180k", 43 | "location": "Phnom Penh", 44 | "is_favorited": true, 45 | }, 46 | { 47 | "image": "https://images.unsplash.com/photo-1576941089067-2de3c901e126?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8Zm9vZHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 48 | "name": "Twin Castle", 49 | "price": "\$175k", 50 | "location": "Phnom Penh, Cambodia", 51 | "is_favorited": false, 52 | }, 53 | { 54 | "image": "https://images.unsplash.com/photo-1625602812206-5ec545ca1231?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8Zm9vZHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 55 | "name": "King Villa", 56 | "price": "\$180k", 57 | "location": "Phnom Penh, Cambodia", 58 | "is_favorited": true, 59 | }, 60 | ]; 61 | 62 | List recents = [ 63 | { 64 | "image": "https://images.unsplash.com/photo-1549517045-bc93de075e53?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8Zm9vZHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 65 | "name": "Double Villa", 66 | "price": "\$180k", 67 | "location": "Phnom Penh", 68 | "is_favorited": false, 69 | }, 70 | { 71 | "image": "https://images.unsplash.com/photo-1598928506311-c55ded91a20c?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8Zm9vZHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 72 | "name": "Convertible Studio", 73 | "price": "\$150k", 74 | "location": "Phnom Penh", 75 | "is_favorited": false, 76 | }, 77 | { 78 | "image": "https://images.unsplash.com/photo-1576941089067-2de3c901e126?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8Zm9vZHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 79 | "name": "Double Villa", 80 | "price": "\$180k", 81 | "location": "Phnom Penh", 82 | "is_favorited": false, 83 | }, 84 | ]; 85 | 86 | List categories = [ 87 | { 88 | "name" : "All", 89 | "icon" : FontAwesomeIcons.boxes 90 | }, 91 | { 92 | "name" : "Villa", 93 | "icon" : FontAwesomeIcons.university 94 | }, 95 | { 96 | "name" : "Shop", 97 | "icon" : FontAwesomeIcons.storeAlt 98 | }, 99 | { 100 | "name" : "Building", 101 | "icon" : FontAwesomeIcons.building 102 | }, 103 | { 104 | "name" : "House", 105 | "icon" : FontAwesomeIcons.home 106 | }, 107 | ]; 108 | 109 | var brokers = [ 110 | { 111 | "image": "https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MjV8fHByb2ZpbGV8ZW58MHx8MHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 112 | "name": "John Siphron", 113 | "type": "Broker", 114 | "description": "Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document", 115 | "rate": 4, 116 | }, 117 | { 118 | "image":"https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTF8fHByb2ZpbGV8ZW58MHx8MHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 119 | "name" : "Corey Aminoff", 120 | "type": "Broker", 121 | "description": "Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document", 122 | "rate": 4, 123 | }, 124 | { 125 | "image" : "https://images.unsplash.com/photo-1617069470302-9b5592c80f66?ixid=MnwxMjA3fDB8MHxzZWFyY2h8NHx8Z2lybHxlbnwwfHwwfHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 126 | "name": "Siriya Aminoff", 127 | "type": "Broker", 128 | "description": "Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document", 129 | "rate": 4, 130 | }, 131 | { 132 | "image" : "https://images.unsplash.com/photo-1545167622-3a6ac756afa4?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTB8fHByb2ZpbGV8ZW58MHx8MHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 133 | "name": "Rubin Joe", 134 | "type": "Broker", 135 | "description": "Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document", 136 | "rate": 4, 137 | }, 138 | ]; 139 | 140 | List companies = [ 141 | { 142 | "image": "https://images.unsplash.com/photo-1549517045-bc93de075e53?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8Zm9vZHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 143 | "name": "TS Home", 144 | "location": "Phnom Penh, Cambodia", 145 | "type": "Broker", 146 | "is_favorited": false, 147 | "icon" : Icons.domain_rounded 148 | }, 149 | { 150 | "image": "https://images.unsplash.com/photo-1618221469555-7f3ad97540d6?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8Zm9vZHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 151 | "name": "Century 21", 152 | "location": "Phnom Penh, Cambodia", 153 | "type": "Broker", 154 | "is_favorited": true, 155 | "icon" : Icons.house_siding_rounded 156 | }, 157 | { 158 | "image": "https://images.unsplash.com/photo-1625602812206-5ec545ca1231?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8Zm9vZHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 159 | "name": "Dabest Pro", 160 | "location": "Phnom Penh, Cambodia", 161 | "type": "Broker", 162 | "is_favorited": true, 163 | "icon" : Icons.home_work_rounded 164 | }, 165 | { 166 | "image": "https://images.unsplash.com/photo-1625602812206-5ec545ca1231?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8Zm9vZHxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60", 167 | "name": "Cam Reality", 168 | "location": "Phnom Penh, Cambodia", 169 | "type": "Broker", 170 | "is_favorited": true, 171 | "icon" : Icons.location_city_rounded 172 | }, 173 | ]; -------------------------------------------------------------------------------- /lib/pages/home.dart: -------------------------------------------------------------------------------- 1 | import 'package:carousel_slider/carousel_slider.dart'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:real_estate/theme/color.dart'; 4 | import 'package:real_estate/utils/data.dart'; 5 | import 'package:real_estate/widgets/category_item.dart'; 6 | import 'package:real_estate/widgets/custom_image.dart'; 7 | import 'package:real_estate/widgets/custom_textbox.dart'; 8 | import 'package:real_estate/widgets/icon_box.dart'; 9 | import 'package:real_estate/widgets/property_item.dart'; 10 | import 'package:real_estate/widgets/recent_item.dart'; 11 | import 'package:real_estate/widgets/recommend_item.dart'; 12 | 13 | class HomePage extends StatefulWidget { 14 | const HomePage({Key? key}) : super(key: key); 15 | 16 | @override 17 | _HomePageState createState() => _HomePageState(); 18 | } 19 | 20 | class _HomePageState extends State { 21 | @override 22 | Widget build(BuildContext context) { 23 | return CustomScrollView( 24 | slivers: [ 25 | SliverAppBar( 26 | backgroundColor: AppColor.appBgColor, 27 | pinned: true, 28 | snap: true, 29 | floating: true, 30 | title: _buildHeader(), 31 | ), 32 | SliverToBoxAdapter(child: _buildBody()) 33 | ], 34 | ); 35 | } 36 | 37 | _buildHeader() { 38 | return Column( 39 | children: [ 40 | Row( 41 | crossAxisAlignment: CrossAxisAlignment.center, 42 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 43 | children: [ 44 | Column( 45 | crossAxisAlignment: CrossAxisAlignment.start, 46 | children: [ 47 | Text( 48 | "Hello!", 49 | style: TextStyle( 50 | color: AppColor.darker, 51 | fontSize: 14, 52 | fontWeight: FontWeight.w500, 53 | ), 54 | ), 55 | Text( 56 | "Sangvaleap", 57 | style: TextStyle( 58 | color: Colors.black87, 59 | fontSize: 17, 60 | fontWeight: FontWeight.w600, 61 | ), 62 | ), 63 | ], 64 | ), 65 | CustomImage( 66 | profile, 67 | width: 35, 68 | height: 35, 69 | trBackground: true, 70 | borderColor: AppColor.primary, 71 | radius: 10, 72 | ), 73 | ], 74 | ), 75 | ], 76 | ); 77 | } 78 | 79 | _buildBody() { 80 | return SingleChildScrollView( 81 | child: Column( 82 | crossAxisAlignment: CrossAxisAlignment.start, 83 | children: [ 84 | const SizedBox( 85 | height: 15, 86 | ), 87 | _buildSearch(), 88 | const SizedBox( 89 | height: 20, 90 | ), 91 | _buildCategories(), 92 | const SizedBox( 93 | height: 20, 94 | ), 95 | Padding( 96 | padding: EdgeInsets.symmetric(horizontal: 15), 97 | child: Row( 98 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 99 | children: const [ 100 | Text( 101 | "Popular", 102 | style: TextStyle(fontSize: 18, fontWeight: FontWeight.w600), 103 | ), 104 | Text( 105 | "See all", 106 | style: TextStyle(fontSize: 14, color: AppColor.darker), 107 | ), 108 | ], 109 | ), 110 | ), 111 | const SizedBox( 112 | height: 20, 113 | ), 114 | _buildPopulars(), 115 | const SizedBox( 116 | height: 20, 117 | ), 118 | Padding( 119 | padding: EdgeInsets.symmetric(horizontal: 15), 120 | child: Row( 121 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 122 | children: [ 123 | Text( 124 | "Recommended", 125 | style: TextStyle(fontSize: 18, fontWeight: FontWeight.w600), 126 | ), 127 | Text( 128 | "See all", 129 | style: TextStyle(fontSize: 14, color: AppColor.darker), 130 | ), 131 | ], 132 | ), 133 | ), 134 | const SizedBox( 135 | height: 20, 136 | ), 137 | _buildRecommended(), 138 | const SizedBox( 139 | height: 20, 140 | ), 141 | Padding( 142 | padding: EdgeInsets.symmetric(horizontal: 15), 143 | child: Row( 144 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 145 | children: [ 146 | Text( 147 | "Recent", 148 | style: TextStyle(fontSize: 18, fontWeight: FontWeight.w600), 149 | ), 150 | Text( 151 | "See all", 152 | style: TextStyle(fontSize: 14, color: AppColor.darker), 153 | ), 154 | ], 155 | ), 156 | ), 157 | const SizedBox( 158 | height: 20, 159 | ), 160 | _buildRecent(), 161 | const SizedBox( 162 | height: 100, 163 | ), 164 | ], 165 | ), 166 | ); 167 | } 168 | 169 | Widget _buildSearch() { 170 | return Padding( 171 | padding: const EdgeInsets.symmetric(horizontal: 15), 172 | child: Row( 173 | children: [ 174 | Expanded( 175 | child: CustomTextBox( 176 | hint: "Search", 177 | prefix: Icon(Icons.search, color: Colors.grey), 178 | ), 179 | ), 180 | const SizedBox( 181 | width: 10, 182 | ), 183 | IconBox( 184 | child: Icon(Icons.filter_list_rounded, color: Colors.white), 185 | bgColor: AppColor.secondary, 186 | radius: 10, 187 | ) 188 | ], 189 | ), 190 | ); 191 | } 192 | 193 | int _selectedCategory = 0; 194 | Widget _buildCategories() { 195 | List lists = List.generate( 196 | categories.length, 197 | (index) => CategoryItem( 198 | data: categories[index], 199 | selected: index == _selectedCategory, 200 | onTap: () { 201 | setState(() { 202 | _selectedCategory = index; 203 | }); 204 | }, 205 | ), 206 | ); 207 | return SingleChildScrollView( 208 | scrollDirection: Axis.horizontal, 209 | padding: EdgeInsets.only(bottom: 5, left: 15), 210 | child: Row(children: lists), 211 | ); 212 | } 213 | 214 | Widget _buildPopulars() { 215 | return CarouselSlider( 216 | options: CarouselOptions( 217 | height: 240, 218 | enlargeCenterPage: true, 219 | disableCenter: true, 220 | viewportFraction: .8, 221 | ), 222 | items: List.generate( 223 | populars.length, 224 | (index) => PropertyItem( 225 | data: populars[index], 226 | ), 227 | ), 228 | ); 229 | } 230 | 231 | Widget _buildRecommended() { 232 | List lists = List.generate( 233 | recommended.length, 234 | (index) => RecommendItem( 235 | data: recommended[index], 236 | ), 237 | ); 238 | 239 | return SingleChildScrollView( 240 | scrollDirection: Axis.horizontal, 241 | padding: EdgeInsets.only(bottom: 5, left: 15), 242 | child: Row(children: lists), 243 | ); 244 | } 245 | 246 | Widget _buildRecent() { 247 | List lists = List.generate( 248 | recents.length, 249 | (index) => RecentItem( 250 | data: recents[index], 251 | ), 252 | ); 253 | 254 | return SingleChildScrollView( 255 | scrollDirection: Axis.horizontal, 256 | padding: EdgeInsets.only(bottom: 5, left: 15), 257 | child: Row(children: lists), 258 | ); 259 | } 260 | } 261 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/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.8.2" 11 | boolean_selector: 12 | dependency: transitive 13 | description: 14 | name: boolean_selector 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "2.1.0" 18 | carousel_slider: 19 | dependency: "direct main" 20 | description: 21 | name: carousel_slider 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "4.0.0" 25 | characters: 26 | dependency: transitive 27 | description: 28 | name: characters 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.2.0" 32 | charcode: 33 | dependency: transitive 34 | description: 35 | name: charcode 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.3.1" 39 | clock: 40 | dependency: transitive 41 | description: 42 | name: clock 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.1.0" 46 | collection: 47 | dependency: transitive 48 | description: 49 | name: collection 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "1.15.0" 53 | crypto: 54 | dependency: transitive 55 | description: 56 | name: crypto 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "3.0.1" 60 | cupertino_icons: 61 | dependency: "direct main" 62 | description: 63 | name: cupertino_icons 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "1.0.4" 67 | fake_async: 68 | dependency: transitive 69 | description: 70 | name: fake_async 71 | url: "https://pub.dartlang.org" 72 | source: hosted 73 | version: "1.2.0" 74 | ffi: 75 | dependency: transitive 76 | description: 77 | name: ffi 78 | url: "https://pub.dartlang.org" 79 | source: hosted 80 | version: "1.1.2" 81 | file: 82 | dependency: transitive 83 | description: 84 | name: file 85 | url: "https://pub.dartlang.org" 86 | source: hosted 87 | version: "6.1.2" 88 | flutter: 89 | dependency: "direct main" 90 | description: flutter 91 | source: sdk 92 | version: "0.0.0" 93 | flutter_test: 94 | dependency: "direct dev" 95 | description: flutter 96 | source: sdk 97 | version: "0.0.0" 98 | font_awesome_flutter: 99 | dependency: "direct main" 100 | description: 101 | name: font_awesome_flutter 102 | url: "https://pub.dartlang.org" 103 | source: hosted 104 | version: "9.2.0" 105 | google_fonts: 106 | dependency: "direct main" 107 | description: 108 | name: google_fonts 109 | url: "https://pub.dartlang.org" 110 | source: hosted 111 | version: "2.2.0" 112 | http: 113 | dependency: transitive 114 | description: 115 | name: http 116 | url: "https://pub.dartlang.org" 117 | source: hosted 118 | version: "0.13.3" 119 | http_parser: 120 | dependency: transitive 121 | description: 122 | name: http_parser 123 | url: "https://pub.dartlang.org" 124 | source: hosted 125 | version: "4.0.0" 126 | matcher: 127 | dependency: transitive 128 | description: 129 | name: matcher 130 | url: "https://pub.dartlang.org" 131 | source: hosted 132 | version: "0.12.11" 133 | material_color_utilities: 134 | dependency: transitive 135 | description: 136 | name: material_color_utilities 137 | url: "https://pub.dartlang.org" 138 | source: hosted 139 | version: "0.1.3" 140 | meta: 141 | dependency: transitive 142 | description: 143 | name: meta 144 | url: "https://pub.dartlang.org" 145 | source: hosted 146 | version: "1.7.0" 147 | path: 148 | dependency: transitive 149 | description: 150 | name: path 151 | url: "https://pub.dartlang.org" 152 | source: hosted 153 | version: "1.8.0" 154 | path_provider: 155 | dependency: transitive 156 | description: 157 | name: path_provider 158 | url: "https://pub.dartlang.org" 159 | source: hosted 160 | version: "2.0.4" 161 | path_provider_linux: 162 | dependency: transitive 163 | description: 164 | name: path_provider_linux 165 | url: "https://pub.dartlang.org" 166 | source: hosted 167 | version: "2.1.4" 168 | path_provider_macos: 169 | dependency: transitive 170 | description: 171 | name: path_provider_macos 172 | url: "https://pub.dartlang.org" 173 | source: hosted 174 | version: "2.0.4" 175 | path_provider_platform_interface: 176 | dependency: transitive 177 | description: 178 | name: path_provider_platform_interface 179 | url: "https://pub.dartlang.org" 180 | source: hosted 181 | version: "2.0.1" 182 | path_provider_windows: 183 | dependency: transitive 184 | description: 185 | name: path_provider_windows 186 | url: "https://pub.dartlang.org" 187 | source: hosted 188 | version: "2.0.4" 189 | pedantic: 190 | dependency: transitive 191 | description: 192 | name: pedantic 193 | url: "https://pub.dartlang.org" 194 | source: hosted 195 | version: "1.11.1" 196 | platform: 197 | dependency: transitive 198 | description: 199 | name: platform 200 | url: "https://pub.dartlang.org" 201 | source: hosted 202 | version: "3.1.0" 203 | plugin_platform_interface: 204 | dependency: transitive 205 | description: 206 | name: plugin_platform_interface 207 | url: "https://pub.dartlang.org" 208 | source: hosted 209 | version: "2.0.2" 210 | process: 211 | dependency: transitive 212 | description: 213 | name: process 214 | url: "https://pub.dartlang.org" 215 | source: hosted 216 | version: "4.2.3" 217 | sky_engine: 218 | dependency: transitive 219 | description: flutter 220 | source: sdk 221 | version: "0.0.99" 222 | source_span: 223 | dependency: transitive 224 | description: 225 | name: source_span 226 | url: "https://pub.dartlang.org" 227 | source: hosted 228 | version: "1.8.1" 229 | stack_trace: 230 | dependency: transitive 231 | description: 232 | name: stack_trace 233 | url: "https://pub.dartlang.org" 234 | source: hosted 235 | version: "1.10.0" 236 | stream_channel: 237 | dependency: transitive 238 | description: 239 | name: stream_channel 240 | url: "https://pub.dartlang.org" 241 | source: hosted 242 | version: "2.1.0" 243 | string_scanner: 244 | dependency: transitive 245 | description: 246 | name: string_scanner 247 | url: "https://pub.dartlang.org" 248 | source: hosted 249 | version: "1.1.0" 250 | term_glyph: 251 | dependency: transitive 252 | description: 253 | name: term_glyph 254 | url: "https://pub.dartlang.org" 255 | source: hosted 256 | version: "1.2.0" 257 | test_api: 258 | dependency: transitive 259 | description: 260 | name: test_api 261 | url: "https://pub.dartlang.org" 262 | source: hosted 263 | version: "0.4.8" 264 | typed_data: 265 | dependency: transitive 266 | description: 267 | name: typed_data 268 | url: "https://pub.dartlang.org" 269 | source: hosted 270 | version: "1.3.0" 271 | vector_math: 272 | dependency: transitive 273 | description: 274 | name: vector_math 275 | url: "https://pub.dartlang.org" 276 | source: hosted 277 | version: "2.1.1" 278 | win32: 279 | dependency: transitive 280 | description: 281 | name: win32 282 | url: "https://pub.dartlang.org" 283 | source: hosted 284 | version: "2.2.10" 285 | xdg_directories: 286 | dependency: transitive 287 | description: 288 | name: xdg_directories 289 | url: "https://pub.dartlang.org" 290 | source: hosted 291 | version: "0.2.0" 292 | sdks: 293 | dart: ">=2.14.0 <3.0.0" 294 | flutter: ">=2.0.0" 295 | -------------------------------------------------------------------------------- /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 | 6C8ECD6F2486B73DB85F45CD /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2279A86D9B11C7C39B90F506 /* Pods_Runner.framework */; }; 13 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 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 | 1C5CC7E46934FDE0E447442D /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; 36 | 2279A86D9B11C7C39B90F506 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 37 | 33FEEB79E32B62423941CBAA /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; 38 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 39 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 40 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 41 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 42 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 43 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 44 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 46 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 47 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 48 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 49 | AA70A6DF0334C2E535E224A2 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | 6C8ECD6F2486B73DB85F45CD /* Pods_Runner.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | /* End PBXFrameworksBuildPhase section */ 62 | 63 | /* Begin PBXGroup section */ 64 | 6E75A15E6B4C7D2038234B4B /* Frameworks */ = { 65 | isa = PBXGroup; 66 | children = ( 67 | 2279A86D9B11C7C39B90F506 /* Pods_Runner.framework */, 68 | ); 69 | name = Frameworks; 70 | sourceTree = ""; 71 | }; 72 | 92F4E10C4DBF0C36141E5840 /* Pods */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | 33FEEB79E32B62423941CBAA /* Pods-Runner.debug.xcconfig */, 76 | AA70A6DF0334C2E535E224A2 /* Pods-Runner.release.xcconfig */, 77 | 1C5CC7E46934FDE0E447442D /* Pods-Runner.profile.xcconfig */, 78 | ); 79 | name = Pods; 80 | path = Pods; 81 | sourceTree = ""; 82 | }; 83 | 9740EEB11CF90186004384FC /* Flutter */ = { 84 | isa = PBXGroup; 85 | children = ( 86 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 87 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 88 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 89 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 90 | ); 91 | name = Flutter; 92 | sourceTree = ""; 93 | }; 94 | 97C146E51CF9000F007C117D = { 95 | isa = PBXGroup; 96 | children = ( 97 | 9740EEB11CF90186004384FC /* Flutter */, 98 | 97C146F01CF9000F007C117D /* Runner */, 99 | 97C146EF1CF9000F007C117D /* Products */, 100 | 92F4E10C4DBF0C36141E5840 /* Pods */, 101 | 6E75A15E6B4C7D2038234B4B /* Frameworks */, 102 | ); 103 | sourceTree = ""; 104 | }; 105 | 97C146EF1CF9000F007C117D /* Products */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 97C146EE1CF9000F007C117D /* Runner.app */, 109 | ); 110 | name = Products; 111 | sourceTree = ""; 112 | }; 113 | 97C146F01CF9000F007C117D /* Runner */ = { 114 | isa = PBXGroup; 115 | children = ( 116 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 117 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 118 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 119 | 97C147021CF9000F007C117D /* Info.plist */, 120 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 121 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 122 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 123 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 124 | ); 125 | path = Runner; 126 | sourceTree = ""; 127 | }; 128 | /* End PBXGroup section */ 129 | 130 | /* Begin PBXNativeTarget section */ 131 | 97C146ED1CF9000F007C117D /* Runner */ = { 132 | isa = PBXNativeTarget; 133 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 134 | buildPhases = ( 135 | 94D7F106CD18BA2772B4BC0B /* [CP] Check Pods Manifest.lock */, 136 | 9740EEB61CF901F6004384FC /* Run Script */, 137 | 97C146EA1CF9000F007C117D /* Sources */, 138 | 97C146EB1CF9000F007C117D /* Frameworks */, 139 | 97C146EC1CF9000F007C117D /* Resources */, 140 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 141 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 142 | 6FF052D9A0599EBE3CDD6061 /* [CP] Embed Pods Frameworks */, 143 | ); 144 | buildRules = ( 145 | ); 146 | dependencies = ( 147 | ); 148 | name = Runner; 149 | productName = Runner; 150 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 151 | productType = "com.apple.product-type.application"; 152 | }; 153 | /* End PBXNativeTarget section */ 154 | 155 | /* Begin PBXProject section */ 156 | 97C146E61CF9000F007C117D /* Project object */ = { 157 | isa = PBXProject; 158 | attributes = { 159 | LastUpgradeCheck = 1020; 160 | ORGANIZATIONNAME = ""; 161 | TargetAttributes = { 162 | 97C146ED1CF9000F007C117D = { 163 | CreatedOnToolsVersion = 7.3.1; 164 | LastSwiftMigration = 1100; 165 | }; 166 | }; 167 | }; 168 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 169 | compatibilityVersion = "Xcode 9.3"; 170 | developmentRegion = en; 171 | hasScannedForEncodings = 0; 172 | knownRegions = ( 173 | en, 174 | Base, 175 | ); 176 | mainGroup = 97C146E51CF9000F007C117D; 177 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 178 | projectDirPath = ""; 179 | projectRoot = ""; 180 | targets = ( 181 | 97C146ED1CF9000F007C117D /* Runner */, 182 | ); 183 | }; 184 | /* End PBXProject section */ 185 | 186 | /* Begin PBXResourcesBuildPhase section */ 187 | 97C146EC1CF9000F007C117D /* Resources */ = { 188 | isa = PBXResourcesBuildPhase; 189 | buildActionMask = 2147483647; 190 | files = ( 191 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 192 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 193 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 194 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 195 | ); 196 | runOnlyForDeploymentPostprocessing = 0; 197 | }; 198 | /* End PBXResourcesBuildPhase section */ 199 | 200 | /* Begin PBXShellScriptBuildPhase section */ 201 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 202 | isa = PBXShellScriptBuildPhase; 203 | buildActionMask = 2147483647; 204 | files = ( 205 | ); 206 | inputPaths = ( 207 | ); 208 | name = "Thin Binary"; 209 | outputPaths = ( 210 | ); 211 | runOnlyForDeploymentPostprocessing = 0; 212 | shellPath = /bin/sh; 213 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 214 | }; 215 | 6FF052D9A0599EBE3CDD6061 /* [CP] Embed Pods Frameworks */ = { 216 | isa = PBXShellScriptBuildPhase; 217 | buildActionMask = 2147483647; 218 | files = ( 219 | ); 220 | inputFileListPaths = ( 221 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", 222 | ); 223 | name = "[CP] Embed Pods Frameworks"; 224 | outputFileListPaths = ( 225 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", 226 | ); 227 | runOnlyForDeploymentPostprocessing = 0; 228 | shellPath = /bin/sh; 229 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; 230 | showEnvVarsInLog = 0; 231 | }; 232 | 94D7F106CD18BA2772B4BC0B /* [CP] Check Pods Manifest.lock */ = { 233 | isa = PBXShellScriptBuildPhase; 234 | buildActionMask = 2147483647; 235 | files = ( 236 | ); 237 | inputFileListPaths = ( 238 | ); 239 | inputPaths = ( 240 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 241 | "${PODS_ROOT}/Manifest.lock", 242 | ); 243 | name = "[CP] Check Pods Manifest.lock"; 244 | outputFileListPaths = ( 245 | ); 246 | outputPaths = ( 247 | "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", 248 | ); 249 | runOnlyForDeploymentPostprocessing = 0; 250 | shellPath = /bin/sh; 251 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 252 | showEnvVarsInLog = 0; 253 | }; 254 | 9740EEB61CF901F6004384FC /* Run Script */ = { 255 | isa = PBXShellScriptBuildPhase; 256 | buildActionMask = 2147483647; 257 | files = ( 258 | ); 259 | inputPaths = ( 260 | ); 261 | name = "Run Script"; 262 | outputPaths = ( 263 | ); 264 | runOnlyForDeploymentPostprocessing = 0; 265 | shellPath = /bin/sh; 266 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 267 | }; 268 | /* End PBXShellScriptBuildPhase section */ 269 | 270 | /* Begin PBXSourcesBuildPhase section */ 271 | 97C146EA1CF9000F007C117D /* Sources */ = { 272 | isa = PBXSourcesBuildPhase; 273 | buildActionMask = 2147483647; 274 | files = ( 275 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 276 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 277 | ); 278 | runOnlyForDeploymentPostprocessing = 0; 279 | }; 280 | /* End PBXSourcesBuildPhase section */ 281 | 282 | /* Begin PBXVariantGroup section */ 283 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 284 | isa = PBXVariantGroup; 285 | children = ( 286 | 97C146FB1CF9000F007C117D /* Base */, 287 | ); 288 | name = Main.storyboard; 289 | sourceTree = ""; 290 | }; 291 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 292 | isa = PBXVariantGroup; 293 | children = ( 294 | 97C147001CF9000F007C117D /* Base */, 295 | ); 296 | name = LaunchScreen.storyboard; 297 | sourceTree = ""; 298 | }; 299 | /* End PBXVariantGroup section */ 300 | 301 | /* Begin XCBuildConfiguration section */ 302 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 303 | isa = XCBuildConfiguration; 304 | buildSettings = { 305 | ALWAYS_SEARCH_USER_PATHS = NO; 306 | CLANG_ANALYZER_NONNULL = YES; 307 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 308 | CLANG_CXX_LIBRARY = "libc++"; 309 | CLANG_ENABLE_MODULES = YES; 310 | CLANG_ENABLE_OBJC_ARC = YES; 311 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 312 | CLANG_WARN_BOOL_CONVERSION = YES; 313 | CLANG_WARN_COMMA = YES; 314 | CLANG_WARN_CONSTANT_CONVERSION = YES; 315 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 316 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 317 | CLANG_WARN_EMPTY_BODY = YES; 318 | CLANG_WARN_ENUM_CONVERSION = YES; 319 | CLANG_WARN_INFINITE_RECURSION = YES; 320 | CLANG_WARN_INT_CONVERSION = YES; 321 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 322 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 323 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 324 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 325 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 326 | CLANG_WARN_STRICT_PROTOTYPES = YES; 327 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 328 | CLANG_WARN_UNREACHABLE_CODE = YES; 329 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 330 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 331 | COPY_PHASE_STRIP = NO; 332 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 333 | ENABLE_NS_ASSERTIONS = NO; 334 | ENABLE_STRICT_OBJC_MSGSEND = YES; 335 | GCC_C_LANGUAGE_STANDARD = gnu99; 336 | GCC_NO_COMMON_BLOCKS = YES; 337 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 338 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 339 | GCC_WARN_UNDECLARED_SELECTOR = YES; 340 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 341 | GCC_WARN_UNUSED_FUNCTION = YES; 342 | GCC_WARN_UNUSED_VARIABLE = YES; 343 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 344 | MTL_ENABLE_DEBUG_INFO = NO; 345 | SDKROOT = iphoneos; 346 | SUPPORTED_PLATFORMS = iphoneos; 347 | TARGETED_DEVICE_FAMILY = "1,2"; 348 | VALIDATE_PRODUCT = YES; 349 | }; 350 | name = Profile; 351 | }; 352 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 353 | isa = XCBuildConfiguration; 354 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 355 | buildSettings = { 356 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 357 | CLANG_ENABLE_MODULES = YES; 358 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 359 | ENABLE_BITCODE = NO; 360 | INFOPLIST_FILE = Runner/Info.plist; 361 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 362 | PRODUCT_BUNDLE_IDENTIFIER = com.example.realEstate; 363 | PRODUCT_NAME = "$(TARGET_NAME)"; 364 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 365 | SWIFT_VERSION = 5.0; 366 | VERSIONING_SYSTEM = "apple-generic"; 367 | }; 368 | name = Profile; 369 | }; 370 | 97C147031CF9000F007C117D /* Debug */ = { 371 | isa = XCBuildConfiguration; 372 | buildSettings = { 373 | ALWAYS_SEARCH_USER_PATHS = NO; 374 | CLANG_ANALYZER_NONNULL = YES; 375 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 376 | CLANG_CXX_LIBRARY = "libc++"; 377 | CLANG_ENABLE_MODULES = YES; 378 | CLANG_ENABLE_OBJC_ARC = YES; 379 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 380 | CLANG_WARN_BOOL_CONVERSION = YES; 381 | CLANG_WARN_COMMA = YES; 382 | CLANG_WARN_CONSTANT_CONVERSION = YES; 383 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 384 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 385 | CLANG_WARN_EMPTY_BODY = YES; 386 | CLANG_WARN_ENUM_CONVERSION = YES; 387 | CLANG_WARN_INFINITE_RECURSION = YES; 388 | CLANG_WARN_INT_CONVERSION = YES; 389 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 390 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 391 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 392 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 393 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 394 | CLANG_WARN_STRICT_PROTOTYPES = YES; 395 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 396 | CLANG_WARN_UNREACHABLE_CODE = YES; 397 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 398 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 399 | COPY_PHASE_STRIP = NO; 400 | DEBUG_INFORMATION_FORMAT = dwarf; 401 | ENABLE_STRICT_OBJC_MSGSEND = YES; 402 | ENABLE_TESTABILITY = YES; 403 | GCC_C_LANGUAGE_STANDARD = gnu99; 404 | GCC_DYNAMIC_NO_PIC = NO; 405 | GCC_NO_COMMON_BLOCKS = YES; 406 | GCC_OPTIMIZATION_LEVEL = 0; 407 | GCC_PREPROCESSOR_DEFINITIONS = ( 408 | "DEBUG=1", 409 | "$(inherited)", 410 | ); 411 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 412 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 413 | GCC_WARN_UNDECLARED_SELECTOR = YES; 414 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 415 | GCC_WARN_UNUSED_FUNCTION = YES; 416 | GCC_WARN_UNUSED_VARIABLE = YES; 417 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 418 | MTL_ENABLE_DEBUG_INFO = YES; 419 | ONLY_ACTIVE_ARCH = YES; 420 | SDKROOT = iphoneos; 421 | TARGETED_DEVICE_FAMILY = "1,2"; 422 | }; 423 | name = Debug; 424 | }; 425 | 97C147041CF9000F007C117D /* Release */ = { 426 | isa = XCBuildConfiguration; 427 | buildSettings = { 428 | ALWAYS_SEARCH_USER_PATHS = NO; 429 | CLANG_ANALYZER_NONNULL = YES; 430 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 431 | CLANG_CXX_LIBRARY = "libc++"; 432 | CLANG_ENABLE_MODULES = YES; 433 | CLANG_ENABLE_OBJC_ARC = YES; 434 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 435 | CLANG_WARN_BOOL_CONVERSION = YES; 436 | CLANG_WARN_COMMA = YES; 437 | CLANG_WARN_CONSTANT_CONVERSION = YES; 438 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 439 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 440 | CLANG_WARN_EMPTY_BODY = YES; 441 | CLANG_WARN_ENUM_CONVERSION = YES; 442 | CLANG_WARN_INFINITE_RECURSION = YES; 443 | CLANG_WARN_INT_CONVERSION = YES; 444 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 445 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 446 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 447 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 448 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 449 | CLANG_WARN_STRICT_PROTOTYPES = YES; 450 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 451 | CLANG_WARN_UNREACHABLE_CODE = YES; 452 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 453 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 454 | COPY_PHASE_STRIP = NO; 455 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 456 | ENABLE_NS_ASSERTIONS = NO; 457 | ENABLE_STRICT_OBJC_MSGSEND = YES; 458 | GCC_C_LANGUAGE_STANDARD = gnu99; 459 | GCC_NO_COMMON_BLOCKS = YES; 460 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 461 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 462 | GCC_WARN_UNDECLARED_SELECTOR = YES; 463 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 464 | GCC_WARN_UNUSED_FUNCTION = YES; 465 | GCC_WARN_UNUSED_VARIABLE = YES; 466 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 467 | MTL_ENABLE_DEBUG_INFO = NO; 468 | SDKROOT = iphoneos; 469 | SUPPORTED_PLATFORMS = iphoneos; 470 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 471 | TARGETED_DEVICE_FAMILY = "1,2"; 472 | VALIDATE_PRODUCT = YES; 473 | }; 474 | name = Release; 475 | }; 476 | 97C147061CF9000F007C117D /* Debug */ = { 477 | isa = XCBuildConfiguration; 478 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 479 | buildSettings = { 480 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 481 | CLANG_ENABLE_MODULES = YES; 482 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 483 | ENABLE_BITCODE = NO; 484 | INFOPLIST_FILE = Runner/Info.plist; 485 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 486 | PRODUCT_BUNDLE_IDENTIFIER = com.example.realEstate; 487 | PRODUCT_NAME = "$(TARGET_NAME)"; 488 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 489 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 490 | SWIFT_VERSION = 5.0; 491 | VERSIONING_SYSTEM = "apple-generic"; 492 | }; 493 | name = Debug; 494 | }; 495 | 97C147071CF9000F007C117D /* Release */ = { 496 | isa = XCBuildConfiguration; 497 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 498 | buildSettings = { 499 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 500 | CLANG_ENABLE_MODULES = YES; 501 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 502 | ENABLE_BITCODE = NO; 503 | INFOPLIST_FILE = Runner/Info.plist; 504 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 505 | PRODUCT_BUNDLE_IDENTIFIER = com.example.realEstate; 506 | PRODUCT_NAME = "$(TARGET_NAME)"; 507 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 508 | SWIFT_VERSION = 5.0; 509 | VERSIONING_SYSTEM = "apple-generic"; 510 | }; 511 | name = Release; 512 | }; 513 | /* End XCBuildConfiguration section */ 514 | 515 | /* Begin XCConfigurationList section */ 516 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 517 | isa = XCConfigurationList; 518 | buildConfigurations = ( 519 | 97C147031CF9000F007C117D /* Debug */, 520 | 97C147041CF9000F007C117D /* Release */, 521 | 249021D3217E4FDB00AE95B9 /* Profile */, 522 | ); 523 | defaultConfigurationIsVisible = 0; 524 | defaultConfigurationName = Release; 525 | }; 526 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 527 | isa = XCConfigurationList; 528 | buildConfigurations = ( 529 | 97C147061CF9000F007C117D /* Debug */, 530 | 97C147071CF9000F007C117D /* Release */, 531 | 249021D4217E4FDB00AE95B9 /* Profile */, 532 | ); 533 | defaultConfigurationIsVisible = 0; 534 | defaultConfigurationName = Release; 535 | }; 536 | /* End XCConfigurationList section */ 537 | }; 538 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 539 | } 540 | --------------------------------------------------------------------------------