├── lib ├── images │ └── ss.png ├── utils │ └── core.dart ├── requests │ └── google_maps_requests.dart ├── main.dart ├── states │ └── app_state.dart └── screens │ └── home.dart ├── 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 │ │ │ │ ├── values │ │ │ │ │ └── styles.xml │ │ │ │ └── drawable │ │ │ │ │ └── launch_background.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── santosenoque │ │ │ │ │ └── uber_clone │ │ │ │ │ └── MainActivity.java │ │ │ └── AndroidManifest.xml │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── google-services.json │ └── build.gradle ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── build.gradle ├── ios ├── Flutter │ ├── Debug.xcconfig │ ├── Release.xcconfig │ ├── flutter_export_environment.sh │ └── AppFrameworkInfo.plist ├── Runner │ ├── AppDelegate.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 │ ├── main.m │ ├── AppDelegate.m │ ├── GoogleService-Info.plist │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.storyboard │ └── Info.plist ├── Runner.xcodeproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ └── project.pbxproj ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings ├── Podfile └── Podfile.lock ├── .metadata ├── README.md ├── test └── widget_test.dart ├── .gitignore ├── pubspec.yaml ├── .flutter-plugins-dependencies └── pubspec.lock /lib/images/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashjindal786/uber_clone_with_flutter/HEAD/lib/images/ss.png -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /lib/utils/core.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | const Color black = Colors.black; 4 | const Color white = Colors.white; -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashjindal786/uber_clone_with_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashjindal786/uber_clone_with_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashjindal786/uber_clone_with_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinashjindal786/uber_clone_with_flutter/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/avinashjindal786/uber_clone_with_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 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: 01fc01812d4b07264dd0b3334f4b3f324814b573 8 | channel: master 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. -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/santosenoque/uber_clone/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.santosenoque.uber_clone; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | import io.flutter.plugins.GeneratedPluginRegistrant; 6 | 7 | public class MainActivity extends FlutterActivity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | GeneratedPluginRegistrant.registerWith(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "GeneratedPluginRegistrant.h" 3 | #import "GoogleMaps/GoogleMaps.h" 4 | 5 | @implementation AppDelegate 6 | 7 | - (BOOL)application:(UIApplication *)application 8 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 9 | [GMSServices provideAPIKey:@"API_KEY"]; 10 | [GeneratedPluginRegistrant registerWithRegistry:self]; 11 | // Override point for customization after application launch. 12 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 13 | } 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /ios/Flutter/flutter_export_environment.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # This is a generated file; do not edit or check into version control. 3 | export "FLUTTER_ROOT=F:\flutter\flutter" 4 | export "FLUTTER_APPLICATION_PATH=F:\my_flutter_apps\uber_apps\uber_clone_with_flutter" 5 | export "COCOAPODS_PARALLEL_CODE_SIGN=true" 6 | export "FLUTTER_TARGET=lib\main.dart" 7 | export "FLUTTER_BUILD_DIR=build" 8 | export "SYMROOT=${SOURCE_ROOT}/../build\ios" 9 | export "FLUTTER_BUILD_NAME=1.0.0" 10 | export "FLUTTER_BUILD_NUMBER=1" 11 | export "DART_OBFUSCATION=false" 12 | export "TRACK_WIDGET_CREATION=false" 13 | export "TREE_SHAKE_ICONS=false" 14 | export "PACKAGE_CONFIG=.packages" 15 | -------------------------------------------------------------------------------- /lib/requests/google_maps_requests.dart: -------------------------------------------------------------------------------- 1 | import 'package:google_maps_flutter/google_maps_flutter.dart'; 2 | import 'package:http/http.dart' as http; 3 | import 'dart:convert'; 4 | const apiKey = "AIzaSyBhDflq5iJrXIcKpeq0IzLQPQpOboX91lY"; 5 | 6 | class GoogleMapsServices{ 7 | Future getRouteCoordinates(LatLng l1, LatLng l2)async{ 8 | String url = "https://maps.googleapis.com/maps/api/directions/json?origin=${l1.latitude},${l1.longitude}&destination=${l2.latitude},${l2.longitude}&key=$apiKey"; 9 | http.Response response = await http.get(url); 10 | Map values = jsonDecode(response.body); 11 | return values["routes"][0]["overview_polyline"]["points"]; 12 | } 13 | } -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:provider/provider.dart'; 3 | import 'package:uber_clone/states/app_state.dart'; 4 | import 'screens/home.dart'; 5 | 6 | void main() { 7 | return runApp(MultiProvider(providers: [ 8 | ChangeNotifierProvider.value(value: AppState(),) 9 | ], 10 | child: MyApp(),)); 11 | } 12 | 13 | class MyApp extends StatelessWidget { 14 | // This widget is the root of your application. 15 | @override 16 | Widget build(BuildContext context) { 17 | return MaterialApp( 18 | debugShowCheckedModeBanner: false, 19 | title: 'uber clone', 20 | theme: ThemeData( 21 | primarySwatch: Colors.blue, 22 | ), 23 | home: MyHomePage(title: 'Uber clone'), 24 | ); 25 | } 26 | } 27 | 28 | 29 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Uber clone with flutter (rider side) 2 | 3 | This is a clone of the famous application Uber, and its done with the flutter frame work, this particular repo, contains the code for the rider side 4 | 5 | 6 | 7 | ### Don't forget to insert your APIKEY for the project to work 8 | * insert you Api key for android (android ->> app ->> src ->> main ->> manifest) 9 | * insert your Api key for Ios (ios ->> runner ->> appdelegate.m) 10 | 11 | ## Authors Information 12 | My name is Santos Enoque, I am a flutter and python developer, for more information please check the links bellow. 13 | 14 | - [Youtube: Santos Enoque](https://www.youtube.com/channel/UCRl79zOEtiLCglAFZJJzEZQ) 15 | - [LinkedIn: Santos Enoque](www.linkedin.com/in/santos-enoque) 16 | - Skype: santos enoque 17 | 18 | For help getting started with Flutter, view our 19 | [online documentation](https://flutter.io/docs), which offers tutorials, 20 | samples, guidance on mobile development, and a full API reference. 21 | -------------------------------------------------------------------------------- /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:uber_clone/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 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.2.1' 9 | classpath 'com.google.gms:google-services:4.0.1' 10 | } 11 | 12 | subprojects { 13 | project.configurations.all { 14 | resolutionStrategy.eachDependency { details -> 15 | if (details.requested.group == 'com.android.support' 16 | && !details.requested.name.contains('multidex') ) { 17 | details.useVersion "27.1.1" 18 | } 19 | if (details.requested.group == 'androidx.core' 20 | && !details.requested.name.contains('androidx') ) { 21 | details.useVersion "1.0.1" 22 | } 23 | } 24 | } 25 | } 26 | } 27 | 28 | allprojects { 29 | repositories { 30 | google() 31 | jcenter() 32 | } 33 | } 34 | 35 | rootProject.buildDir = '../build' 36 | subprojects { 37 | project.buildDir = "${rootProject.buildDir}/${project.name}" 38 | } 39 | subprojects { 40 | project.evaluationDependsOn(':app') 41 | } 42 | 43 | task clean(type: Delete) { 44 | delete rootProject.buildDir 45 | } 46 | -------------------------------------------------------------------------------- /ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CLIENT_ID 6 | 515320170566-v5avq3umo61c7gv9vaepulcg7ed1fnos.apps.googleusercontent.com 7 | REVERSED_CLIENT_ID 8 | com.googleusercontent.apps.515320170566-v5avq3umo61c7gv9vaepulcg7ed1fnos 9 | ANDROID_CLIENT_ID 10 | 515320170566-k773clada9goq54va8tm47i9gje7s0ie.apps.googleusercontent.com 11 | API_KEY 12 | AIzaSyDO81EdKLC4zB1vXXpnMN_dZKFw4ewMpx0 13 | GCM_SENDER_ID 14 | 515320170566 15 | PLIST_VERSION 16 | 1 17 | BUNDLE_ID 18 | com.santosenoque.uberClone 19 | PROJECT_ID 20 | uberclone-296e4 21 | STORAGE_BUCKET 22 | uberclone-296e4.appspot.com 23 | IS_ADS_ENABLED 24 | 25 | IS_ANALYTICS_ENABLED 26 | 27 | IS_APPINVITE_ENABLED 28 | 29 | IS_GCM_ENABLED 30 | 31 | IS_SIGNIN_ENABLED 32 | 33 | GOOGLE_APP_ID 34 | 1:515320170566:ios:5e2ce6cb2adaa761 35 | DATABASE_URL 36 | https://uberclone-296e4.firebaseio.com 37 | 38 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ 17 | 18 | # Visual Studio Code related 19 | .vscode/ 20 | 21 | # Flutter/Dart/Pub related 22 | **/doc/api/ 23 | .dart_tool/ 24 | .flutter-plugins 25 | .packages 26 | .pub-cache/ 27 | .pub/ 28 | /build/ 29 | 30 | # Android related 31 | **/android/**/gradle-wrapper.jar 32 | **/android/.gradle 33 | **/android/captures/ 34 | **/android/gradlew 35 | **/android/gradlew.bat 36 | **/android/local.properties 37 | **/android/**/GeneratedPluginRegistrant.java 38 | 39 | # iOS/XCode related 40 | **/ios/**/*.mode1v3 41 | **/ios/**/*.mode2v3 42 | **/ios/**/*.moved-aside 43 | **/ios/**/*.pbxuser 44 | **/ios/**/*.perspectivev3 45 | **/ios/**/*sync/ 46 | **/ios/**/.sconsign.dblite 47 | **/ios/**/.tags* 48 | **/ios/**/.vagrant/ 49 | **/ios/**/DerivedData/ 50 | **/ios/**/Icon? 51 | **/ios/**/Pods/ 52 | **/ios/**/.symlinks/ 53 | **/ios/**/profile 54 | **/ios/**/xcuserdata 55 | **/ios/.generated/ 56 | **/ios/Flutter/App.framework 57 | **/ios/Flutter/Flutter.framework 58 | **/ios/Flutter/Generated.xcconfig 59 | **/ios/Flutter/app.flx 60 | **/ios/Flutter/app.zip 61 | **/ios/Flutter/flutter_assets/ 62 | **/ios/ServiceDefinitions.json 63 | **/ios/Runner/GeneratedPluginRegistrant.* 64 | 65 | # Exceptions to above rules. 66 | !**/ios/**/default.mode1v3 67 | !**/ios/**/default.mode2v3 68 | !**/ios/**/default.pbxuser 69 | !**/ios/**/default.perspectivev3 70 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages 71 | -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_info": { 3 | "project_number": "515320170566", 4 | "firebase_url": "https://uberclone-296e4.firebaseio.com", 5 | "project_id": "uberclone-296e4", 6 | "storage_bucket": "uberclone-296e4.appspot.com" 7 | }, 8 | "client": [ 9 | { 10 | "client_info": { 11 | "mobilesdk_app_id": "1:515320170566:android:92042fd14af89475", 12 | "android_client_info": { 13 | "package_name": "com.santosenoque.uber_clone" 14 | } 15 | }, 16 | "oauth_client": [ 17 | { 18 | "client_id": "515320170566-k773clada9goq54va8tm47i9gje7s0ie.apps.googleusercontent.com", 19 | "client_type": 1, 20 | "android_info": { 21 | "package_name": "com.santosenoque.uber_clone", 22 | "certificate_hash": "d1de65707c7ebcf4d8e50a8d1f0c507a286c740d" 23 | } 24 | }, 25 | { 26 | "client_id": "515320170566-1t55c60b950hd5gfdfef2pnjbp4s13ga.apps.googleusercontent.com", 27 | "client_type": 3 28 | } 29 | ], 30 | "api_key": [ 31 | { 32 | "current_key": "AIzaSyBLcpDnnknaH_SGCVxq_lCnmQ3HDhrezfI" 33 | } 34 | ], 35 | "services": { 36 | "appinvite_service": { 37 | "other_platform_oauth_client": [ 38 | { 39 | "client_id": "515320170566-1t55c60b950hd5gfdfef2pnjbp4s13ga.apps.googleusercontent.com", 40 | "client_type": 3 41 | } 42 | ] 43 | } 44 | } 45 | } 46 | ], 47 | "configuration_version": "1" 48 | } -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 10 | 11 | 14 | 15 | 22 | 26 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | uber_clone 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 | io.flutter.embedded_views_preview 46 | YES 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 26 | 27 | android { 28 | compileSdkVersion 28 29 | 30 | lintOptions { 31 | disable 'InvalidPackage' 32 | } 33 | 34 | defaultConfig { 35 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 36 | applicationId "com.santosenoque.uber_clone" 37 | minSdkVersion 16 38 | targetSdkVersion 28 39 | versionCode flutterVersionCode.toInteger() 40 | versionName flutterVersionName 41 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 42 | multiDexEnabled true 43 | } 44 | 45 | buildTypes { 46 | release { 47 | // TODO: Add your own signing config for the release build. 48 | // Signing with the debug keys for now, so `flutter run --release` works. 49 | signingConfig signingConfigs.debug 50 | } 51 | } 52 | } 53 | 54 | flutter { 55 | source '../..' 56 | } 57 | 58 | dependencies { 59 | testImplementation 'junit:junit:4.12' 60 | androidTestImplementation 'com.android.support.test:runner:1.0.2' 61 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 62 | implementation 'com.google.firebase:firebase-core:16.0.1' 63 | } 64 | 65 | apply plugin: 'com.google.gms.google-services' 66 | -------------------------------------------------------------------------------- /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 parse_KV_file(file, separator='=') 14 | file_abs_path = File.expand_path(file) 15 | if !File.exists? file_abs_path 16 | return []; 17 | end 18 | pods_ary = [] 19 | skip_line_start_symbols = ["#", "/"] 20 | File.foreach(file_abs_path) { |line| 21 | next if skip_line_start_symbols.any? { |symbol| line =~ /^\s*#{symbol}/ } 22 | plugin = line.split(pattern=separator) 23 | if plugin.length == 2 24 | podname = plugin[0].strip() 25 | path = plugin[1].strip() 26 | podpath = File.expand_path("#{path}", file_abs_path) 27 | pods_ary.push({:name => podname, :path => podpath}); 28 | else 29 | puts "Invalid plugin specification: #{line}" 30 | end 31 | } 32 | return pods_ary 33 | end 34 | 35 | target 'Runner' do 36 | # Prepare symlinks folder. We use symlinks to avoid having Podfile.lock 37 | # referring to absolute paths on developers' machines. 38 | system('rm -rf .symlinks') 39 | system('mkdir -p .symlinks/plugins') 40 | 41 | # Flutter Pods 42 | generated_xcode_build_settings = parse_KV_file('./Flutter/Generated.xcconfig') 43 | if generated_xcode_build_settings.empty? 44 | puts "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter packages get is executed first." 45 | end 46 | generated_xcode_build_settings.map { |p| 47 | if p[:name] == 'FLUTTER_FRAMEWORK_DIR' 48 | symlink = File.join('.symlinks', 'flutter') 49 | File.symlink(File.dirname(p[:path]), symlink) 50 | pod 'Flutter', :path => File.join(symlink, File.basename(p[:path])) 51 | end 52 | } 53 | 54 | # Plugin Pods 55 | plugin_pods = parse_KV_file('../.flutter-plugins') 56 | plugin_pods.map { |p| 57 | symlink = File.join('.symlinks', 'plugins', p[:name]) 58 | File.symlink(p[:path], symlink) 59 | pod p[:name], :path => File.join(symlink, 'ios') 60 | } 61 | end 62 | 63 | post_install do |installer| 64 | installer.pods_project.targets.each do |target| 65 | target.build_configurations.each do |config| 66 | config.build_settings['ENABLE_BITCODE'] = 'NO' 67 | end 68 | end 69 | end 70 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /ios/Runner/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 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: uber_clone 2 | description: A new Flutter application. 3 | 4 | # The following defines the version and build number for your application. 5 | # A version number is three numbers separated by dots, like 1.2.43 6 | # followed by an optional build number separated by a +. 7 | # Both the version and the builder number may be overridden in flutter 8 | # build by specifying --build-name and --build-number, respectively. 9 | # In Android, build-name is used as versionName while build-number used as versionCode. 10 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 11 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 12 | # Read more about iOS versioning at 13 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 14 | version: 1.0.0+1 15 | 16 | environment: 17 | sdk: ">=2.1.0 <3.0.0" 18 | 19 | dependencies: 20 | flutter: 21 | sdk: flutter 22 | cloud_firestore: any 23 | firebase_auth: ^0.8.4+5 24 | google_maps_flutter: any 25 | flutter_map: any 26 | # geoflutterfire: ^2.0.3+2 27 | location: ^2.3.5 28 | google_maps_webservice: ^0.0.14 29 | # geolocator: any 30 | http: ^0.12.0+2 31 | uuid: ^2.0.1 32 | geolocator: ^5.1.0 33 | # The following adds the Cupertino Icons font to your application. 34 | # Use with the CupertinoIcons class for iOS style icons. 35 | provider: ^3.0.0+1 36 | geocoder: ^0.1.2 37 | flutter_google_places: ^0.2.3 38 | # flutter_spinkit: "^3.1.0" 39 | geoflutterfire: any 40 | get_it: ^1.0.3+2 41 | shared_preferences: ^0.5.3+4 42 | flutter_spinkit: "^4.0.0" 43 | 44 | 45 | # The following adds the Cupertino Icons font to your application. 46 | # Use with the CupertinoIcons class for iOS style icons. 47 | cupertino_icons: ^0.1.2 48 | 49 | dev_dependencies: 50 | flutter_test: 51 | sdk: flutter 52 | 53 | 54 | # For information on the generic Dart part of this file, see the 55 | # following page: https://www.dartlang.org/tools/pub/pubspec 56 | 57 | # The following section is specific to Flutter. 58 | flutter: 59 | 60 | # The following line ensures that the Material Icons font is 61 | # included with your application, so that you can use the icons in 62 | # the material Icons class. 63 | uses-material-design: true 64 | 65 | # To add assets to your application, add an assets section, like this: 66 | # assets: 67 | # - images/a_dot_burr.jpeg 68 | # - images/a_dot_ham.jpeg 69 | 70 | # An image asset can refer to one or more resolution-specific "variants", see 71 | # https://flutter.io/assets-and-images/#resolution-aware. 72 | 73 | # For details regarding adding assets from package dependencies, see 74 | # https://flutter.io/assets-and-images/#from-packages 75 | 76 | # To add custom fonts to your application, add a fonts section here, 77 | # in this "flutter" section. Each entry in this list should have a 78 | # "family" key with the font family name, and a "fonts" key with a 79 | # list giving the asset and other descriptors for the font. For 80 | # example: 81 | # fonts: 82 | # - family: Schyler 83 | # fonts: 84 | # - asset: fonts/Schyler-Regular.ttf 85 | # - asset: fonts/Schyler-Italic.ttf 86 | # style: italic 87 | # - family: Trajan Pro 88 | # fonts: 89 | # - asset: fonts/TrajanPro.ttf 90 | # - asset: fonts/TrajanPro_Bold.ttf 91 | # weight: 700 92 | # 93 | # For details regarding fonts from package dependencies, 94 | # see https://flutter.io/custom-fonts/#from-packages 95 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 31 | 32 | 33 | 34 | 40 | 41 | 42 | 43 | 44 | 45 | 56 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 75 | 77 | 83 | 84 | 85 | 86 | 88 | 89 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /.flutter-plugins-dependencies: -------------------------------------------------------------------------------- 1 | {"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"cloud_firestore","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\cloud_firestore-0.10.1\\\\","dependencies":["firebase_core"]},{"name":"firebase_auth","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\firebase_auth-0.8.4+5\\\\","dependencies":["firebase_core"]},{"name":"firebase_core","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\firebase_core-0.3.4\\\\","dependencies":[]},{"name":"geocoder","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\geocoder-0.1.2\\\\","dependencies":[]},{"name":"geoflutterfire","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\geoflutterfire-2.0.3+3\\\\","dependencies":["cloud_firestore"]},{"name":"geolocator","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\geolocator-5.1.1+1\\\\","dependencies":["google_api_availability","location_permissions"]},{"name":"google_api_availability","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\google_api_availability-2.0.1\\\\","dependencies":[]},{"name":"google_maps_flutter","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\google_maps_flutter-0.5.15\\\\","dependencies":[]},{"name":"location","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\location-2.3.5\\\\","dependencies":[]},{"name":"location_permissions","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\location_permissions-2.0.2\\\\","dependencies":[]},{"name":"path_provider","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\path_provider-0.5.0+1\\\\","dependencies":[]},{"name":"shared_preferences","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\shared_preferences-0.5.3+4\\\\","dependencies":[]},{"name":"sqflite","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\sqflite-1.1.6+2\\\\","dependencies":[]}],"android":[{"name":"cloud_firestore","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\cloud_firestore-0.10.1\\\\","dependencies":["firebase_core"]},{"name":"firebase_auth","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\firebase_auth-0.8.4+5\\\\","dependencies":["firebase_core"]},{"name":"firebase_core","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\firebase_core-0.3.4\\\\","dependencies":[]},{"name":"geocoder","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\geocoder-0.1.2\\\\","dependencies":[]},{"name":"geoflutterfire","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\geoflutterfire-2.0.3+3\\\\","dependencies":["cloud_firestore"]},{"name":"geolocator","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\geolocator-5.1.1+1\\\\","dependencies":["google_api_availability","location_permissions"]},{"name":"google_api_availability","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\google_api_availability-2.0.1\\\\","dependencies":[]},{"name":"google_maps_flutter","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\google_maps_flutter-0.5.15\\\\","dependencies":[]},{"name":"location","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\location-2.3.5\\\\","dependencies":[]},{"name":"location_permissions","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\location_permissions-2.0.2\\\\","dependencies":[]},{"name":"path_provider","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\path_provider-0.5.0+1\\\\","dependencies":[]},{"name":"shared_preferences","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\shared_preferences-0.5.3+4\\\\","dependencies":[]},{"name":"sqflite","path":"F:\\\\flutter\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\sqflite-1.1.6+2\\\\","dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"cloud_firestore","dependencies":["firebase_core"]},{"name":"firebase_auth","dependencies":["firebase_core"]},{"name":"firebase_core","dependencies":[]},{"name":"geocoder","dependencies":[]},{"name":"geoflutterfire","dependencies":["cloud_firestore"]},{"name":"geolocator","dependencies":["google_api_availability","location_permissions"]},{"name":"google_api_availability","dependencies":[]},{"name":"google_maps_flutter","dependencies":[]},{"name":"location","dependencies":[]},{"name":"location_permissions","dependencies":[]},{"name":"path_provider","dependencies":[]},{"name":"shared_preferences","dependencies":[]},{"name":"sqflite","dependencies":[]}],"date_created":"2021-06-27 22:01:26.490123","version":"2.2.2"} -------------------------------------------------------------------------------- /lib/states/app_state.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter/widgets.dart'; 3 | import 'package:geolocator/geolocator.dart'; 4 | import 'package:google_maps_flutter/google_maps_flutter.dart'; 5 | import 'package:uber_clone/requests/google_maps_requests.dart'; 6 | 7 | class AppState with ChangeNotifier { 8 | static LatLng _initialPosition; 9 | LatLng _lastPosition = _initialPosition; 10 | bool locationServiceActive = true; 11 | final Set _markers = {}; 12 | final Set _polyLines = {}; 13 | GoogleMapController _mapController; 14 | GoogleMapsServices _googleMapsServices = GoogleMapsServices(); 15 | TextEditingController locationController = TextEditingController(); 16 | TextEditingController destinationController = TextEditingController(); 17 | LatLng get initialPosition => _initialPosition; 18 | LatLng get lastPosition => _lastPosition; 19 | GoogleMapsServices get googleMapsServices => _googleMapsServices; 20 | GoogleMapController get mapController => _mapController; 21 | Set get markers => _markers; 22 | Set get polyLines => _polyLines; 23 | 24 | AppState() { 25 | _getUserLocation(); 26 | _loadingInitialPosition(); 27 | } 28 | // ! TO GET THE USERS LOCATION 29 | void _getUserLocation() async { 30 | print("GET USER METHOD RUNNING ========="); 31 | Position position = await Geolocator() 32 | .getCurrentPosition(desiredAccuracy: LocationAccuracy.high); 33 | List placemark = await Geolocator() 34 | .placemarkFromCoordinates(position.latitude, position.longitude); 35 | _initialPosition = LatLng(position.latitude, position.longitude); 36 | print("the latitude is: ${position.longitude} and th longitude is: ${position.longitude} "); 37 | print("initial position is : ${_initialPosition.toString()}"); 38 | locationController.text = placemark[0].name; 39 | notifyListeners(); 40 | } 41 | 42 | // ! TO CREATE ROUTE 43 | void createRoute(String encondedPoly) { 44 | _polyLines.add(Polyline( 45 | polylineId: PolylineId(_lastPosition.toString()), 46 | width: 10, 47 | points: _convertToLatLng(_decodePoly(encondedPoly)), 48 | color: Colors.black)); 49 | notifyListeners(); 50 | } 51 | 52 | // ! ADD A MARKER ON THE MAO 53 | void _addMarker(LatLng location, String address) { 54 | _markers.add(Marker( 55 | markerId: MarkerId(_lastPosition.toString()), 56 | position: location, 57 | infoWindow: InfoWindow(title: address, snippet: "go here"), 58 | icon: BitmapDescriptor.defaultMarker)); 59 | notifyListeners(); 60 | } 61 | 62 | // ! CREATE LAGLNG LIST 63 | List _convertToLatLng(List points) { 64 | List result = []; 65 | for (int i = 0; i < points.length; i++) { 66 | if (i % 2 != 0) { 67 | result.add(LatLng(points[i - 1], points[i])); 68 | } 69 | } 70 | return result; 71 | } 72 | 73 | // !DECODE POLY 74 | List _decodePoly(String poly) { 75 | var list = poly.codeUnits; 76 | var lList = new List(); 77 | int index = 0; 78 | int len = poly.length; 79 | int c = 0; 80 | // repeating until all attributes are decoded 81 | do { 82 | var shift = 0; 83 | int result = 0; 84 | 85 | // for decoding value of one attribute 86 | do { 87 | c = list[index] - 63; 88 | result |= (c & 0x1F) << (shift * 5); 89 | index++; 90 | shift++; 91 | } while (c >= 32); 92 | /* if value is negetive then bitwise not the value */ 93 | if (result & 1 == 1) { 94 | result = ~result; 95 | } 96 | var result1 = (result >> 1) * 0.00001; 97 | lList.add(result1); 98 | } while (index < len); 99 | 100 | /*adding to previous value as done in encoding */ 101 | for (var i = 2; i < lList.length; i++) lList[i] += lList[i - 2]; 102 | 103 | print(lList.toString()); 104 | 105 | return lList; 106 | } 107 | 108 | // ! SEND REQUEST 109 | void sendRequest(String intendedLocation) async { 110 | List placemark = 111 | await Geolocator().placemarkFromAddress(intendedLocation); 112 | double latitude = placemark[0].position.latitude; 113 | double longitude = placemark[0].position.longitude; 114 | LatLng destination = LatLng(latitude, longitude); 115 | _addMarker(destination, intendedLocation); 116 | String route = await _googleMapsServices.getRouteCoordinates( 117 | _initialPosition, destination); 118 | createRoute(route); 119 | notifyListeners(); 120 | } 121 | 122 | // ! ON CAMERA MOVE 123 | void onCameraMove(CameraPosition position) { 124 | _lastPosition = position.target; 125 | notifyListeners(); 126 | } 127 | 128 | // ! ON CREATE 129 | void onCreated(GoogleMapController controller) { 130 | _mapController = controller; 131 | notifyListeners(); 132 | } 133 | 134 | // LOADING INITIAL POSITION 135 | void _loadingInitialPosition()async{ 136 | await Future.delayed(Duration(seconds: 5)).then((v) { 137 | if(_initialPosition == null){ 138 | locationServiceActive = false; 139 | notifyListeners(); 140 | } 141 | }); 142 | } 143 | } 144 | -------------------------------------------------------------------------------- /lib/screens/home.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_spinkit/flutter_spinkit.dart'; 3 | import 'package:google_maps_flutter/google_maps_flutter.dart'; 4 | import 'package:provider/provider.dart'; 5 | import 'package:uber_clone/states/app_state.dart'; 6 | 7 | class MyHomePage extends StatefulWidget { 8 | MyHomePage({Key key, this.title}) : super(key: key); 9 | 10 | final String title; 11 | 12 | @override 13 | _MyHomePageState createState() => _MyHomePageState(); 14 | } 15 | 16 | class _MyHomePageState extends State { 17 | @override 18 | Widget build(BuildContext context) { 19 | return Scaffold(body: Map()); 20 | } 21 | } 22 | 23 | class Map extends StatefulWidget { 24 | @override 25 | _MapState createState() => _MapState(); 26 | } 27 | 28 | class _MapState extends State { 29 | @override 30 | Widget build(BuildContext context) { 31 | final appState = Provider.of(context); 32 | return SafeArea( 33 | child: appState.initialPosition == null 34 | ? Container( 35 | child: Column( 36 | mainAxisAlignment: MainAxisAlignment.center, 37 | children: [ 38 | Row( 39 | mainAxisAlignment: MainAxisAlignment.center, 40 | children: [ 41 | SpinKitRotatingCircle( 42 | color: Colors.black, 43 | size: 50.0, 44 | ) 45 | ], 46 | ), 47 | SizedBox(height: 10,), 48 | Visibility( 49 | visible: appState.locationServiceActive == false, 50 | child: Text("Please enable location services!", style: TextStyle(color: Colors.grey, fontSize: 18),), 51 | ) 52 | ], 53 | ) 54 | ) 55 | : Stack( 56 | children: [ 57 | GoogleMap( 58 | initialCameraPosition: CameraPosition( 59 | target: appState.initialPosition, zoom: 10.0), 60 | onMapCreated: appState.onCreated, 61 | myLocationEnabled: true, 62 | mapType: MapType.normal, 63 | compassEnabled: true, 64 | markers: appState.markers, 65 | onCameraMove: appState.onCameraMove, 66 | polylines: appState.polyLines, 67 | ), 68 | 69 | Positioned( 70 | top: 50.0, 71 | right: 15.0, 72 | left: 15.0, 73 | child: Container( 74 | height: 50.0, 75 | width: double.infinity, 76 | decoration: BoxDecoration( 77 | borderRadius: BorderRadius.circular(3.0), 78 | color: Colors.white, 79 | boxShadow: [ 80 | BoxShadow( 81 | color: Colors.grey, 82 | offset: Offset(1.0, 5.0), 83 | blurRadius: 10, 84 | spreadRadius: 3) 85 | ], 86 | ), 87 | child: TextField( 88 | cursorColor: Colors.black, 89 | controller: appState.locationController, 90 | decoration: InputDecoration( 91 | icon: Container( 92 | margin: EdgeInsets.only(left: 20, top: 5), 93 | width: 10, 94 | height: 10, 95 | child: Icon( 96 | Icons.location_on, 97 | color: Colors.black, 98 | ), 99 | ), 100 | hintText: "pick up", 101 | border: InputBorder.none, 102 | contentPadding: EdgeInsets.only(left: 15.0, top: 16.0), 103 | ), 104 | ), 105 | ), 106 | ), 107 | 108 | Positioned( 109 | top: 105.0, 110 | right: 15.0, 111 | left: 15.0, 112 | child: Container( 113 | height: 50.0, 114 | width: double.infinity, 115 | decoration: BoxDecoration( 116 | borderRadius: BorderRadius.circular(3.0), 117 | color: Colors.white, 118 | boxShadow: [ 119 | BoxShadow( 120 | color: Colors.grey, 121 | offset: Offset(1.0, 5.0), 122 | blurRadius: 10, 123 | spreadRadius: 3) 124 | ], 125 | ), 126 | child: TextField( 127 | cursorColor: Colors.black, 128 | controller: appState.destinationController, 129 | textInputAction: TextInputAction.go, 130 | onSubmitted: (value) { 131 | appState.sendRequest(value); 132 | }, 133 | decoration: InputDecoration( 134 | icon: Container( 135 | margin: EdgeInsets.only(left: 20, top: 5), 136 | width: 10, 137 | height: 10, 138 | child: Icon( 139 | Icons.local_taxi, 140 | color: Colors.black, 141 | ), 142 | ), 143 | hintText: "destination?", 144 | border: InputBorder.none, 145 | contentPadding: EdgeInsets.only(left: 15.0, top: 16.0), 146 | ), 147 | ), 148 | ), 149 | ), 150 | 151 | // Positioned( 152 | // top: 40, 153 | // right: 10, 154 | // child: FloatingActionButton(onPressed: _onAddMarkerPressed, 155 | // tooltip: "aadd marker", 156 | // backgroundColor: black, 157 | // child: Icon(Icons.add_location, color: white,), 158 | // ), 159 | // ) 160 | ], 161 | ), 162 | ); 163 | } 164 | } 165 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - BoringSSL-GRPC (0.0.2): 3 | - BoringSSL-GRPC/Implementation (= 0.0.2) 4 | - BoringSSL-GRPC/Interface (= 0.0.2) 5 | - BoringSSL-GRPC/Implementation (0.0.2): 6 | - BoringSSL-GRPC/Interface (= 0.0.2) 7 | - BoringSSL-GRPC/Interface (0.0.2) 8 | - cloud_firestore (0.0.1): 9 | - Firebase/Auth 10 | - Firebase/Core 11 | - Firebase/Database 12 | - Firebase/Firestore 13 | - Flutter 14 | - Firebase/Auth (5.20.0): 15 | - Firebase/CoreOnly 16 | - FirebaseAuth (= 5.4.2) 17 | - Firebase/Core (5.20.0): 18 | - Firebase/CoreOnly 19 | - FirebaseAnalytics (= 5.8.0) 20 | - Firebase/CoreOnly (5.20.0): 21 | - FirebaseCore (= 5.4.1) 22 | - Firebase/Database (5.20.0): 23 | - Firebase/CoreOnly 24 | - FirebaseDatabase (= 5.1.1) 25 | - Firebase/Firestore (5.20.0): 26 | - Firebase/CoreOnly 27 | - FirebaseFirestore (= 1.2.0) 28 | - firebase_auth (0.0.1): 29 | - Firebase/Auth (~> 5.19) 30 | - Firebase/Core 31 | - Flutter 32 | - firebase_core (0.0.1): 33 | - Firebase/Core 34 | - Flutter 35 | - firebase_database (0.0.1): 36 | - Firebase/Database 37 | - Flutter 38 | - FirebaseAnalytics (5.8.0): 39 | - FirebaseCore (~> 5.4) 40 | - FirebaseInstanceID (~> 3.8) 41 | - GoogleAppMeasurement (= 5.8.0) 42 | - GoogleUtilities/AppDelegateSwizzler (~> 5.2) 43 | - GoogleUtilities/MethodSwizzler (~> 5.2) 44 | - GoogleUtilities/Network (~> 5.2) 45 | - "GoogleUtilities/NSData+zlib (~> 5.2)" 46 | - nanopb (~> 0.3) 47 | - FirebaseAuth (5.4.2): 48 | - FirebaseAuthInterop (~> 1.0) 49 | - FirebaseCore (~> 5.2) 50 | - GoogleUtilities/Environment (~> 5.2) 51 | - GTMSessionFetcher/Core (~> 1.1) 52 | - FirebaseAuthInterop (1.0.0) 53 | - FirebaseCore (5.4.1): 54 | - GoogleUtilities/Environment (~> 5.2) 55 | - GoogleUtilities/Logger (~> 5.2) 56 | - FirebaseDatabase (5.1.1): 57 | - FirebaseAuthInterop (~> 1.0) 58 | - FirebaseCore (~> 5.2) 59 | - leveldb-library (~> 1.18) 60 | - FirebaseFirestore (1.2.0): 61 | - FirebaseAuthInterop (~> 1.0) 62 | - FirebaseCore (~> 5.2) 63 | - FirebaseFirestore/abseil-cpp (= 1.2.0) 64 | - "gRPC-C++ (= 0.0.6)" 65 | - leveldb-library (~> 1.20) 66 | - nanopb (~> 0.3.901) 67 | - Protobuf (~> 3.1) 68 | - FirebaseFirestore/abseil-cpp (1.2.0): 69 | - FirebaseAuthInterop (~> 1.0) 70 | - FirebaseCore (~> 5.2) 71 | - "gRPC-C++ (= 0.0.6)" 72 | - leveldb-library (~> 1.20) 73 | - nanopb (~> 0.3.901) 74 | - Protobuf (~> 3.1) 75 | - FirebaseInstanceID (3.8.1): 76 | - FirebaseCore (~> 5.2) 77 | - GoogleUtilities/Environment (~> 5.2) 78 | - GoogleUtilities/UserDefaults (~> 5.2) 79 | - Flutter (1.0.0) 80 | - google_maps_flutter (0.0.1): 81 | - Flutter 82 | - GoogleMaps 83 | - GoogleAppMeasurement (5.8.0): 84 | - GoogleUtilities/AppDelegateSwizzler (~> 5.2) 85 | - GoogleUtilities/MethodSwizzler (~> 5.2) 86 | - GoogleUtilities/Network (~> 5.2) 87 | - "GoogleUtilities/NSData+zlib (~> 5.2)" 88 | - nanopb (~> 0.3) 89 | - GoogleMaps (2.7.0): 90 | - GoogleMaps/Maps (= 2.7.0) 91 | - GoogleMaps/Base (2.7.0) 92 | - GoogleMaps/Maps (2.7.0): 93 | - GoogleMaps/Base 94 | - GoogleUtilities/AppDelegateSwizzler (5.5.0): 95 | - GoogleUtilities/Environment 96 | - GoogleUtilities/Logger 97 | - GoogleUtilities/Network 98 | - GoogleUtilities/Environment (5.5.0) 99 | - GoogleUtilities/Logger (5.5.0): 100 | - GoogleUtilities/Environment 101 | - GoogleUtilities/MethodSwizzler (5.5.0): 102 | - GoogleUtilities/Logger 103 | - GoogleUtilities/Network (5.5.0): 104 | - GoogleUtilities/Logger 105 | - "GoogleUtilities/NSData+zlib" 106 | - GoogleUtilities/Reachability 107 | - "GoogleUtilities/NSData+zlib (5.5.0)" 108 | - GoogleUtilities/Reachability (5.5.0): 109 | - GoogleUtilities/Logger 110 | - GoogleUtilities/UserDefaults (5.5.0): 111 | - GoogleUtilities/Logger 112 | - "gRPC-C++ (0.0.6)": 113 | - "gRPC-C++/Implementation (= 0.0.6)" 114 | - "gRPC-C++/Interface (= 0.0.6)" 115 | - "gRPC-C++/Implementation (0.0.6)": 116 | - "gRPC-C++/Interface (= 0.0.6)" 117 | - gRPC-Core (= 1.17.0) 118 | - nanopb (~> 0.3) 119 | - "gRPC-C++/Interface (0.0.6)" 120 | - gRPC-Core (1.17.0): 121 | - gRPC-Core/Implementation (= 1.17.0) 122 | - gRPC-Core/Interface (= 1.17.0) 123 | - gRPC-Core/Implementation (1.17.0): 124 | - BoringSSL-GRPC (= 0.0.2) 125 | - gRPC-Core/Interface (= 1.17.0) 126 | - nanopb (~> 0.3) 127 | - gRPC-Core/Interface (1.17.0) 128 | - GTMSessionFetcher/Core (1.2.1) 129 | - leveldb-library (1.20) 130 | - location (0.0.1): 131 | - Flutter 132 | - nanopb (0.3.901): 133 | - nanopb/decode (= 0.3.901) 134 | - nanopb/encode (= 0.3.901) 135 | - nanopb/decode (0.3.901) 136 | - nanopb/encode (0.3.901) 137 | - Protobuf (3.7.0) 138 | 139 | DEPENDENCIES: 140 | - cloud_firestore (from `.symlinks/plugins/cloud_firestore/ios`) 141 | - firebase_auth (from `.symlinks/plugins/firebase_auth/ios`) 142 | - firebase_core (from `.symlinks/plugins/firebase_core/ios`) 143 | - firebase_database (from `.symlinks/plugins/firebase_database/ios`) 144 | - Flutter (from `.symlinks/flutter/ios`) 145 | - google_maps_flutter (from `.symlinks/plugins/google_maps_flutter/ios`) 146 | - location (from `.symlinks/plugins/location/ios`) 147 | 148 | SPEC REPOS: 149 | https://github.com/cocoapods/specs.git: 150 | - BoringSSL-GRPC 151 | - Firebase 152 | - FirebaseAnalytics 153 | - FirebaseAuth 154 | - FirebaseAuthInterop 155 | - FirebaseCore 156 | - FirebaseDatabase 157 | - FirebaseFirestore 158 | - FirebaseInstanceID 159 | - GoogleAppMeasurement 160 | - GoogleMaps 161 | - GoogleUtilities 162 | - "gRPC-C++" 163 | - gRPC-Core 164 | - GTMSessionFetcher 165 | - leveldb-library 166 | - nanopb 167 | - Protobuf 168 | 169 | EXTERNAL SOURCES: 170 | cloud_firestore: 171 | :path: ".symlinks/plugins/cloud_firestore/ios" 172 | firebase_auth: 173 | :path: ".symlinks/plugins/firebase_auth/ios" 174 | firebase_core: 175 | :path: ".symlinks/plugins/firebase_core/ios" 176 | firebase_database: 177 | :path: ".symlinks/plugins/firebase_database/ios" 178 | Flutter: 179 | :path: ".symlinks/flutter/ios" 180 | google_maps_flutter: 181 | :path: ".symlinks/plugins/google_maps_flutter/ios" 182 | location: 183 | :path: ".symlinks/plugins/location/ios" 184 | 185 | SPEC CHECKSUMS: 186 | BoringSSL-GRPC: 2a230d9cd93e7ce39916044f645cebb31f37dde6 187 | cloud_firestore: 980813a98d8beb5c321b589845fabf6c4c5bd571 188 | Firebase: 5090da4bb82900179004133bb2b2178919387fd9 189 | firebase_auth: 47c17cb3efbdfa541c9ecfec1a3c092f66c6c568 190 | firebase_core: c96aa8b2fcf7f5167d32f22034f502f9304952b8 191 | firebase_database: 431f77dc97eaba31168762025bc31c8a9a68e68b 192 | FirebaseAnalytics: fd72a26bf8dac84cefba2f0864366f718555a5b0 193 | FirebaseAuth: dd7bbf03a5aee0eafb3a1aee4d2812bd74bac890 194 | FirebaseAuthInterop: 0ffa57668be100582bb7643d4fcb7615496c41fc 195 | FirebaseCore: f1a9a8be1aee4bf71a2fc0f4096df6788bdfda61 196 | FirebaseDatabase: 2c15b0ea6f2c6eb5e57413f9d6340f1e50b81ae3 197 | FirebaseFirestore: e1f9c44452d0de51a68b08af8c131c22ca6ce8fa 198 | FirebaseInstanceID: a122b0c258720cf250551bb2bedf48c699f80d90 199 | Flutter: 9d0fac939486c9aba2809b7982dfdbb47a7b0296 200 | google_maps_flutter: 6449d5918d3f1a69a37dc9c557bbad7bb9bcf0e9 201 | GoogleAppMeasurement: 1624046ab1bcc5e170061a56ef5679000b079c8e 202 | GoogleMaps: f79af95cb24d869457b1f961c93d3ce8b2f3b848 203 | GoogleUtilities: 6481e6318c5fcabaaa8513ef8120f329055d7c10 204 | "gRPC-C++": e76441995900ac90e9bd98644ab4733f12521edf 205 | gRPC-Core: 4028031ed2c5267cca0d846c876d8046b1ecb9b6 206 | GTMSessionFetcher: 32aeca0aa144acea523e1c8e053089dec2cb98ca 207 | leveldb-library: 08cba283675b7ed2d99629a4bc5fd052cd2bb6a5 208 | location: 26c90953ad5916331d0d1d913898779910416487 209 | nanopb: 2901f78ea1b7b4015c860c2fdd1ea2fee1a18d48 210 | Protobuf: 7a877b7f3e5964e3fce995e2eb323dbc6831bb5a 211 | 212 | PODFILE CHECKSUM: aff02bfeed411c636180d6812254b2daeea14d09 213 | 214 | COCOAPODS: 1.5.3 215 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | ansicolor: 5 | dependency: transitive 6 | description: 7 | name: ansicolor 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "1.0.2" 11 | async: 12 | dependency: transitive 13 | description: 14 | name: async 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "2.6.1" 18 | boolean_selector: 19 | dependency: transitive 20 | description: 21 | name: boolean_selector 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "2.1.0" 25 | cached_network_image: 26 | dependency: transitive 27 | description: 28 | name: cached_network_image 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "0.8.0" 32 | characters: 33 | dependency: transitive 34 | description: 35 | name: characters 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.1.0" 39 | charcode: 40 | dependency: transitive 41 | description: 42 | name: charcode 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.2.0" 46 | clock: 47 | dependency: transitive 48 | description: 49 | name: clock 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "1.1.0" 53 | cloud_firestore: 54 | dependency: "direct main" 55 | description: 56 | name: cloud_firestore 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "0.10.1" 60 | collection: 61 | dependency: transitive 62 | description: 63 | name: collection 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "1.15.0" 67 | console_log_handler: 68 | dependency: transitive 69 | description: 70 | name: console_log_handler 71 | url: "https://pub.dartlang.org" 72 | source: hosted 73 | version: "1.1.6" 74 | convert: 75 | dependency: transitive 76 | description: 77 | name: convert 78 | url: "https://pub.dartlang.org" 79 | source: hosted 80 | version: "2.1.1" 81 | crypto: 82 | dependency: transitive 83 | description: 84 | name: crypto 85 | url: "https://pub.dartlang.org" 86 | source: hosted 87 | version: "2.0.6" 88 | cupertino_icons: 89 | dependency: "direct main" 90 | description: 91 | name: cupertino_icons 92 | url: "https://pub.dartlang.org" 93 | source: hosted 94 | version: "0.1.2" 95 | fake_async: 96 | dependency: transitive 97 | description: 98 | name: fake_async 99 | url: "https://pub.dartlang.org" 100 | source: hosted 101 | version: "1.2.0" 102 | firebase_auth: 103 | dependency: "direct main" 104 | description: 105 | name: firebase_auth 106 | url: "https://pub.dartlang.org" 107 | source: hosted 108 | version: "0.8.4+5" 109 | firebase_core: 110 | dependency: transitive 111 | description: 112 | name: firebase_core 113 | url: "https://pub.dartlang.org" 114 | source: hosted 115 | version: "0.3.4" 116 | flutter: 117 | dependency: "direct main" 118 | description: flutter 119 | source: sdk 120 | version: "0.0.0" 121 | flutter_cache_manager: 122 | dependency: transitive 123 | description: 124 | name: flutter_cache_manager 125 | url: "https://pub.dartlang.org" 126 | source: hosted 127 | version: "0.3.2" 128 | flutter_google_places: 129 | dependency: "direct main" 130 | description: 131 | name: flutter_google_places 132 | url: "https://pub.dartlang.org" 133 | source: hosted 134 | version: "0.2.3" 135 | flutter_image: 136 | dependency: transitive 137 | description: 138 | name: flutter_image 139 | url: "https://pub.dartlang.org" 140 | source: hosted 141 | version: "1.0.0" 142 | flutter_map: 143 | dependency: "direct main" 144 | description: 145 | name: flutter_map 146 | url: "https://pub.dartlang.org" 147 | source: hosted 148 | version: "0.5.5+2" 149 | flutter_spinkit: 150 | dependency: "direct main" 151 | description: 152 | name: flutter_spinkit 153 | url: "https://pub.dartlang.org" 154 | source: hosted 155 | version: "4.0.0" 156 | flutter_test: 157 | dependency: "direct dev" 158 | description: flutter 159 | source: sdk 160 | version: "0.0.0" 161 | geocoder: 162 | dependency: "direct main" 163 | description: 164 | name: geocoder 165 | url: "https://pub.dartlang.org" 166 | source: hosted 167 | version: "0.1.2" 168 | geoflutterfire: 169 | dependency: "direct main" 170 | description: 171 | name: geoflutterfire 172 | url: "https://pub.dartlang.org" 173 | source: hosted 174 | version: "2.0.3+3" 175 | geolocator: 176 | dependency: "direct main" 177 | description: 178 | name: geolocator 179 | url: "https://pub.dartlang.org" 180 | source: hosted 181 | version: "5.1.1+1" 182 | get_it: 183 | dependency: "direct main" 184 | description: 185 | name: get_it 186 | url: "https://pub.dartlang.org" 187 | source: hosted 188 | version: "1.0.3+2" 189 | google_api_availability: 190 | dependency: transitive 191 | description: 192 | name: google_api_availability 193 | url: "https://pub.dartlang.org" 194 | source: hosted 195 | version: "2.0.1" 196 | google_maps_flutter: 197 | dependency: "direct main" 198 | description: 199 | name: google_maps_flutter 200 | url: "https://pub.dartlang.org" 201 | source: hosted 202 | version: "0.5.15" 203 | google_maps_webservice: 204 | dependency: "direct main" 205 | description: 206 | name: google_maps_webservice 207 | url: "https://pub.dartlang.org" 208 | source: hosted 209 | version: "0.0.14" 210 | http: 211 | dependency: "direct main" 212 | description: 213 | name: http 214 | url: "https://pub.dartlang.org" 215 | source: hosted 216 | version: "0.12.0+2" 217 | http_parser: 218 | dependency: transitive 219 | description: 220 | name: http_parser 221 | url: "https://pub.dartlang.org" 222 | source: hosted 223 | version: "3.1.3" 224 | intl: 225 | dependency: transitive 226 | description: 227 | name: intl 228 | url: "https://pub.dartlang.org" 229 | source: hosted 230 | version: "0.15.8" 231 | latlong: 232 | dependency: transitive 233 | description: 234 | name: latlong 235 | url: "https://pub.dartlang.org" 236 | source: hosted 237 | version: "0.6.1" 238 | location: 239 | dependency: "direct main" 240 | description: 241 | name: location 242 | url: "https://pub.dartlang.org" 243 | source: hosted 244 | version: "2.3.5" 245 | location_permissions: 246 | dependency: transitive 247 | description: 248 | name: location_permissions 249 | url: "https://pub.dartlang.org" 250 | source: hosted 251 | version: "2.0.2" 252 | logging: 253 | dependency: transitive 254 | description: 255 | name: logging 256 | url: "https://pub.dartlang.org" 257 | source: hosted 258 | version: "0.11.3+2" 259 | matcher: 260 | dependency: transitive 261 | description: 262 | name: matcher 263 | url: "https://pub.dartlang.org" 264 | source: hosted 265 | version: "0.12.10" 266 | meta: 267 | dependency: transitive 268 | description: 269 | name: meta 270 | url: "https://pub.dartlang.org" 271 | source: hosted 272 | version: "1.3.0" 273 | path: 274 | dependency: transitive 275 | description: 276 | name: path 277 | url: "https://pub.dartlang.org" 278 | source: hosted 279 | version: "1.8.0" 280 | path_provider: 281 | dependency: transitive 282 | description: 283 | name: path_provider 284 | url: "https://pub.dartlang.org" 285 | source: hosted 286 | version: "0.5.0+1" 287 | pedantic: 288 | dependency: transitive 289 | description: 290 | name: pedantic 291 | url: "https://pub.dartlang.org" 292 | source: hosted 293 | version: "1.8.0+1" 294 | positioned_tap_detector: 295 | dependency: transitive 296 | description: 297 | name: positioned_tap_detector 298 | url: "https://pub.dartlang.org" 299 | source: hosted 300 | version: "1.0.2" 301 | provider: 302 | dependency: "direct main" 303 | description: 304 | name: provider 305 | url: "https://pub.dartlang.org" 306 | source: hosted 307 | version: "3.0.0+1" 308 | quiver: 309 | dependency: transitive 310 | description: 311 | name: quiver 312 | url: "https://pub.dartlang.org" 313 | source: hosted 314 | version: "2.0.5" 315 | rxdart: 316 | dependency: transitive 317 | description: 318 | name: rxdart 319 | url: "https://pub.dartlang.org" 320 | source: hosted 321 | version: "0.22.1" 322 | shared_preferences: 323 | dependency: "direct main" 324 | description: 325 | name: shared_preferences 326 | url: "https://pub.dartlang.org" 327 | source: hosted 328 | version: "0.5.3+4" 329 | sky_engine: 330 | dependency: transitive 331 | description: flutter 332 | source: sdk 333 | version: "0.0.99" 334 | source_span: 335 | dependency: transitive 336 | description: 337 | name: source_span 338 | url: "https://pub.dartlang.org" 339 | source: hosted 340 | version: "1.8.1" 341 | sqflite: 342 | dependency: transitive 343 | description: 344 | name: sqflite 345 | url: "https://pub.dartlang.org" 346 | source: hosted 347 | version: "1.1.6+2" 348 | stack_trace: 349 | dependency: transitive 350 | description: 351 | name: stack_trace 352 | url: "https://pub.dartlang.org" 353 | source: hosted 354 | version: "1.10.0" 355 | stream_channel: 356 | dependency: transitive 357 | description: 358 | name: stream_channel 359 | url: "https://pub.dartlang.org" 360 | source: hosted 361 | version: "2.1.0" 362 | string_scanner: 363 | dependency: transitive 364 | description: 365 | name: string_scanner 366 | url: "https://pub.dartlang.org" 367 | source: hosted 368 | version: "1.1.0" 369 | synchronized: 370 | dependency: transitive 371 | description: 372 | name: synchronized 373 | url: "https://pub.dartlang.org" 374 | source: hosted 375 | version: "2.1.0+1" 376 | term_glyph: 377 | dependency: transitive 378 | description: 379 | name: term_glyph 380 | url: "https://pub.dartlang.org" 381 | source: hosted 382 | version: "1.2.0" 383 | test_api: 384 | dependency: transitive 385 | description: 386 | name: test_api 387 | url: "https://pub.dartlang.org" 388 | source: hosted 389 | version: "0.3.0" 390 | transparent_image: 391 | dependency: transitive 392 | description: 393 | name: transparent_image 394 | url: "https://pub.dartlang.org" 395 | source: hosted 396 | version: "1.0.0" 397 | tuple: 398 | dependency: transitive 399 | description: 400 | name: tuple 401 | url: "https://pub.dartlang.org" 402 | source: hosted 403 | version: "1.0.2" 404 | typed_data: 405 | dependency: transitive 406 | description: 407 | name: typed_data 408 | url: "https://pub.dartlang.org" 409 | source: hosted 410 | version: "1.3.0" 411 | uuid: 412 | dependency: "direct main" 413 | description: 414 | name: uuid 415 | url: "https://pub.dartlang.org" 416 | source: hosted 417 | version: "2.0.2" 418 | validate: 419 | dependency: transitive 420 | description: 421 | name: validate 422 | url: "https://pub.dartlang.org" 423 | source: hosted 424 | version: "1.7.0" 425 | vector_math: 426 | dependency: transitive 427 | description: 428 | name: vector_math 429 | url: "https://pub.dartlang.org" 430 | source: hosted 431 | version: "2.1.0" 432 | sdks: 433 | dart: ">=2.12.0 <3.0.0" 434 | flutter: ">=1.5.0" 435 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 11 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 12 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; }; 13 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 14 | 5C7FE95C227B451E00398170 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 5C7FE95B227B451E00398170 /* GoogleService-Info.plist */; }; 15 | 72C89BAFD58E15BBDDA3C533 /* libPods-Runner.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 23A584E4BA7B70870EDC0E0F /* libPods-Runner.a */; }; 16 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; }; 17 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 18 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; }; 19 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; }; 20 | 97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; }; 21 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 22 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 23 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 24 | /* End PBXBuildFile section */ 25 | 26 | /* Begin PBXCopyFilesBuildPhase section */ 27 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 28 | isa = PBXCopyFilesBuildPhase; 29 | buildActionMask = 2147483647; 30 | dstPath = ""; 31 | dstSubfolderSpec = 10; 32 | files = ( 33 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */, 34 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */, 35 | ); 36 | name = "Embed Frameworks"; 37 | runOnlyForDeploymentPostprocessing = 0; 38 | }; 39 | /* End PBXCopyFilesBuildPhase section */ 40 | 41 | /* Begin PBXFileReference section */ 42 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 43 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 44 | 23A584E4BA7B70870EDC0E0F /* libPods-Runner.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Runner.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 46 | 3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = ""; }; 47 | 5C7FE95B227B451E00398170 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = ""; }; 48 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 49 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 50 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 51 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 52 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 53 | 9740EEBA1CF902C7004384FC /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = Flutter/Flutter.framework; sourceTree = ""; }; 54 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 55 | 97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 56 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 57 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 58 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 59 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 60 | /* End PBXFileReference section */ 61 | 62 | /* Begin PBXFrameworksBuildPhase section */ 63 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 64 | isa = PBXFrameworksBuildPhase; 65 | buildActionMask = 2147483647; 66 | files = ( 67 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */, 68 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */, 69 | 72C89BAFD58E15BBDDA3C533 /* libPods-Runner.a in Frameworks */, 70 | ); 71 | runOnlyForDeploymentPostprocessing = 0; 72 | }; 73 | /* End PBXFrameworksBuildPhase section */ 74 | 75 | /* Begin PBXGroup section */ 76 | 9740EEB11CF90186004384FC /* Flutter */ = { 77 | isa = PBXGroup; 78 | children = ( 79 | 3B80C3931E831B6300D905FE /* App.framework */, 80 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 81 | 9740EEBA1CF902C7004384FC /* Flutter.framework */, 82 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 83 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 84 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 85 | ); 86 | name = Flutter; 87 | sourceTree = ""; 88 | }; 89 | 97C146E51CF9000F007C117D = { 90 | isa = PBXGroup; 91 | children = ( 92 | 9740EEB11CF90186004384FC /* Flutter */, 93 | 97C146F01CF9000F007C117D /* Runner */, 94 | 97C146EF1CF9000F007C117D /* Products */, 95 | D209AB1045CBDDC08845FCE4 /* Pods */, 96 | AB8E0AB6DBDB9C01A7B0030F /* Frameworks */, 97 | ); 98 | sourceTree = ""; 99 | }; 100 | 97C146EF1CF9000F007C117D /* Products */ = { 101 | isa = PBXGroup; 102 | children = ( 103 | 97C146EE1CF9000F007C117D /* Runner.app */, 104 | ); 105 | name = Products; 106 | sourceTree = ""; 107 | }; 108 | 97C146F01CF9000F007C117D /* Runner */ = { 109 | isa = PBXGroup; 110 | children = ( 111 | 5C7FE95B227B451E00398170 /* GoogleService-Info.plist */, 112 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */, 113 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */, 114 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 115 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 116 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 117 | 97C147021CF9000F007C117D /* Info.plist */, 118 | 97C146F11CF9000F007C117D /* Supporting Files */, 119 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 120 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 121 | ); 122 | path = Runner; 123 | sourceTree = ""; 124 | }; 125 | 97C146F11CF9000F007C117D /* Supporting Files */ = { 126 | isa = PBXGroup; 127 | children = ( 128 | 97C146F21CF9000F007C117D /* main.m */, 129 | ); 130 | name = "Supporting Files"; 131 | sourceTree = ""; 132 | }; 133 | AB8E0AB6DBDB9C01A7B0030F /* Frameworks */ = { 134 | isa = PBXGroup; 135 | children = ( 136 | 23A584E4BA7B70870EDC0E0F /* libPods-Runner.a */, 137 | ); 138 | name = Frameworks; 139 | sourceTree = ""; 140 | }; 141 | D209AB1045CBDDC08845FCE4 /* Pods */ = { 142 | isa = PBXGroup; 143 | children = ( 144 | ); 145 | name = Pods; 146 | sourceTree = ""; 147 | }; 148 | /* End PBXGroup section */ 149 | 150 | /* Begin PBXNativeTarget section */ 151 | 97C146ED1CF9000F007C117D /* Runner */ = { 152 | isa = PBXNativeTarget; 153 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 154 | buildPhases = ( 155 | 692B1C08FDA9DC4D524C31EF /* [CP] Check Pods Manifest.lock */, 156 | 9740EEB61CF901F6004384FC /* Run Script */, 157 | 97C146EA1CF9000F007C117D /* Sources */, 158 | 97C146EB1CF9000F007C117D /* Frameworks */, 159 | 97C146EC1CF9000F007C117D /* Resources */, 160 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 161 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 162 | 3F958AEE37529D1AA5D46BAD /* [CP] Embed Pods Frameworks */, 163 | E687DAB88C99364EFD17EB8E /* [CP] Copy Pods Resources */, 164 | ); 165 | buildRules = ( 166 | ); 167 | dependencies = ( 168 | ); 169 | name = Runner; 170 | productName = Runner; 171 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 172 | productType = "com.apple.product-type.application"; 173 | }; 174 | /* End PBXNativeTarget section */ 175 | 176 | /* Begin PBXProject section */ 177 | 97C146E61CF9000F007C117D /* Project object */ = { 178 | isa = PBXProject; 179 | attributes = { 180 | LastUpgradeCheck = 0910; 181 | ORGANIZATIONNAME = "The Chromium Authors"; 182 | TargetAttributes = { 183 | 97C146ED1CF9000F007C117D = { 184 | CreatedOnToolsVersion = 7.3.1; 185 | }; 186 | }; 187 | }; 188 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 189 | compatibilityVersion = "Xcode 3.2"; 190 | developmentRegion = English; 191 | hasScannedForEncodings = 0; 192 | knownRegions = ( 193 | English, 194 | en, 195 | Base, 196 | ); 197 | mainGroup = 97C146E51CF9000F007C117D; 198 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 199 | projectDirPath = ""; 200 | projectRoot = ""; 201 | targets = ( 202 | 97C146ED1CF9000F007C117D /* Runner */, 203 | ); 204 | }; 205 | /* End PBXProject section */ 206 | 207 | /* Begin PBXResourcesBuildPhase section */ 208 | 97C146EC1CF9000F007C117D /* Resources */ = { 209 | isa = PBXResourcesBuildPhase; 210 | buildActionMask = 2147483647; 211 | files = ( 212 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 213 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 214 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */, 215 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 216 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 217 | 5C7FE95C227B451E00398170 /* GoogleService-Info.plist in Resources */, 218 | ); 219 | runOnlyForDeploymentPostprocessing = 0; 220 | }; 221 | /* End PBXResourcesBuildPhase section */ 222 | 223 | /* Begin PBXShellScriptBuildPhase section */ 224 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 225 | isa = PBXShellScriptBuildPhase; 226 | buildActionMask = 2147483647; 227 | files = ( 228 | ); 229 | inputPaths = ( 230 | ); 231 | name = "Thin Binary"; 232 | outputPaths = ( 233 | ); 234 | runOnlyForDeploymentPostprocessing = 0; 235 | shellPath = /bin/sh; 236 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" thin"; 237 | }; 238 | 3F958AEE37529D1AA5D46BAD /* [CP] Embed Pods Frameworks */ = { 239 | isa = PBXShellScriptBuildPhase; 240 | buildActionMask = 2147483647; 241 | files = ( 242 | ); 243 | inputFileListPaths = ( 244 | ); 245 | inputPaths = ( 246 | "${SRCROOT}/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh", 247 | "${PODS_ROOT}/../.symlinks/flutter/ios/Flutter.framework", 248 | ); 249 | name = "[CP] Embed Pods Frameworks"; 250 | outputFileListPaths = ( 251 | ); 252 | outputPaths = ( 253 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Flutter.framework", 254 | ); 255 | runOnlyForDeploymentPostprocessing = 0; 256 | shellPath = /bin/sh; 257 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; 258 | showEnvVarsInLog = 0; 259 | }; 260 | 692B1C08FDA9DC4D524C31EF /* [CP] Check Pods Manifest.lock */ = { 261 | isa = PBXShellScriptBuildPhase; 262 | buildActionMask = 2147483647; 263 | files = ( 264 | ); 265 | inputFileListPaths = ( 266 | ); 267 | inputPaths = ( 268 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 269 | "${PODS_ROOT}/Manifest.lock", 270 | ); 271 | name = "[CP] Check Pods Manifest.lock"; 272 | outputFileListPaths = ( 273 | ); 274 | outputPaths = ( 275 | "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", 276 | ); 277 | runOnlyForDeploymentPostprocessing = 0; 278 | shellPath = /bin/sh; 279 | 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"; 280 | showEnvVarsInLog = 0; 281 | }; 282 | 9740EEB61CF901F6004384FC /* Run Script */ = { 283 | isa = PBXShellScriptBuildPhase; 284 | buildActionMask = 2147483647; 285 | files = ( 286 | ); 287 | inputPaths = ( 288 | ); 289 | name = "Run Script"; 290 | outputPaths = ( 291 | ); 292 | runOnlyForDeploymentPostprocessing = 0; 293 | shellPath = /bin/sh; 294 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 295 | }; 296 | E687DAB88C99364EFD17EB8E /* [CP] Copy Pods Resources */ = { 297 | isa = PBXShellScriptBuildPhase; 298 | buildActionMask = 2147483647; 299 | files = ( 300 | ); 301 | inputFileListPaths = ( 302 | ); 303 | inputPaths = ( 304 | "${SRCROOT}/Pods/Target Support Files/Pods-Runner/Pods-Runner-resources.sh", 305 | "${PODS_ROOT}/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Resources/GoogleMaps.bundle", 306 | "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++/gRPCCertificates.bundle", 307 | ); 308 | name = "[CP] Copy Pods Resources"; 309 | outputFileListPaths = ( 310 | ); 311 | outputPaths = ( 312 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/GoogleMaps.bundle", 313 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/gRPCCertificates.bundle", 314 | ); 315 | runOnlyForDeploymentPostprocessing = 0; 316 | shellPath = /bin/sh; 317 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n"; 318 | showEnvVarsInLog = 0; 319 | }; 320 | /* End PBXShellScriptBuildPhase section */ 321 | 322 | /* Begin PBXSourcesBuildPhase section */ 323 | 97C146EA1CF9000F007C117D /* Sources */ = { 324 | isa = PBXSourcesBuildPhase; 325 | buildActionMask = 2147483647; 326 | files = ( 327 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */, 328 | 97C146F31CF9000F007C117D /* main.m in Sources */, 329 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 330 | ); 331 | runOnlyForDeploymentPostprocessing = 0; 332 | }; 333 | /* End PBXSourcesBuildPhase section */ 334 | 335 | /* Begin PBXVariantGroup section */ 336 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 337 | isa = PBXVariantGroup; 338 | children = ( 339 | 97C146FB1CF9000F007C117D /* Base */, 340 | ); 341 | name = Main.storyboard; 342 | sourceTree = ""; 343 | }; 344 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 345 | isa = PBXVariantGroup; 346 | children = ( 347 | 97C147001CF9000F007C117D /* Base */, 348 | ); 349 | name = LaunchScreen.storyboard; 350 | sourceTree = ""; 351 | }; 352 | /* End PBXVariantGroup section */ 353 | 354 | /* Begin XCBuildConfiguration section */ 355 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 356 | isa = XCBuildConfiguration; 357 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 358 | buildSettings = { 359 | ALWAYS_SEARCH_USER_PATHS = NO; 360 | CLANG_ANALYZER_NONNULL = YES; 361 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 362 | CLANG_CXX_LIBRARY = "libc++"; 363 | CLANG_ENABLE_MODULES = YES; 364 | CLANG_ENABLE_OBJC_ARC = YES; 365 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 366 | CLANG_WARN_BOOL_CONVERSION = YES; 367 | CLANG_WARN_COMMA = YES; 368 | CLANG_WARN_CONSTANT_CONVERSION = YES; 369 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 370 | CLANG_WARN_EMPTY_BODY = YES; 371 | CLANG_WARN_ENUM_CONVERSION = YES; 372 | CLANG_WARN_INFINITE_RECURSION = YES; 373 | CLANG_WARN_INT_CONVERSION = YES; 374 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 375 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 376 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 377 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 378 | CLANG_WARN_STRICT_PROTOTYPES = YES; 379 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 380 | CLANG_WARN_UNREACHABLE_CODE = YES; 381 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 382 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 383 | COPY_PHASE_STRIP = NO; 384 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 385 | ENABLE_NS_ASSERTIONS = NO; 386 | ENABLE_STRICT_OBJC_MSGSEND = YES; 387 | GCC_C_LANGUAGE_STANDARD = gnu99; 388 | GCC_NO_COMMON_BLOCKS = YES; 389 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 390 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 391 | GCC_WARN_UNDECLARED_SELECTOR = YES; 392 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 393 | GCC_WARN_UNUSED_FUNCTION = YES; 394 | GCC_WARN_UNUSED_VARIABLE = YES; 395 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 396 | MTL_ENABLE_DEBUG_INFO = NO; 397 | SDKROOT = iphoneos; 398 | TARGETED_DEVICE_FAMILY = "1,2"; 399 | VALIDATE_PRODUCT = YES; 400 | }; 401 | name = Profile; 402 | }; 403 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 404 | isa = XCBuildConfiguration; 405 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 406 | buildSettings = { 407 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 408 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 409 | DEVELOPMENT_TEAM = S8QB4VV633; 410 | ENABLE_BITCODE = NO; 411 | FRAMEWORK_SEARCH_PATHS = ( 412 | "$(inherited)", 413 | "$(PROJECT_DIR)/Flutter", 414 | ); 415 | INFOPLIST_FILE = Runner/Info.plist; 416 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 417 | LIBRARY_SEARCH_PATHS = ( 418 | "$(inherited)", 419 | "$(PROJECT_DIR)/Flutter", 420 | ); 421 | PRODUCT_BUNDLE_IDENTIFIER = com.santosenoque.uberClone; 422 | PRODUCT_NAME = "$(TARGET_NAME)"; 423 | VERSIONING_SYSTEM = "apple-generic"; 424 | }; 425 | name = Profile; 426 | }; 427 | 97C147031CF9000F007C117D /* Debug */ = { 428 | isa = XCBuildConfiguration; 429 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 430 | buildSettings = { 431 | ALWAYS_SEARCH_USER_PATHS = NO; 432 | CLANG_ANALYZER_NONNULL = YES; 433 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 434 | CLANG_CXX_LIBRARY = "libc++"; 435 | CLANG_ENABLE_MODULES = YES; 436 | CLANG_ENABLE_OBJC_ARC = YES; 437 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 438 | CLANG_WARN_BOOL_CONVERSION = YES; 439 | CLANG_WARN_COMMA = YES; 440 | CLANG_WARN_CONSTANT_CONVERSION = YES; 441 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 442 | CLANG_WARN_EMPTY_BODY = YES; 443 | CLANG_WARN_ENUM_CONVERSION = YES; 444 | CLANG_WARN_INFINITE_RECURSION = YES; 445 | CLANG_WARN_INT_CONVERSION = YES; 446 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 447 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 448 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 449 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 450 | CLANG_WARN_STRICT_PROTOTYPES = YES; 451 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 452 | CLANG_WARN_UNREACHABLE_CODE = YES; 453 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 454 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 455 | COPY_PHASE_STRIP = NO; 456 | DEBUG_INFORMATION_FORMAT = dwarf; 457 | ENABLE_STRICT_OBJC_MSGSEND = YES; 458 | ENABLE_TESTABILITY = YES; 459 | GCC_C_LANGUAGE_STANDARD = gnu99; 460 | GCC_DYNAMIC_NO_PIC = NO; 461 | GCC_NO_COMMON_BLOCKS = YES; 462 | GCC_OPTIMIZATION_LEVEL = 0; 463 | GCC_PREPROCESSOR_DEFINITIONS = ( 464 | "DEBUG=1", 465 | "$(inherited)", 466 | ); 467 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 468 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 469 | GCC_WARN_UNDECLARED_SELECTOR = YES; 470 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 471 | GCC_WARN_UNUSED_FUNCTION = YES; 472 | GCC_WARN_UNUSED_VARIABLE = YES; 473 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 474 | MTL_ENABLE_DEBUG_INFO = YES; 475 | ONLY_ACTIVE_ARCH = YES; 476 | SDKROOT = iphoneos; 477 | TARGETED_DEVICE_FAMILY = "1,2"; 478 | }; 479 | name = Debug; 480 | }; 481 | 97C147041CF9000F007C117D /* Release */ = { 482 | isa = XCBuildConfiguration; 483 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 484 | buildSettings = { 485 | ALWAYS_SEARCH_USER_PATHS = NO; 486 | CLANG_ANALYZER_NONNULL = YES; 487 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 488 | CLANG_CXX_LIBRARY = "libc++"; 489 | CLANG_ENABLE_MODULES = YES; 490 | CLANG_ENABLE_OBJC_ARC = YES; 491 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 492 | CLANG_WARN_BOOL_CONVERSION = YES; 493 | CLANG_WARN_COMMA = YES; 494 | CLANG_WARN_CONSTANT_CONVERSION = YES; 495 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 496 | CLANG_WARN_EMPTY_BODY = YES; 497 | CLANG_WARN_ENUM_CONVERSION = YES; 498 | CLANG_WARN_INFINITE_RECURSION = YES; 499 | CLANG_WARN_INT_CONVERSION = YES; 500 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 501 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 502 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 503 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 504 | CLANG_WARN_STRICT_PROTOTYPES = YES; 505 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 506 | CLANG_WARN_UNREACHABLE_CODE = YES; 507 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 508 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 509 | COPY_PHASE_STRIP = NO; 510 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 511 | ENABLE_NS_ASSERTIONS = NO; 512 | ENABLE_STRICT_OBJC_MSGSEND = YES; 513 | GCC_C_LANGUAGE_STANDARD = gnu99; 514 | GCC_NO_COMMON_BLOCKS = YES; 515 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 516 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 517 | GCC_WARN_UNDECLARED_SELECTOR = YES; 518 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 519 | GCC_WARN_UNUSED_FUNCTION = YES; 520 | GCC_WARN_UNUSED_VARIABLE = YES; 521 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 522 | MTL_ENABLE_DEBUG_INFO = NO; 523 | SDKROOT = iphoneos; 524 | TARGETED_DEVICE_FAMILY = "1,2"; 525 | VALIDATE_PRODUCT = YES; 526 | }; 527 | name = Release; 528 | }; 529 | 97C147061CF9000F007C117D /* Debug */ = { 530 | isa = XCBuildConfiguration; 531 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 532 | buildSettings = { 533 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 534 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 535 | ENABLE_BITCODE = NO; 536 | FRAMEWORK_SEARCH_PATHS = ( 537 | "$(inherited)", 538 | "$(PROJECT_DIR)/Flutter", 539 | ); 540 | INFOPLIST_FILE = Runner/Info.plist; 541 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 542 | LIBRARY_SEARCH_PATHS = ( 543 | "$(inherited)", 544 | "$(PROJECT_DIR)/Flutter", 545 | ); 546 | PRODUCT_BUNDLE_IDENTIFIER = com.santosenoque.uberClone; 547 | PRODUCT_NAME = "$(TARGET_NAME)"; 548 | VERSIONING_SYSTEM = "apple-generic"; 549 | }; 550 | name = Debug; 551 | }; 552 | 97C147071CF9000F007C117D /* Release */ = { 553 | isa = XCBuildConfiguration; 554 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 555 | buildSettings = { 556 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 557 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 558 | ENABLE_BITCODE = NO; 559 | FRAMEWORK_SEARCH_PATHS = ( 560 | "$(inherited)", 561 | "$(PROJECT_DIR)/Flutter", 562 | ); 563 | INFOPLIST_FILE = Runner/Info.plist; 564 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 565 | LIBRARY_SEARCH_PATHS = ( 566 | "$(inherited)", 567 | "$(PROJECT_DIR)/Flutter", 568 | ); 569 | PRODUCT_BUNDLE_IDENTIFIER = com.santosenoque.uberClone; 570 | PRODUCT_NAME = "$(TARGET_NAME)"; 571 | VERSIONING_SYSTEM = "apple-generic"; 572 | }; 573 | name = Release; 574 | }; 575 | /* End XCBuildConfiguration section */ 576 | 577 | /* Begin XCConfigurationList section */ 578 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 579 | isa = XCConfigurationList; 580 | buildConfigurations = ( 581 | 97C147031CF9000F007C117D /* Debug */, 582 | 97C147041CF9000F007C117D /* Release */, 583 | 249021D3217E4FDB00AE95B9 /* Profile */, 584 | ); 585 | defaultConfigurationIsVisible = 0; 586 | defaultConfigurationName = Release; 587 | }; 588 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 589 | isa = XCConfigurationList; 590 | buildConfigurations = ( 591 | 97C147061CF9000F007C117D /* Debug */, 592 | 97C147071CF9000F007C117D /* Release */, 593 | 249021D4217E4FDB00AE95B9 /* Profile */, 594 | ); 595 | defaultConfigurationIsVisible = 0; 596 | defaultConfigurationName = Release; 597 | }; 598 | /* End XCConfigurationList section */ 599 | }; 600 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 601 | } 602 | --------------------------------------------------------------------------------