├── android ├── .gradle │ ├── 7.4 │ │ ├── gc.properties │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── dependencies-accessors │ │ │ ├── gc.properties │ │ │ └── dependencies-accessors.lock │ │ ├── checksums │ │ │ ├── checksums.lock │ │ │ ├── md5-checksums.bin │ │ │ └── sha1-checksums.bin │ │ ├── fileHashes │ │ │ ├── fileHashes.bin │ │ │ ├── fileHashes.lock │ │ │ └── resourceHashesCache.bin │ │ └── executionHistory │ │ │ ├── executionHistory.bin │ │ │ └── executionHistory.lock │ ├── vcs-1 │ │ └── gc.properties │ ├── buildOutputCleanup │ │ ├── cache.properties │ │ ├── outputFiles.bin │ │ └── buildOutputCleanup.lock │ └── file-system.probe ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── app │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── values │ │ │ │ │ └── styles.xml │ │ │ │ └── values-night │ │ │ │ │ └── styles.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── chat_app │ │ │ │ │ └── MainActivity.kt │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── flutter │ │ │ │ └── plugins │ │ │ │ └── GeneratedPluginRegistrant.java │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── google-services.json │ └── build.gradle ├── local.properties ├── settings.gradle ├── build.gradle ├── gradlew.bat └── gradlew ├── ios ├── Runner │ ├── Runner-Bridging-Header.h │ ├── Assets.xcassets │ │ ├── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ ├── README.md │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── Contents.json │ ├── AppDelegate.swift │ ├── GoogleService-Info.plist │ ├── Info.plist │ └── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.storyboard ├── Flutter │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── AppFrameworkInfo.plist ├── Runner.xcodeproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── IDEWorkspaceChecks.plist │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ └── project.pbxproj ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── WorkspaceSettings.xcsettings │ │ └── IDEWorkspaceChecks.plist ├── .gitignore ├── Podfile └── Podfile.lock ├── images └── logo.png ├── README.md ├── lib ├── constants.dart ├── widgets │ └── rounded_button.dart ├── main.dart └── screens │ ├── welcome_screen.dart │ ├── login_screen.dart │ ├── registration_screen.dart │ └── chat_screen.dart ├── .gitignore ├── test └── widget_test.dart ├── .metadata ├── analysis_options.yaml ├── pubspec.yaml └── pubspec.lock /android/.gradle/7.4/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/.gradle/7.4/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/.gradle/7.4/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/images/logo.png -------------------------------------------------------------------------------- /android/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Sat Sep 17 20:47:46 CEST 2022 2 | gradle.version=7.4 3 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /android/.gradle/file-system.probe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/android/.gradle/file-system.probe -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /android/.gradle/7.4/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/android/.gradle/7.4/checksums/checksums.lock -------------------------------------------------------------------------------- /android/.gradle/7.4/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/android/.gradle/7.4/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /android/.gradle/7.4/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/android/.gradle/7.4/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /android/.gradle/7.4/checksums/md5-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/android/.gradle/7.4/checksums/md5-checksums.bin -------------------------------------------------------------------------------- /android/.gradle/7.4/checksums/sha1-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/android/.gradle/7.4/checksums/sha1-checksums.bin -------------------------------------------------------------------------------- /android/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/android/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/.gradle/7.4/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/android/.gradle/7.4/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/.gradle/7.4/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/android/.gradle/7.4/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /android/.gradle/7.4/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/android/.gradle/7.4/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /android/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /android/local.properties: -------------------------------------------------------------------------------- 1 | sdk.dir=/Users/lumberjack/Library/Android/sdk 2 | flutter.sdk=/Users/lumberjack/Flutter/flutter 3 | flutter.buildMode=debug 4 | flutter.versionName=1.0.0 5 | flutter.versionCode=1 -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /android/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/HEAD/android/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumberjack-programmer/chat_app/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/lumberjack-programmer/chat_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/chat_app/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.chat_app 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip 7 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") 4 | def properties = new Properties() 5 | 6 | assert localPropertiesFile.exists() 7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } 8 | 9 | def flutterSdkPath = properties.getProperty("flutter.sdk") 10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" 12 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # chat_app 2 | 3 | A new Flutter project. 4 | 5 | ## Getting Started 6 | 7 | This project is a starting point for a Flutter application. 8 | 9 | A few resources to get you started if this is your first Flutter project: 10 | 11 | - [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) 12 | - [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) 13 | 14 | For help getting started with Flutter development, view the 15 | [online documentation](https://docs.flutter.dev/), which offers tutorials, 16 | samples, guidance on mobile development, and a full API reference. 17 | -------------------------------------------------------------------------------- /lib/constants.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | const kSendButtonTextStyle = TextStyle( 4 | color: Colors.lightBlueAccent, 5 | fontWeight: FontWeight.bold, 6 | fontSize: 18.0, 7 | ); 8 | 9 | const kMessageTextFieldDecoration = InputDecoration( 10 | contentPadding: EdgeInsets.symmetric(vertical: 10.0, horizontal: 20.0), 11 | hintText: 'Type your message here...', 12 | hintStyle: TextStyle(color: Colors.grey), 13 | border: InputBorder.none, 14 | ); 15 | 16 | const kMessageContainerDecoration = BoxDecoration( 17 | border: Border( 18 | top: BorderSide(color: Colors.lightBlueAccent, width: 2.0), 19 | ), 20 | ); 21 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | **/dgph 2 | *.mode1v3 3 | *.mode2v3 4 | *.moved-aside 5 | *.pbxuser 6 | *.perspectivev3 7 | **/*sync/ 8 | .sconsign.dblite 9 | .tags* 10 | **/.vagrant/ 11 | **/DerivedData/ 12 | Icon? 13 | **/Pods/ 14 | **/.symlinks/ 15 | profile 16 | xcuserdata 17 | **/.generated/ 18 | Flutter/App.framework 19 | Flutter/Flutter.framework 20 | Flutter/Flutter.podspec 21 | Flutter/Generated.xcconfig 22 | Flutter/ephemeral/ 23 | Flutter/app.flx 24 | Flutter/app.zip 25 | Flutter/flutter_assets/ 26 | Flutter/flutter_export_environment.sh 27 | ServiceDefinitions.json 28 | Runner/GeneratedPluginRegistrant.* 29 | 30 | # Exceptions to above rules. 31 | !default.mode1v3 32 | !default.mode2v3 33 | !default.pbxuser 34 | !default.perspectivev3 35 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.6.10' 3 | repositories { 4 | google() 5 | mavenCentral() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:7.1.2' 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | classpath 'com.google.gms:google-services:4.3.13' 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | google() 18 | mavenCentral() 19 | } 20 | } 21 | 22 | rootProject.buildDir = '../build' 23 | subprojects { 24 | project.buildDir = "${rootProject.buildDir}/${project.name}" 25 | } 26 | subprojects { 27 | project.evaluationDependsOn(':app') 28 | } 29 | 30 | task clean(type: Delete) { 31 | delete rootProject.buildDir 32 | } 33 | -------------------------------------------------------------------------------- /lib/widgets/rounded_button.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class RoundedButton extends StatelessWidget { 4 | 5 | const RoundedButton({Key? key, 6 | required this.color, required this.onPressed, required this.text 7 | }) : super(key: key); 8 | 9 | final Color color; 10 | final VoidCallback onPressed; 11 | final String text; 12 | 13 | @override 14 | Widget build(BuildContext context) { 15 | return Padding( 16 | padding: EdgeInsets.symmetric(vertical: 16.0), 17 | child: Material( 18 | elevation: 5.0, 19 | color: color, 20 | borderRadius: BorderRadius.circular(30.0), 21 | child: MaterialButton( 22 | onPressed: onPressed, 23 | minWidth: 200.0, 24 | height: 42.0, 25 | child: Text( 26 | text, 27 | ), 28 | ), 29 | ), 30 | ); 31 | } 32 | } -------------------------------------------------------------------------------- /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 | 9.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | migrate_working_dir/ 12 | 13 | # IntelliJ related 14 | *.iml 15 | *.ipr 16 | *.iws 17 | .idea/ 18 | 19 | # The .vscode folder contains launch configuration and tasks you configure in 20 | # VS Code which you may wish to be included in version control, so this line 21 | # is commented out by default. 22 | #.vscode/ 23 | 24 | # Flutter/Dart/Pub related 25 | **/doc/api/ 26 | **/ios/Flutter/.last_build_id 27 | .dart_tool/ 28 | .flutter-plugins 29 | .flutter-plugins-dependencies 30 | .packages 31 | .pub-cache/ 32 | .pub/ 33 | /build/ 34 | 35 | # Web related 36 | lib/generated_plugin_registrant.dart 37 | 38 | # Symbolication related 39 | app.*.symbols 40 | 41 | # Obfuscation related 42 | app.*.map.json 43 | 44 | # Android Studio will place build artifacts here 45 | /android/app/debug 46 | /android/app/profile 47 | /android/app/release 48 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:firebase_core/firebase_core.dart'; 2 | import 'package:flutter/material.dart'; 3 | import '../screens/welcome_screen.dart'; 4 | import '../screens/login_screen.dart'; 5 | import '../screens/registration_screen.dart'; 6 | import '../screens/chat_screen.dart'; 7 | 8 | void main() async { 9 | WidgetsFlutterBinding.ensureInitialized(); 10 | await Firebase.initializeApp(); 11 | runApp(ChatApp()); 12 | } 13 | 14 | class ChatApp extends StatelessWidget { 15 | 16 | @override 17 | Widget build(BuildContext context) { 18 | return MaterialApp( 19 | debugShowCheckedModeBanner: false, 20 | theme: ThemeData.dark().copyWith( 21 | textTheme: const TextTheme( 22 | bodyText1: TextStyle(color: Colors.black54), 23 | ), 24 | ), 25 | initialRoute: WelcomeScreen.id, 26 | routes: { 27 | WelcomeScreen.id : (context) => WelcomeScreen(), 28 | LoginScreen.id : (context) => LoginScreen(), 29 | RegistrationScreen.id : (context) => RegistrationScreen(), 30 | ChatScreen.id : (context) => ChatScreen(), 31 | }, 32 | home: WelcomeScreen(), 33 | ); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_info": { 3 | "project_number": "561645531498", 4 | "project_id": "flash-chat-c3710", 5 | "storage_bucket": "flash-chat-c3710.appspot.com" 6 | }, 7 | "client": [ 8 | { 9 | "client_info": { 10 | "mobilesdk_app_id": "1:561645531498:android:e718be3b8660683f643513", 11 | "android_client_info": { 12 | "package_name": "com.example.chat_app" 13 | } 14 | }, 15 | "oauth_client": [ 16 | { 17 | "client_id": "561645531498-cd6dghddri7bftvslcngmtjhpc3i820c.apps.googleusercontent.com", 18 | "client_type": 3 19 | } 20 | ], 21 | "api_key": [ 22 | { 23 | "current_key": "AIzaSyDbF_dcBXnFpMfUk6aEtT9CfI1A51eI2g4" 24 | } 25 | ], 26 | "services": { 27 | "appinvite_service": { 28 | "other_platform_oauth_client": [ 29 | { 30 | "client_id": "561645531498-cd6dghddri7bftvslcngmtjhpc3i820c.apps.googleusercontent.com", 31 | "client_type": 3 32 | } 33 | ] 34 | } 35 | } 36 | } 37 | ], 38 | "configuration_version": "1" 39 | } -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter widget test. 2 | // 3 | // To perform an interaction with a widget in your test, use the WidgetTester 4 | // utility in the flutter_test package. 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:chat_app/main.dart'; 12 | 13 | void main() { 14 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 15 | // Build our app and trigger a frame. 16 | await tester.pumpWidget( ChatApp()); 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 | -------------------------------------------------------------------------------- /.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. 5 | 6 | version: 7 | revision: f1875d570e39de09040c8f79aa13cc56baab8db1 8 | channel: stable 9 | 10 | project_type: app 11 | 12 | # Tracks metadata for the flutter migrate command 13 | migration: 14 | platforms: 15 | - platform: root 16 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 17 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 18 | - platform: android 19 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 20 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 21 | - platform: ios 22 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 23 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 24 | 25 | # User provided section 26 | 27 | # List of Local paths (relative to this file) that should be 28 | # ignored by the migrate tool. 29 | # 30 | # Files that are not part of the templates will be ignored by default. 31 | unmanaged_files: 32 | - 'lib/main.dart' 33 | - 'ios/Runner.xcodeproj/project.pbxproj' 34 | -------------------------------------------------------------------------------- /ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CLIENT_ID 6 | 561645531498-9im4cqcrtkun9777ufr01l64v5s0fjr7.apps.googleusercontent.com 7 | REVERSED_CLIENT_ID 8 | com.googleusercontent.apps.561645531498-9im4cqcrtkun9777ufr01l64v5s0fjr7 9 | API_KEY 10 | AIzaSyAWyVKiFYWBJ9YgDO8UM2ukvYQf5psear0 11 | GCM_SENDER_ID 12 | 561645531498 13 | PLIST_VERSION 14 | 1 15 | BUNDLE_ID 16 | com.goggle.chatApp 17 | PROJECT_ID 18 | flash-chat-c3710 19 | STORAGE_BUCKET 20 | flash-chat-c3710.appspot.com 21 | IS_ADS_ENABLED 22 | 23 | IS_ANALYTICS_ENABLED 24 | 25 | IS_APPINVITE_ENABLED 26 | 27 | IS_GCM_ENABLED 28 | 29 | IS_SIGNIN_ENABLED 30 | 31 | GOOGLE_APP_ID 32 | 1:561645531498:ios:09c88caa5fc2fd06643513 33 | 34 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | platform :ios, '10.0' 3 | 4 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency. 5 | ENV['COCOAPODS_DISABLE_STATS'] = 'true' 6 | 7 | project 'Runner', { 8 | 'Debug' => :debug, 9 | 'Profile' => :release, 10 | 'Release' => :release, 11 | } 12 | 13 | def flutter_root 14 | generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) 15 | unless File.exist?(generated_xcode_build_settings_path) 16 | raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" 17 | end 18 | 19 | File.foreach(generated_xcode_build_settings_path) do |line| 20 | matches = line.match(/FLUTTER_ROOT\=(.*)/) 21 | return matches[1].strip if matches 22 | end 23 | raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" 24 | end 25 | 26 | require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) 27 | 28 | flutter_ios_podfile_setup 29 | 30 | target 'Runner' do 31 | use_frameworks! 32 | use_modular_headers! 33 | 34 | flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) 35 | end 36 | 37 | post_install do |installer| 38 | installer.pods_project.targets.each do |target| 39 | flutter_additional_ios_build_settings(target) 40 | end 41 | end 42 | -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | # This file configures the analyzer, which statically analyzes Dart code to 2 | # check for errors, warnings, and lints. 3 | # 4 | # The issues identified by the analyzer are surfaced in the UI of Dart-enabled 5 | # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be 6 | # invoked from the command line by running `flutter analyze`. 7 | 8 | # The following line activates a set of recommended lints for Flutter apps, 9 | # packages, and plugins designed to encourage good coding practices. 10 | include: package:flutter_lints/flutter.yaml 11 | 12 | linter: 13 | # The lint rules applied to this project can be customized in the 14 | # section below to disable rules from the `package:flutter_lints/flutter.yaml` 15 | # included above or to enable additional rules. A list of all available lints 16 | # and their documentation is published at 17 | # https://dart-lang.github.io/linter/lints/index.html. 18 | # 19 | # Instead of disabling a lint rule for the entire project in the 20 | # section below, it can also be suppressed for a single line of code 21 | # or a specific dart file by using the `// ignore: name_of_lint` and 22 | # `// ignore_for_file: name_of_lint` syntax on the line or in the file 23 | # producing the lint. 24 | rules: 25 | # avoid_print: false # Uncomment to disable the `avoid_print` rule 26 | # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule 27 | 28 | # Additional information about this file can be found at 29 | # https://dart.dev/guides/language/analysis-options 30 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 15 | 19 | 23 | 24 | 25 | 26 | 27 | 28 | 30 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java: -------------------------------------------------------------------------------- 1 | package io.flutter.plugins; 2 | 3 | import androidx.annotation.Keep; 4 | import androidx.annotation.NonNull; 5 | import io.flutter.Log; 6 | 7 | import io.flutter.embedding.engine.FlutterEngine; 8 | 9 | /** 10 | * Generated file. Do not edit. 11 | * This file is generated by the Flutter tool based on the 12 | * plugins that support the Android platform. 13 | */ 14 | @Keep 15 | public final class GeneratedPluginRegistrant { 16 | private static final String TAG = "GeneratedPluginRegistrant"; 17 | public static void registerWith(@NonNull FlutterEngine flutterEngine) { 18 | try { 19 | flutterEngine.getPlugins().add(new io.flutter.plugins.firebase.firestore.FlutterFirebaseFirestorePlugin()); 20 | } catch(Exception e) { 21 | Log.e(TAG, "Error registering plugin cloud_firestore, io.flutter.plugins.firebase.firestore.FlutterFirebaseFirestorePlugin", e); 22 | } 23 | try { 24 | flutterEngine.getPlugins().add(new io.flutter.plugins.firebase.auth.FlutterFirebaseAuthPlugin()); 25 | } catch(Exception e) { 26 | Log.e(TAG, "Error registering plugin firebase_auth, io.flutter.plugins.firebase.auth.FlutterFirebaseAuthPlugin", e); 27 | } 28 | try { 29 | flutterEngine.getPlugins().add(new io.flutter.plugins.firebase.core.FlutterFirebaseCorePlugin()); 30 | } catch(Exception e) { 31 | Log.e(TAG, "Error registering plugin firebase_core, io.flutter.plugins.firebase.core.FlutterFirebaseCorePlugin", e); 32 | } 33 | try { 34 | flutterEngine.getPlugins().add(new com.walle.modal_progress_hud_nsn.ModalProgressHudNsnPlugin()); 35 | } catch(Exception e) { 36 | Log.e(TAG, "Error registering plugin modal_progress_hud_nsn, com.walle.modal_progress_hud_nsn.ModalProgressHudNsnPlugin", e); 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CADisableMinimumFrameDurationOnPhone 6 | 7 | CFBundleDevelopmentRegion 8 | $(DEVELOPMENT_LANGUAGE) 9 | CFBundleDisplayName 10 | Chat App 11 | CFBundleExecutable 12 | $(EXECUTABLE_NAME) 13 | CFBundleIdentifier 14 | $(PRODUCT_BUNDLE_IDENTIFIER) 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | chat_app 19 | CFBundlePackageType 20 | APPL 21 | CFBundleShortVersionString 22 | $(FLUTTER_BUILD_NAME) 23 | CFBundleSignature 24 | ???? 25 | CFBundleVersion 26 | $(FLUTTER_BUILD_NUMBER) 27 | LSRequiresIPhoneOS 28 | 29 | UILaunchStoryboardName 30 | LaunchScreen 31 | UIMainStoryboardFile 32 | Main 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UISupportedInterfaceOrientations~ipad 40 | 41 | UIInterfaceOrientationPortrait 42 | UIInterfaceOrientationPortraitUpsideDown 43 | UIInterfaceOrientationLandscapeLeft 44 | UIInterfaceOrientationLandscapeRight 45 | 46 | UIViewControllerBasedStatusBarAppearance 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /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 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply plugin: 'com.google.gms.google-services' 26 | apply plugin: 'kotlin-android' 27 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 28 | 29 | 30 | 31 | android { 32 | compileSdkVersion 32 33 | ndkVersion flutter.ndkVersion 34 | 35 | compileOptions { 36 | sourceCompatibility JavaVersion.VERSION_1_8 37 | targetCompatibility JavaVersion.VERSION_1_8 38 | } 39 | 40 | kotlinOptions { 41 | jvmTarget = '1.8' 42 | } 43 | 44 | sourceSets { 45 | main.java.srcDirs += 'src/main/kotlin' 46 | } 47 | 48 | defaultConfig { 49 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 50 | applicationId "com.example.chat_app" 51 | // You can update the following values to match your application needs. 52 | // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration. 53 | minSdkVersion 19 54 | multiDexEnabled true 55 | targetSdkVersion flutter.targetSdkVersion 56 | versionCode flutterVersionCode.toInteger() 57 | versionName flutterVersionName 58 | } 59 | 60 | buildTypes { 61 | release { 62 | // TODO: Add your own signing config for the release build. 63 | // Signing with the debug keys for now, so `flutter run --release` works. 64 | signingConfig signingConfigs.debug 65 | } 66 | } 67 | } 68 | 69 | flutter { 70 | source '../..' 71 | } 72 | 73 | dependencies { 74 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 75 | implementation platform('com.google.firebase:firebase-bom:30.4.1') 76 | implementation 'com.google.firebase:firebase-analytics' 77 | } 78 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/screens/welcome_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:chat_app/screens/login_screen.dart'; 2 | import 'package:chat_app/screens/registration_screen.dart'; 3 | import 'package:flutter/material.dart'; 4 | import 'package:animated_text_kit/animated_text_kit.dart'; 5 | import '../widgets/rounded_button.dart'; 6 | 7 | class WelcomeScreen extends StatefulWidget { 8 | static String id = 'welcome_screen'; 9 | 10 | @override 11 | _WelcomeScreenState createState() => _WelcomeScreenState(); 12 | } 13 | 14 | class _WelcomeScreenState extends State with SingleTickerProviderStateMixin { 15 | 16 | late AnimationController controller; 17 | late Animation animation; 18 | 19 | @override 20 | void initState() { 21 | super.initState(); 22 | controller = AnimationController( 23 | duration: Duration(seconds: 1), 24 | vsync: this, 25 | upperBound: 1, 26 | ); 27 | 28 | animation = ColorTween(begin: Colors.blueGrey, end: Color(0xff001c55)).animate(controller); 29 | controller.forward(); 30 | 31 | controller.addListener(() { 32 | setState(() { 33 | }); 34 | 35 | }); 36 | } 37 | 38 | @override 39 | void dispose() { 40 | // TODO: implement dispose 41 | controller.dispose(); 42 | super.dispose(); 43 | 44 | } 45 | 46 | @override 47 | Widget build(BuildContext context) { 48 | return Scaffold( 49 | backgroundColor: animation.value, 50 | body: Padding( 51 | padding: EdgeInsets.symmetric(horizontal: 24.0), 52 | child: Column( 53 | mainAxisAlignment: MainAxisAlignment.center, 54 | crossAxisAlignment: CrossAxisAlignment.stretch, 55 | children: [ 56 | Row( 57 | children: [ 58 | Hero( 59 | tag: 'logo', 60 | child: Container( 61 | height: 60, 62 | child: Image.asset('images/logo.png'), 63 | ), 64 | ), 65 | TypewriterAnimatedTextKit( 66 | isRepeatingAnimation: false, 67 | text: ['Chat App'], 68 | textStyle: const TextStyle( 69 | fontSize: 30.0, 70 | fontWeight: FontWeight.w900, 71 | color: Colors.white, 72 | ), 73 | ), 74 | ], 75 | ), 76 | SizedBox( 77 | height: 48.0, 78 | ), 79 | RoundedButton( 80 | onPressed: () { 81 | //Go to login screen. 82 | Navigator.pushNamed(context, LoginScreen.id); 83 | }, 84 | color: Colors.lightBlueAccent, 85 | text: 'Log In', 86 | ), 87 | 88 | RoundedButton( 89 | onPressed: () { 90 | //Go to login screen. 91 | Navigator.pushNamed(context, RegistrationScreen.id); 92 | }, 93 | color: Colors.blueAccent, 94 | text: 'Register', 95 | ), 96 | ], 97 | ), 98 | ), 99 | ); 100 | } 101 | } 102 | 103 | 104 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 41 | 42 | 52 | 54 | 60 | 61 | 62 | 63 | 69 | 71 | 77 | 78 | 79 | 80 | 82 | 83 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: chat_app 2 | description: A new Flutter project. 3 | 4 | # The following line prevents the package from being accidentally published to 5 | # pub.dev using `flutter pub publish`. This is preferred for private packages. 6 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev 7 | 8 | # The following defines the version and build number for your application. 9 | # A version number is three numbers separated by dots, like 1.2.43 10 | # followed by an optional build number separated by a +. 11 | # Both the version and the builder number may be overridden in flutter 12 | # build by specifying --build-name and --build-number, respectively. 13 | # In Android, build-name is used as versionName while build-number used as versionCode. 14 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 15 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 16 | # Read more about iOS versioning at 17 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 18 | version: 1.0.0+1 19 | 20 | environment: 21 | sdk: ">=2.17.6 <3.0.0" 22 | 23 | # Dependencies specify other packages that your package needs in order to work. 24 | # To automatically upgrade your package dependencies to the latest versions 25 | # consider running `flutter pub upgrade --major-versions`. Alternatively, 26 | # dependencies can be manually updated by changing the version numbers below to 27 | # the latest version available on pub.dev. To see which dependencies have newer 28 | # versions available, run `flutter pub outdated`. 29 | dependencies: 30 | flutter: 31 | sdk: flutter 32 | 33 | 34 | # The following adds the Cupertino Icons font to your application. 35 | # Use with the CupertinoIcons class for iOS style icons. 36 | cupertino_icons: ^1.0.2 37 | animated_text_kit: ^4.2.2 38 | firebase_core: ^1.22.0 39 | firebase_auth: ^3.9.0 40 | cloud_firestore: ^3.4.8 41 | modal_progress_hud_nsn: ^0.3.0 42 | 43 | dev_dependencies: 44 | flutter_test: 45 | sdk: flutter 46 | 47 | # The "flutter_lints" package below contains a set of recommended lints to 48 | # encourage good coding practices. The lint set provided by the package is 49 | # activated in the `analysis_options.yaml` file located at the root of your 50 | # package. See that file for information about deactivating specific lint 51 | # rules and activating additional ones. 52 | flutter_lints: ^2.0.0 53 | 54 | # For information on the generic Dart part of this file, see the 55 | # following page: https://dart.dev/tools/pub/pubspec 56 | 57 | # The following section is specific to Flutter packages. 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/ 68 | # - images/a_dot_ham.jpeg 69 | 70 | # An image asset can refer to one or more resolution-specific "variants", see 71 | # https://flutter.dev/assets-and-images/#resolution-aware 72 | 73 | # For details regarding adding assets from package dependencies, see 74 | # https://flutter.dev/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.dev/custom-fonts/#from-packages 95 | -------------------------------------------------------------------------------- /lib/screens/login_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:chat_app/screens/chat_screen.dart'; 2 | import 'package:firebase_auth/firebase_auth.dart'; 3 | import 'package:firebase_core/firebase_core.dart'; 4 | import 'package:flutter/material.dart'; 5 | import 'package:modal_progress_hud_nsn/modal_progress_hud_nsn.dart'; 6 | import '../widgets/rounded_button.dart'; 7 | 8 | class LoginScreen extends StatefulWidget { 9 | 10 | static String id = 'login_screen'; 11 | 12 | @override 13 | _LoginScreenState createState() => _LoginScreenState(); 14 | } 15 | 16 | class _LoginScreenState extends State { 17 | final _auth = FirebaseAuth.instance; 18 | bool showSpinner = false; 19 | String email = ''; 20 | String password = ''; 21 | 22 | 23 | 24 | @override 25 | Widget build(BuildContext context) { 26 | return Scaffold( 27 | backgroundColor: Color(0xff001c55), 28 | body: ModalProgressHUD( 29 | inAsyncCall: showSpinner, 30 | child: Padding( 31 | padding: EdgeInsets.symmetric(horizontal: 24.0), 32 | child: Column( 33 | mainAxisAlignment: MainAxisAlignment.center, 34 | crossAxisAlignment: CrossAxisAlignment.stretch, 35 | children: [ 36 | Flexible( 37 | child: Hero( 38 | tag: 'logo', 39 | child: Container( 40 | height: 200.0, 41 | child: Image.asset('images/logo.png'), 42 | ), 43 | ), 44 | ), 45 | SizedBox( 46 | height: 48.0, 47 | ), 48 | TextField( 49 | onChanged: (value) { 50 | //Do something with the user input. 51 | email = value; 52 | }, 53 | style: TextStyle(color: Colors.white), 54 | keyboardType: TextInputType.emailAddress, 55 | decoration: InputDecoration( 56 | hintText: 'Enter your email', 57 | hintStyle: TextStyle(color: Colors.blueGrey), 58 | contentPadding: 59 | EdgeInsets.symmetric(vertical: 10.0, horizontal: 20.0), 60 | border: OutlineInputBorder( 61 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 62 | ), 63 | enabledBorder: OutlineInputBorder( 64 | borderSide: 65 | BorderSide(color: Colors.lightBlueAccent, width: 1.0), 66 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 67 | ), 68 | focusedBorder: OutlineInputBorder( 69 | borderSide: 70 | BorderSide(color: Colors.lightBlueAccent, width: 2.0), 71 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 72 | ), 73 | ), 74 | ), 75 | SizedBox( 76 | height: 8.0, 77 | ), 78 | TextField( 79 | onChanged: (value) { 80 | //Do something with the user input. 81 | password = value; 82 | }, 83 | style: TextStyle(color: Colors.white), 84 | obscureText: true, 85 | decoration: InputDecoration( 86 | hintStyle: TextStyle(color: Colors.blueGrey), 87 | hintText: 'Enter your password.', 88 | contentPadding: 89 | EdgeInsets.symmetric(vertical: 10.0, horizontal: 20.0), 90 | border: OutlineInputBorder( 91 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 92 | ), 93 | enabledBorder: OutlineInputBorder( 94 | borderSide: 95 | BorderSide(color: Colors.lightBlueAccent, width: 1.0), 96 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 97 | ), 98 | focusedBorder: OutlineInputBorder( 99 | borderSide: 100 | BorderSide(color: Colors.lightBlueAccent, width: 2.0), 101 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 102 | ), 103 | ), 104 | ), 105 | SizedBox( 106 | height: 24.0, 107 | ), 108 | RoundedButton( 109 | onPressed: () async { 110 | try { 111 | setState(() { 112 | showSpinner = true; 113 | }); 114 | final user = await _auth.signInWithEmailAndPassword( 115 | email: email, password: password); 116 | Navigator.pushNamed(context, ChatScreen.id); 117 | } catch (e) { 118 | print(e); 119 | } 120 | setState(() { 121 | showSpinner = false; 122 | }); 123 | }, 124 | color: Colors.lightBlueAccent, 125 | text: 'Log In', 126 | ), 127 | ], 128 | ), 129 | ), 130 | ), 131 | ); 132 | } 133 | } 134 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # Attempt to set APP_HOME 46 | # Resolve links: $0 may be a link 47 | PRG="$0" 48 | # Need this for relative symlinks. 49 | while [ -h "$PRG" ] ; do 50 | ls=`ls -ld "$PRG"` 51 | link=`expr "$ls" : '.*-> \(.*\)$'` 52 | if expr "$link" : '/.*' > /dev/null; then 53 | PRG="$link" 54 | else 55 | PRG=`dirname "$PRG"`"/$link" 56 | fi 57 | done 58 | SAVED="`pwd`" 59 | cd "`dirname \"$PRG\"`/" >/dev/null 60 | APP_HOME="`pwd -P`" 61 | cd "$SAVED" >/dev/null 62 | 63 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 64 | 65 | # Determine the Java command to use to start the JVM. 66 | if [ -n "$JAVA_HOME" ] ; then 67 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 68 | # IBM's JDK on AIX uses strange locations for the executables 69 | JAVACMD="$JAVA_HOME/jre/sh/java" 70 | else 71 | JAVACMD="$JAVA_HOME/bin/java" 72 | fi 73 | if [ ! -x "$JAVACMD" ] ; then 74 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 75 | 76 | Please set the JAVA_HOME variable in your environment to match the 77 | location of your Java installation." 78 | fi 79 | else 80 | JAVACMD="java" 81 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 82 | 83 | Please set the JAVA_HOME variable in your environment to match the 84 | location of your Java installation." 85 | fi 86 | 87 | # Increase the maximum file descriptors if we can. 88 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 89 | MAX_FD_LIMIT=`ulimit -H -n` 90 | if [ $? -eq 0 ] ; then 91 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 92 | MAX_FD="$MAX_FD_LIMIT" 93 | fi 94 | ulimit -n $MAX_FD 95 | if [ $? -ne 0 ] ; then 96 | warn "Could not set maximum file descriptor limit: $MAX_FD" 97 | fi 98 | else 99 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 100 | fi 101 | fi 102 | 103 | # For Darwin, add options to specify how the application appears in the dock 104 | if $darwin; then 105 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 106 | fi 107 | 108 | # For Cygwin, switch paths to Windows format before running java 109 | if $cygwin ; then 110 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 111 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 112 | JAVACMD=`cygpath --unix "$JAVACMD"` 113 | 114 | # We build the pattern for arguments to be converted via cygpath 115 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 116 | SEP="" 117 | for dir in $ROOTDIRSRAW ; do 118 | ROOTDIRS="$ROOTDIRS$SEP$dir" 119 | SEP="|" 120 | done 121 | OURCYGPATTERN="(^($ROOTDIRS))" 122 | # Add a user-defined pattern to the cygpath arguments 123 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 124 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 125 | fi 126 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 127 | i=0 128 | for arg in "$@" ; do 129 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 130 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 131 | 132 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 133 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 134 | else 135 | eval `echo args$i`="\"$arg\"" 136 | fi 137 | i=$((i+1)) 138 | done 139 | case $i in 140 | (0) set -- ;; 141 | (1) set -- "$args0" ;; 142 | (2) set -- "$args0" "$args1" ;; 143 | (3) set -- "$args0" "$args1" "$args2" ;; 144 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 145 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 146 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 147 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 148 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 149 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 150 | esac 151 | fi 152 | 153 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 154 | function splitJvmOpts() { 155 | JVM_OPTS=("$@") 156 | } 157 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 158 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 159 | 160 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 161 | -------------------------------------------------------------------------------- /lib/screens/registration_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:chat_app/main.dart'; 2 | import 'package:chat_app/screens/chat_screen.dart'; 3 | import 'package:firebase_auth/firebase_auth.dart'; 4 | import 'package:flutter/material.dart'; 5 | import '../widgets/rounded_button.dart'; 6 | import 'package:modal_progress_hud_nsn/modal_progress_hud_nsn.dart'; 7 | 8 | class RegistrationScreen extends StatefulWidget { 9 | 10 | static String id = 'registration_screen'; 11 | 12 | @override 13 | _RegistrationScreenState createState() => _RegistrationScreenState(); 14 | } 15 | 16 | class _RegistrationScreenState extends State { 17 | final _auth = FirebaseAuth.instance; 18 | bool showSpinner = false; 19 | String name = ''; 20 | String email = ''; 21 | String password = ''; 22 | 23 | @override 24 | Widget build(BuildContext context) { 25 | return Scaffold( 26 | backgroundColor: Color(0xff001c55), 27 | body: ModalProgressHUD( 28 | inAsyncCall: showSpinner, 29 | child: Padding( 30 | padding: EdgeInsets.symmetric(horizontal: 24.0), 31 | child: Column( 32 | mainAxisAlignment: MainAxisAlignment.center, 33 | crossAxisAlignment: CrossAxisAlignment.stretch, 34 | children: [ 35 | Flexible( 36 | child: Hero( 37 | tag: 'logo', 38 | child: Container( 39 | height: 200.0, 40 | child: Image.asset('images/logo.png'), 41 | ), 42 | ), 43 | ), 44 | SizedBox( 45 | height: 48.0, 46 | ), 47 | TextField( 48 | style: TextStyle(color: Colors.white), 49 | onChanged: (value) { 50 | //Do something with the user input. 51 | name = value; 52 | }, 53 | keyboardType: TextInputType.emailAddress, 54 | decoration: InputDecoration( 55 | hintText: 'Enter your name', 56 | hintStyle: TextStyle(color: Colors.blueGrey), 57 | contentPadding: 58 | EdgeInsets.symmetric(vertical: 10.0, horizontal: 20.0), 59 | border: OutlineInputBorder( 60 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 61 | ), 62 | enabledBorder: OutlineInputBorder( 63 | borderSide: BorderSide(color: Colors.blueAccent, width: 1.0), 64 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 65 | ), 66 | focusedBorder: OutlineInputBorder( 67 | borderSide: BorderSide(color: Colors.blueAccent, width: 3.0), 68 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 69 | ), 70 | ), 71 | ), 72 | SizedBox( 73 | height: 8.0, 74 | ), 75 | 76 | TextField( 77 | style: TextStyle(color: Colors.white), 78 | onChanged: (value) { 79 | //Do something with the user input. 80 | email = value; 81 | }, 82 | keyboardType: TextInputType.emailAddress, 83 | decoration: InputDecoration( 84 | hintText: 'Enter your email', 85 | hintStyle: TextStyle(color: Colors.blueGrey), 86 | contentPadding: 87 | EdgeInsets.symmetric(vertical: 10.0, horizontal: 20.0), 88 | border: OutlineInputBorder( 89 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 90 | ), 91 | enabledBorder: OutlineInputBorder( 92 | borderSide: BorderSide(color: Colors.blueAccent, width: 3.0), 93 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 94 | ), 95 | focusedBorder: OutlineInputBorder( 96 | borderSide: BorderSide(color: Colors.blueAccent, width: 2.0), 97 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 98 | ), 99 | ), 100 | ), 101 | SizedBox( 102 | height: 8.0, 103 | ), 104 | TextField( 105 | style: TextStyle(color: Colors.white), 106 | onChanged: (value) { 107 | //Do something with the user input. 108 | password = value; 109 | }, 110 | obscureText: true, 111 | decoration: InputDecoration( 112 | hintText: 'Enter your password', 113 | hintStyle: TextStyle(color: Colors.blueGrey), 114 | contentPadding: 115 | EdgeInsets.symmetric(vertical: 10.0, horizontal: 20.0), 116 | border: OutlineInputBorder( 117 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 118 | ), 119 | enabledBorder: OutlineInputBorder( 120 | borderSide: BorderSide(color: Colors.blueAccent, width: 1.0), 121 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 122 | ), 123 | focusedBorder: OutlineInputBorder( 124 | borderSide: BorderSide(color: Colors.blueAccent, width: 2.0), 125 | borderRadius: BorderRadius.all(Radius.circular(32.0)), 126 | ), 127 | ), 128 | ), 129 | SizedBox( 130 | height: 24.0, 131 | ), 132 | RoundedButton( 133 | onPressed: () async { 134 | setState(() { 135 | showSpinner = true; 136 | }); 137 | try { 138 | final UserCredential newUser = await _auth.createUserWithEmailAndPassword( 139 | email: email, password: password); 140 | User? user = newUser.user; 141 | await user?.updateDisplayName(name); 142 | if (newUser != null) { 143 | 144 | Navigator.pushNamed(context, ChatScreen.id); 145 | } 146 | } 147 | catch (e){ 148 | print(e); 149 | } 150 | setState(() { 151 | showSpinner = false; 152 | }); 153 | }, 154 | color: Colors.blueAccent, 155 | text: 'Register', 156 | ), 157 | ], 158 | ), 159 | ), 160 | ), 161 | ); 162 | } 163 | } 164 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | animated_text_kit: 5 | dependency: "direct main" 6 | description: 7 | name: animated_text_kit 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "4.2.2" 11 | async: 12 | dependency: transitive 13 | description: 14 | name: async 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "2.8.2" 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 | characters: 26 | dependency: transitive 27 | description: 28 | name: characters 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.2.0" 32 | charcode: 33 | dependency: transitive 34 | description: 35 | name: charcode 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.3.1" 39 | clock: 40 | dependency: transitive 41 | description: 42 | name: clock 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.1.0" 46 | cloud_firestore: 47 | dependency: "direct main" 48 | description: 49 | name: cloud_firestore 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "3.4.8" 53 | cloud_firestore_platform_interface: 54 | dependency: transitive 55 | description: 56 | name: cloud_firestore_platform_interface 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "5.7.4" 60 | cloud_firestore_web: 61 | dependency: transitive 62 | description: 63 | name: cloud_firestore_web 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "2.8.7" 67 | collection: 68 | dependency: transitive 69 | description: 70 | name: collection 71 | url: "https://pub.dartlang.org" 72 | source: hosted 73 | version: "1.16.0" 74 | cupertino_icons: 75 | dependency: "direct main" 76 | description: 77 | name: cupertino_icons 78 | url: "https://pub.dartlang.org" 79 | source: hosted 80 | version: "1.0.5" 81 | fake_async: 82 | dependency: transitive 83 | description: 84 | name: fake_async 85 | url: "https://pub.dartlang.org" 86 | source: hosted 87 | version: "1.3.0" 88 | firebase_auth: 89 | dependency: "direct main" 90 | description: 91 | name: firebase_auth 92 | url: "https://pub.dartlang.org" 93 | source: hosted 94 | version: "3.9.0" 95 | firebase_auth_platform_interface: 96 | dependency: transitive 97 | description: 98 | name: firebase_auth_platform_interface 99 | url: "https://pub.dartlang.org" 100 | source: hosted 101 | version: "6.8.0" 102 | firebase_auth_web: 103 | dependency: transitive 104 | description: 105 | name: firebase_auth_web 106 | url: "https://pub.dartlang.org" 107 | source: hosted 108 | version: "4.4.1" 109 | firebase_core: 110 | dependency: "direct main" 111 | description: 112 | name: firebase_core 113 | url: "https://pub.dartlang.org" 114 | source: hosted 115 | version: "1.22.0" 116 | firebase_core_platform_interface: 117 | dependency: transitive 118 | description: 119 | name: firebase_core_platform_interface 120 | url: "https://pub.dartlang.org" 121 | source: hosted 122 | version: "4.5.1" 123 | firebase_core_web: 124 | dependency: transitive 125 | description: 126 | name: firebase_core_web 127 | url: "https://pub.dartlang.org" 128 | source: hosted 129 | version: "1.7.2" 130 | flutter: 131 | dependency: "direct main" 132 | description: flutter 133 | source: sdk 134 | version: "0.0.0" 135 | flutter_lints: 136 | dependency: "direct dev" 137 | description: 138 | name: flutter_lints 139 | url: "https://pub.dartlang.org" 140 | source: hosted 141 | version: "2.0.1" 142 | flutter_test: 143 | dependency: "direct dev" 144 | description: flutter 145 | source: sdk 146 | version: "0.0.0" 147 | flutter_web_plugins: 148 | dependency: transitive 149 | description: flutter 150 | source: sdk 151 | version: "0.0.0" 152 | http_parser: 153 | dependency: transitive 154 | description: 155 | name: http_parser 156 | url: "https://pub.dartlang.org" 157 | source: hosted 158 | version: "4.0.1" 159 | intl: 160 | dependency: transitive 161 | description: 162 | name: intl 163 | url: "https://pub.dartlang.org" 164 | source: hosted 165 | version: "0.17.0" 166 | js: 167 | dependency: transitive 168 | description: 169 | name: js 170 | url: "https://pub.dartlang.org" 171 | source: hosted 172 | version: "0.6.4" 173 | lints: 174 | dependency: transitive 175 | description: 176 | name: lints 177 | url: "https://pub.dartlang.org" 178 | source: hosted 179 | version: "2.0.0" 180 | matcher: 181 | dependency: transitive 182 | description: 183 | name: matcher 184 | url: "https://pub.dartlang.org" 185 | source: hosted 186 | version: "0.12.11" 187 | material_color_utilities: 188 | dependency: transitive 189 | description: 190 | name: material_color_utilities 191 | url: "https://pub.dartlang.org" 192 | source: hosted 193 | version: "0.1.4" 194 | meta: 195 | dependency: transitive 196 | description: 197 | name: meta 198 | url: "https://pub.dartlang.org" 199 | source: hosted 200 | version: "1.7.0" 201 | modal_progress_hud_nsn: 202 | dependency: "direct main" 203 | description: 204 | name: modal_progress_hud_nsn 205 | url: "https://pub.dartlang.org" 206 | source: hosted 207 | version: "0.3.0" 208 | path: 209 | dependency: transitive 210 | description: 211 | name: path 212 | url: "https://pub.dartlang.org" 213 | source: hosted 214 | version: "1.8.1" 215 | plugin_platform_interface: 216 | dependency: transitive 217 | description: 218 | name: plugin_platform_interface 219 | url: "https://pub.dartlang.org" 220 | source: hosted 221 | version: "2.1.3" 222 | sky_engine: 223 | dependency: transitive 224 | description: flutter 225 | source: sdk 226 | version: "0.0.99" 227 | source_span: 228 | dependency: transitive 229 | description: 230 | name: source_span 231 | url: "https://pub.dartlang.org" 232 | source: hosted 233 | version: "1.8.2" 234 | stack_trace: 235 | dependency: transitive 236 | description: 237 | name: stack_trace 238 | url: "https://pub.dartlang.org" 239 | source: hosted 240 | version: "1.10.0" 241 | stream_channel: 242 | dependency: transitive 243 | description: 244 | name: stream_channel 245 | url: "https://pub.dartlang.org" 246 | source: hosted 247 | version: "2.1.0" 248 | string_scanner: 249 | dependency: transitive 250 | description: 251 | name: string_scanner 252 | url: "https://pub.dartlang.org" 253 | source: hosted 254 | version: "1.1.0" 255 | term_glyph: 256 | dependency: transitive 257 | description: 258 | name: term_glyph 259 | url: "https://pub.dartlang.org" 260 | source: hosted 261 | version: "1.2.0" 262 | test_api: 263 | dependency: transitive 264 | description: 265 | name: test_api 266 | url: "https://pub.dartlang.org" 267 | source: hosted 268 | version: "0.4.9" 269 | typed_data: 270 | dependency: transitive 271 | description: 272 | name: typed_data 273 | url: "https://pub.dartlang.org" 274 | source: hosted 275 | version: "1.3.1" 276 | vector_math: 277 | dependency: transitive 278 | description: 279 | name: vector_math 280 | url: "https://pub.dartlang.org" 281 | source: hosted 282 | version: "2.1.2" 283 | sdks: 284 | dart: ">=2.17.6 <3.0.0" 285 | flutter: ">=1.22.0" 286 | -------------------------------------------------------------------------------- /lib/screens/chat_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import '../constants.dart'; 3 | import 'package:firebase_auth/firebase_auth.dart'; 4 | import 'package:cloud_firestore/cloud_firestore.dart'; 5 | 6 | 7 | final _fireStore = FirebaseFirestore.instance; 8 | User? loggedInUser; 9 | List> messages = []; 10 | 11 | class ChatScreen extends StatefulWidget { 12 | static String id = 'chat_screen'; 13 | @override 14 | _ChatScreenState createState() => _ChatScreenState(); 15 | } 16 | 17 | class _ChatScreenState extends State { 18 | final messageTextController = TextEditingController(); 19 | final _auth = FirebaseAuth.instance; 20 | 21 | late String messageText = ''; 22 | 23 | @override 24 | void initState() { 25 | getCurrentUser(); 26 | super.initState(); 27 | } 28 | 29 | Future getCurrentUser() async { 30 | try { 31 | loggedInUser = await _auth.currentUser!; 32 | } catch (e) { 33 | print(e); 34 | } 35 | } 36 | 37 | @override 38 | Widget build(BuildContext context) { 39 | return Scaffold( 40 | backgroundColor: Colors.white, 41 | appBar: AppBar( 42 | leading: null, 43 | actions: [ 44 | IconButton( 45 | icon: Icon(Icons.close), 46 | onPressed: () { 47 | _auth.signOut(); 48 | }), 49 | ], 50 | title: Text('️Chat'), 51 | backgroundColor: Color(0xff001c55), 52 | ), 53 | body: SafeArea( 54 | child: Column( 55 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 56 | crossAxisAlignment: CrossAxisAlignment.stretch, 57 | children: [ 58 | CustomStreamBuilder(), 59 | Container( 60 | decoration: kMessageContainerDecoration, 61 | child: Row( 62 | crossAxisAlignment: CrossAxisAlignment.center, 63 | children: [ 64 | Expanded( 65 | child: TextField( 66 | 67 | controller: messageTextController, 68 | onChanged: (value) { 69 | messageText = value; 70 | }, 71 | decoration: kMessageTextFieldDecoration, 72 | style: TextStyle(color: Colors.black), 73 | ), 74 | ), 75 | FlatButton( 76 | onPressed: () { 77 | if (messageText != '') { 78 | Map messageMap = { 79 | loggedInUser?.email: messageText 80 | }; 81 | messages.add(messageMap); 82 | messageTextController.clear(); 83 | 84 | _fireStore 85 | .collection('messages') 86 | .doc('chatCollection') 87 | .get() 88 | .then((value) => { 89 | if (value.exists) 90 | { 91 | _fireStore 92 | .collection('messages') 93 | .doc('chatCollection') 94 | .update({'chat1': messages}) 95 | } 96 | else 97 | { 98 | _fireStore 99 | .collection('messages') 100 | .doc('chatCollection') 101 | .set({'chat1': messages}) 102 | } 103 | }); 104 | } 105 | }, 106 | child: Text( 107 | 'Send', 108 | style: kSendButtonTextStyle, 109 | ), 110 | ), 111 | ], 112 | ), 113 | ), 114 | ], 115 | ), 116 | ), 117 | ); 118 | } 119 | } 120 | 121 | class CustomStreamBuilder extends StatelessWidget { 122 | 123 | @override 124 | Widget build(BuildContext context) { 125 | print(loggedInUser); 126 | return StreamBuilder( 127 | stream: _fireStore.collection('messages').snapshots(), 128 | builder: (context, snapshot) { 129 | if (snapshot.hasError) { 130 | print(snapshot.error); 131 | } else 132 | if (!snapshot.hasData) { 133 | return Center(child: CircularProgressIndicator(backgroundColor: Colors.lightBlueAccent)); 134 | } else { 135 | 136 | messages = []; 137 | 138 | final messagesSnapshot = snapshot.data?.docs; 139 | 140 | List messageBubbles = []; 141 | 142 | for (var message in messagesSnapshot!) { 143 | Map chat = message.data() as Map ; 144 | 145 | List test = chat['chat1'] as List; 146 | 147 | 148 | for (var elem in test) { 149 | Map tmp = elem as Map; 150 | 151 | tmp.forEach((key, value) { 152 | final messageText = value; 153 | final messageSender = key; 154 | if (messageText != null && messageSender != null) { 155 | 156 | messages.add({key : value}); 157 | final messageBubble = MessageBubble(messageText: messageText, 158 | messageSender: messageSender, 159 | isMineMessage: loggedInUser?.email == key 160 | ? true 161 | : false); 162 | messageBubbles.add(messageBubble); 163 | } 164 | }); 165 | } 166 | } 167 | 168 | 169 | return Expanded( 170 | child: ListView( 171 | padding: EdgeInsets.symmetric(horizontal: 10.0, vertical: 20.0,), 172 | children: messageBubbles, 173 | ), 174 | ); 175 | } 176 | return Container(); 177 | }, 178 | ); 179 | } 180 | 181 | 182 | 183 | } 184 | 185 | class MessageBubble extends StatelessWidget { 186 | MessageBubble({ 187 | required this.messageText, 188 | required this.messageSender, 189 | required this.isMineMessage 190 | }); 191 | 192 | final String messageText; 193 | final String messageSender; 194 | 195 | final bool isMineMessage; 196 | 197 | @override 198 | Widget build(BuildContext context) { 199 | return Padding( 200 | padding: EdgeInsets.all( 201 | 10.0, 202 | ), 203 | child: Column( 204 | crossAxisAlignment: isMineMessage == true ? CrossAxisAlignment.end : CrossAxisAlignment.start, 205 | children: [ 206 | Text( 207 | messageSender, 208 | style: TextStyle( 209 | fontSize: 13.0, 210 | color: Colors.black38, 211 | ), 212 | ), 213 | SizedBox(height: 4.0,), 214 | Container( 215 | constraints: BoxConstraints( 216 | maxWidth: 250, 217 | ), 218 | child: Material( 219 | borderRadius: BorderRadius.circular(15.0), 220 | elevation: 5.0, 221 | color: isMineMessage == true ? Colors.lightBlueAccent : Colors.grey.shade100, 222 | child: Padding( 223 | padding: EdgeInsets.symmetric( 224 | vertical: 10.0, 225 | horizontal: 10, 226 | ), 227 | child: Text( 228 | messageText, 229 | style: TextStyle( 230 | fontSize: 14.0, 231 | color: isMineMessage == true ? Colors.white : Colors.black87, 232 | ), 233 | ), 234 | ), 235 | ), 236 | ), 237 | ], 238 | ), 239 | ); 240 | } 241 | } 242 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 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 | 4805CFE51DB608673555B83F /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC344C3AC8F0887B51E70269 /* Pods_Runner.framework */; }; 13 | 5A2C0EB528D703E6004885C6 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 5A2C0EB428D703E6004885C6 /* GoogleService-Info.plist */; }; 14 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 15 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 16 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 17 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXCopyFilesBuildPhase section */ 21 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 22 | isa = PBXCopyFilesBuildPhase; 23 | buildActionMask = 2147483647; 24 | dstPath = ""; 25 | dstSubfolderSpec = 10; 26 | files = ( 27 | ); 28 | name = "Embed Frameworks"; 29 | runOnlyForDeploymentPostprocessing = 0; 30 | }; 31 | /* End PBXCopyFilesBuildPhase section */ 32 | 33 | /* Begin PBXFileReference section */ 34 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 35 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 36 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 37 | 5A2C0EB428D703E6004885C6 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = ""; }; 38 | 65A4C56687D28419B8327DD2 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; 39 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 40 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 41 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 42 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 43 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 44 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 46 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 47 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 48 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 49 | 9F05CE7236416E266D04842D /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; 50 | C7232F04C3B8DA38332F9A96 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; 51 | DC344C3AC8F0887B51E70269 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 52 | /* End PBXFileReference section */ 53 | 54 | /* Begin PBXFrameworksBuildPhase section */ 55 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 56 | isa = PBXFrameworksBuildPhase; 57 | buildActionMask = 2147483647; 58 | files = ( 59 | 4805CFE51DB608673555B83F /* Pods_Runner.framework in Frameworks */, 60 | ); 61 | runOnlyForDeploymentPostprocessing = 0; 62 | }; 63 | /* End PBXFrameworksBuildPhase section */ 64 | 65 | /* Begin PBXGroup section */ 66 | 3E7E069E0AA4BF8E41CC8BD1 /* Pods */ = { 67 | isa = PBXGroup; 68 | children = ( 69 | 9F05CE7236416E266D04842D /* Pods-Runner.debug.xcconfig */, 70 | C7232F04C3B8DA38332F9A96 /* Pods-Runner.release.xcconfig */, 71 | 65A4C56687D28419B8327DD2 /* Pods-Runner.profile.xcconfig */, 72 | ); 73 | name = Pods; 74 | path = Pods; 75 | sourceTree = ""; 76 | }; 77 | 868CF0DCD5416E67763AC693 /* Frameworks */ = { 78 | isa = PBXGroup; 79 | children = ( 80 | DC344C3AC8F0887B51E70269 /* Pods_Runner.framework */, 81 | ); 82 | name = Frameworks; 83 | sourceTree = ""; 84 | }; 85 | 9740EEB11CF90186004384FC /* Flutter */ = { 86 | isa = PBXGroup; 87 | children = ( 88 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 89 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 90 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 91 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 92 | ); 93 | name = Flutter; 94 | sourceTree = ""; 95 | }; 96 | 97C146E51CF9000F007C117D = { 97 | isa = PBXGroup; 98 | children = ( 99 | 9740EEB11CF90186004384FC /* Flutter */, 100 | 97C146F01CF9000F007C117D /* Runner */, 101 | 97C146EF1CF9000F007C117D /* Products */, 102 | 3E7E069E0AA4BF8E41CC8BD1 /* Pods */, 103 | 868CF0DCD5416E67763AC693 /* Frameworks */, 104 | ); 105 | sourceTree = ""; 106 | }; 107 | 97C146EF1CF9000F007C117D /* Products */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | 97C146EE1CF9000F007C117D /* Runner.app */, 111 | ); 112 | name = Products; 113 | sourceTree = ""; 114 | }; 115 | 97C146F01CF9000F007C117D /* Runner */ = { 116 | isa = PBXGroup; 117 | children = ( 118 | 5A2C0EB428D703E6004885C6 /* GoogleService-Info.plist */, 119 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 120 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 121 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 122 | 97C147021CF9000F007C117D /* Info.plist */, 123 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 124 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 125 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 126 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 127 | ); 128 | path = Runner; 129 | sourceTree = ""; 130 | }; 131 | /* End PBXGroup section */ 132 | 133 | /* Begin PBXNativeTarget section */ 134 | 97C146ED1CF9000F007C117D /* Runner */ = { 135 | isa = PBXNativeTarget; 136 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 137 | buildPhases = ( 138 | 3B715A1B73565B5F21DC6F68 /* [CP] Check Pods Manifest.lock */, 139 | 9740EEB61CF901F6004384FC /* Run Script */, 140 | 97C146EA1CF9000F007C117D /* Sources */, 141 | 97C146EB1CF9000F007C117D /* Frameworks */, 142 | 97C146EC1CF9000F007C117D /* Resources */, 143 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 144 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 145 | E590394789EDE2154E4F5B6B /* [CP] Embed Pods Frameworks */, 146 | ); 147 | buildRules = ( 148 | ); 149 | dependencies = ( 150 | ); 151 | name = Runner; 152 | productName = Runner; 153 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 154 | productType = "com.apple.product-type.application"; 155 | }; 156 | /* End PBXNativeTarget section */ 157 | 158 | /* Begin PBXProject section */ 159 | 97C146E61CF9000F007C117D /* Project object */ = { 160 | isa = PBXProject; 161 | attributes = { 162 | LastUpgradeCheck = 1300; 163 | ORGANIZATIONNAME = ""; 164 | TargetAttributes = { 165 | 97C146ED1CF9000F007C117D = { 166 | CreatedOnToolsVersion = 7.3.1; 167 | LastSwiftMigration = 1100; 168 | }; 169 | }; 170 | }; 171 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 172 | compatibilityVersion = "Xcode 9.3"; 173 | developmentRegion = en; 174 | hasScannedForEncodings = 0; 175 | knownRegions = ( 176 | en, 177 | Base, 178 | ); 179 | mainGroup = 97C146E51CF9000F007C117D; 180 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 181 | projectDirPath = ""; 182 | projectRoot = ""; 183 | targets = ( 184 | 97C146ED1CF9000F007C117D /* Runner */, 185 | ); 186 | }; 187 | /* End PBXProject section */ 188 | 189 | /* Begin PBXResourcesBuildPhase section */ 190 | 97C146EC1CF9000F007C117D /* Resources */ = { 191 | isa = PBXResourcesBuildPhase; 192 | buildActionMask = 2147483647; 193 | files = ( 194 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 195 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 196 | 5A2C0EB528D703E6004885C6 /* GoogleService-Info.plist in Resources */, 197 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 198 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 199 | ); 200 | runOnlyForDeploymentPostprocessing = 0; 201 | }; 202 | /* End PBXResourcesBuildPhase section */ 203 | 204 | /* Begin PBXShellScriptBuildPhase section */ 205 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 206 | isa = PBXShellScriptBuildPhase; 207 | buildActionMask = 2147483647; 208 | files = ( 209 | ); 210 | inputPaths = ( 211 | ); 212 | name = "Thin Binary"; 213 | outputPaths = ( 214 | ); 215 | runOnlyForDeploymentPostprocessing = 0; 216 | shellPath = /bin/sh; 217 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 218 | }; 219 | 3B715A1B73565B5F21DC6F68 /* [CP] Check Pods Manifest.lock */ = { 220 | isa = PBXShellScriptBuildPhase; 221 | buildActionMask = 2147483647; 222 | files = ( 223 | ); 224 | inputFileListPaths = ( 225 | ); 226 | inputPaths = ( 227 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 228 | "${PODS_ROOT}/Manifest.lock", 229 | ); 230 | name = "[CP] Check Pods Manifest.lock"; 231 | outputFileListPaths = ( 232 | ); 233 | outputPaths = ( 234 | "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", 235 | ); 236 | runOnlyForDeploymentPostprocessing = 0; 237 | shellPath = /bin/sh; 238 | 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"; 239 | showEnvVarsInLog = 0; 240 | }; 241 | 9740EEB61CF901F6004384FC /* Run Script */ = { 242 | isa = PBXShellScriptBuildPhase; 243 | buildActionMask = 2147483647; 244 | files = ( 245 | ); 246 | inputPaths = ( 247 | ); 248 | name = "Run Script"; 249 | outputPaths = ( 250 | ); 251 | runOnlyForDeploymentPostprocessing = 0; 252 | shellPath = /bin/sh; 253 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 254 | }; 255 | E590394789EDE2154E4F5B6B /* [CP] Embed Pods Frameworks */ = { 256 | isa = PBXShellScriptBuildPhase; 257 | buildActionMask = 2147483647; 258 | files = ( 259 | ); 260 | inputFileListPaths = ( 261 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", 262 | ); 263 | name = "[CP] Embed Pods Frameworks"; 264 | outputFileListPaths = ( 265 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", 266 | ); 267 | runOnlyForDeploymentPostprocessing = 0; 268 | shellPath = /bin/sh; 269 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; 270 | showEnvVarsInLog = 0; 271 | }; 272 | /* End PBXShellScriptBuildPhase section */ 273 | 274 | /* Begin PBXSourcesBuildPhase section */ 275 | 97C146EA1CF9000F007C117D /* Sources */ = { 276 | isa = PBXSourcesBuildPhase; 277 | buildActionMask = 2147483647; 278 | files = ( 279 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 280 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | }; 284 | /* End PBXSourcesBuildPhase section */ 285 | 286 | /* Begin PBXVariantGroup section */ 287 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 288 | isa = PBXVariantGroup; 289 | children = ( 290 | 97C146FB1CF9000F007C117D /* Base */, 291 | ); 292 | name = Main.storyboard; 293 | sourceTree = ""; 294 | }; 295 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 296 | isa = PBXVariantGroup; 297 | children = ( 298 | 97C147001CF9000F007C117D /* Base */, 299 | ); 300 | name = LaunchScreen.storyboard; 301 | sourceTree = ""; 302 | }; 303 | /* End PBXVariantGroup section */ 304 | 305 | /* Begin XCBuildConfiguration section */ 306 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 307 | isa = XCBuildConfiguration; 308 | buildSettings = { 309 | ALWAYS_SEARCH_USER_PATHS = NO; 310 | CLANG_ANALYZER_NONNULL = YES; 311 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 312 | CLANG_CXX_LIBRARY = "libc++"; 313 | CLANG_ENABLE_MODULES = YES; 314 | CLANG_ENABLE_OBJC_ARC = YES; 315 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 316 | CLANG_WARN_BOOL_CONVERSION = YES; 317 | CLANG_WARN_COMMA = YES; 318 | CLANG_WARN_CONSTANT_CONVERSION = YES; 319 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 320 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 321 | CLANG_WARN_EMPTY_BODY = YES; 322 | CLANG_WARN_ENUM_CONVERSION = YES; 323 | CLANG_WARN_INFINITE_RECURSION = YES; 324 | CLANG_WARN_INT_CONVERSION = YES; 325 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 326 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 327 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 328 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 329 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 330 | CLANG_WARN_STRICT_PROTOTYPES = YES; 331 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 332 | CLANG_WARN_UNREACHABLE_CODE = YES; 333 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 334 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 335 | COPY_PHASE_STRIP = NO; 336 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 337 | ENABLE_NS_ASSERTIONS = NO; 338 | ENABLE_STRICT_OBJC_MSGSEND = YES; 339 | GCC_C_LANGUAGE_STANDARD = gnu99; 340 | GCC_NO_COMMON_BLOCKS = YES; 341 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 342 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 343 | GCC_WARN_UNDECLARED_SELECTOR = YES; 344 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 345 | GCC_WARN_UNUSED_FUNCTION = YES; 346 | GCC_WARN_UNUSED_VARIABLE = YES; 347 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 348 | MTL_ENABLE_DEBUG_INFO = NO; 349 | SDKROOT = iphoneos; 350 | SUPPORTED_PLATFORMS = iphoneos; 351 | TARGETED_DEVICE_FAMILY = "1,2"; 352 | VALIDATE_PRODUCT = YES; 353 | }; 354 | name = Profile; 355 | }; 356 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 357 | isa = XCBuildConfiguration; 358 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 359 | buildSettings = { 360 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 361 | CLANG_ENABLE_MODULES = YES; 362 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 363 | DEVELOPMENT_TEAM = BW78FMX873; 364 | ENABLE_BITCODE = NO; 365 | INFOPLIST_FILE = Runner/Info.plist; 366 | LD_RUNPATH_SEARCH_PATHS = ( 367 | "$(inherited)", 368 | "@executable_path/Frameworks", 369 | ); 370 | PRODUCT_BUNDLE_IDENTIFIER = com.goggle.chatApp; 371 | PRODUCT_NAME = "$(TARGET_NAME)"; 372 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 373 | SWIFT_VERSION = 5.0; 374 | VERSIONING_SYSTEM = "apple-generic"; 375 | }; 376 | name = Profile; 377 | }; 378 | 97C147031CF9000F007C117D /* Debug */ = { 379 | isa = XCBuildConfiguration; 380 | buildSettings = { 381 | ALWAYS_SEARCH_USER_PATHS = NO; 382 | CLANG_ANALYZER_NONNULL = YES; 383 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 384 | CLANG_CXX_LIBRARY = "libc++"; 385 | CLANG_ENABLE_MODULES = YES; 386 | CLANG_ENABLE_OBJC_ARC = YES; 387 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 388 | CLANG_WARN_BOOL_CONVERSION = YES; 389 | CLANG_WARN_COMMA = YES; 390 | CLANG_WARN_CONSTANT_CONVERSION = YES; 391 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 392 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 393 | CLANG_WARN_EMPTY_BODY = YES; 394 | CLANG_WARN_ENUM_CONVERSION = YES; 395 | CLANG_WARN_INFINITE_RECURSION = YES; 396 | CLANG_WARN_INT_CONVERSION = YES; 397 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 398 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 399 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 400 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 401 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 402 | CLANG_WARN_STRICT_PROTOTYPES = YES; 403 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 404 | CLANG_WARN_UNREACHABLE_CODE = YES; 405 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 406 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 407 | COPY_PHASE_STRIP = NO; 408 | DEBUG_INFORMATION_FORMAT = dwarf; 409 | ENABLE_STRICT_OBJC_MSGSEND = YES; 410 | ENABLE_TESTABILITY = YES; 411 | GCC_C_LANGUAGE_STANDARD = gnu99; 412 | GCC_DYNAMIC_NO_PIC = NO; 413 | GCC_NO_COMMON_BLOCKS = YES; 414 | GCC_OPTIMIZATION_LEVEL = 0; 415 | GCC_PREPROCESSOR_DEFINITIONS = ( 416 | "DEBUG=1", 417 | "$(inherited)", 418 | ); 419 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 420 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 421 | GCC_WARN_UNDECLARED_SELECTOR = YES; 422 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 423 | GCC_WARN_UNUSED_FUNCTION = YES; 424 | GCC_WARN_UNUSED_VARIABLE = YES; 425 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 426 | MTL_ENABLE_DEBUG_INFO = YES; 427 | ONLY_ACTIVE_ARCH = YES; 428 | SDKROOT = iphoneos; 429 | TARGETED_DEVICE_FAMILY = "1,2"; 430 | }; 431 | name = Debug; 432 | }; 433 | 97C147041CF9000F007C117D /* Release */ = { 434 | isa = XCBuildConfiguration; 435 | buildSettings = { 436 | ALWAYS_SEARCH_USER_PATHS = NO; 437 | CLANG_ANALYZER_NONNULL = YES; 438 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 439 | CLANG_CXX_LIBRARY = "libc++"; 440 | CLANG_ENABLE_MODULES = YES; 441 | CLANG_ENABLE_OBJC_ARC = YES; 442 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 443 | CLANG_WARN_BOOL_CONVERSION = YES; 444 | CLANG_WARN_COMMA = YES; 445 | CLANG_WARN_CONSTANT_CONVERSION = YES; 446 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 447 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 448 | CLANG_WARN_EMPTY_BODY = YES; 449 | CLANG_WARN_ENUM_CONVERSION = YES; 450 | CLANG_WARN_INFINITE_RECURSION = YES; 451 | CLANG_WARN_INT_CONVERSION = YES; 452 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 453 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 454 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 455 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 456 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 457 | CLANG_WARN_STRICT_PROTOTYPES = YES; 458 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 459 | CLANG_WARN_UNREACHABLE_CODE = YES; 460 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 461 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 462 | COPY_PHASE_STRIP = NO; 463 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 464 | ENABLE_NS_ASSERTIONS = NO; 465 | ENABLE_STRICT_OBJC_MSGSEND = YES; 466 | GCC_C_LANGUAGE_STANDARD = gnu99; 467 | GCC_NO_COMMON_BLOCKS = YES; 468 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 469 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 470 | GCC_WARN_UNDECLARED_SELECTOR = YES; 471 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 472 | GCC_WARN_UNUSED_FUNCTION = YES; 473 | GCC_WARN_UNUSED_VARIABLE = YES; 474 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 475 | MTL_ENABLE_DEBUG_INFO = NO; 476 | SDKROOT = iphoneos; 477 | SUPPORTED_PLATFORMS = iphoneos; 478 | SWIFT_COMPILATION_MODE = wholemodule; 479 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 480 | TARGETED_DEVICE_FAMILY = "1,2"; 481 | VALIDATE_PRODUCT = YES; 482 | }; 483 | name = Release; 484 | }; 485 | 97C147061CF9000F007C117D /* Debug */ = { 486 | isa = XCBuildConfiguration; 487 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 488 | buildSettings = { 489 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 490 | CLANG_ENABLE_MODULES = YES; 491 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 492 | DEVELOPMENT_TEAM = BW78FMX873; 493 | ENABLE_BITCODE = NO; 494 | INFOPLIST_FILE = Runner/Info.plist; 495 | LD_RUNPATH_SEARCH_PATHS = ( 496 | "$(inherited)", 497 | "@executable_path/Frameworks", 498 | ); 499 | PRODUCT_BUNDLE_IDENTIFIER = com.goggle.chatApp; 500 | PRODUCT_NAME = "$(TARGET_NAME)"; 501 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 502 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 503 | SWIFT_VERSION = 5.0; 504 | VERSIONING_SYSTEM = "apple-generic"; 505 | }; 506 | name = Debug; 507 | }; 508 | 97C147071CF9000F007C117D /* Release */ = { 509 | isa = XCBuildConfiguration; 510 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 511 | buildSettings = { 512 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 513 | CLANG_ENABLE_MODULES = YES; 514 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 515 | DEVELOPMENT_TEAM = BW78FMX873; 516 | ENABLE_BITCODE = NO; 517 | INFOPLIST_FILE = Runner/Info.plist; 518 | LD_RUNPATH_SEARCH_PATHS = ( 519 | "$(inherited)", 520 | "@executable_path/Frameworks", 521 | ); 522 | PRODUCT_BUNDLE_IDENTIFIER = com.goggle.chatApp; 523 | PRODUCT_NAME = "$(TARGET_NAME)"; 524 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 525 | SWIFT_VERSION = 5.0; 526 | VERSIONING_SYSTEM = "apple-generic"; 527 | }; 528 | name = Release; 529 | }; 530 | /* End XCBuildConfiguration section */ 531 | 532 | /* Begin XCConfigurationList section */ 533 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 534 | isa = XCConfigurationList; 535 | buildConfigurations = ( 536 | 97C147031CF9000F007C117D /* Debug */, 537 | 97C147041CF9000F007C117D /* Release */, 538 | 249021D3217E4FDB00AE95B9 /* Profile */, 539 | ); 540 | defaultConfigurationIsVisible = 0; 541 | defaultConfigurationName = Release; 542 | }; 543 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 544 | isa = XCConfigurationList; 545 | buildConfigurations = ( 546 | 97C147061CF9000F007C117D /* Debug */, 547 | 97C147071CF9000F007C117D /* Release */, 548 | 249021D4217E4FDB00AE95B9 /* Profile */, 549 | ); 550 | defaultConfigurationIsVisible = 0; 551 | defaultConfigurationName = Release; 552 | }; 553 | /* End XCConfigurationList section */ 554 | }; 555 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 556 | } 557 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - abseil/algorithm (1.20211102.0): 3 | - abseil/algorithm/algorithm (= 1.20211102.0) 4 | - abseil/algorithm/container (= 1.20211102.0) 5 | - abseil/algorithm/algorithm (1.20211102.0): 6 | - abseil/base/config 7 | - abseil/algorithm/container (1.20211102.0): 8 | - abseil/algorithm/algorithm 9 | - abseil/base/core_headers 10 | - abseil/meta/type_traits 11 | - abseil/base (1.20211102.0): 12 | - abseil/base/atomic_hook (= 1.20211102.0) 13 | - abseil/base/base (= 1.20211102.0) 14 | - abseil/base/base_internal (= 1.20211102.0) 15 | - abseil/base/config (= 1.20211102.0) 16 | - abseil/base/core_headers (= 1.20211102.0) 17 | - abseil/base/dynamic_annotations (= 1.20211102.0) 18 | - abseil/base/endian (= 1.20211102.0) 19 | - abseil/base/errno_saver (= 1.20211102.0) 20 | - abseil/base/fast_type_id (= 1.20211102.0) 21 | - abseil/base/log_severity (= 1.20211102.0) 22 | - abseil/base/malloc_internal (= 1.20211102.0) 23 | - abseil/base/pretty_function (= 1.20211102.0) 24 | - abseil/base/raw_logging_internal (= 1.20211102.0) 25 | - abseil/base/spinlock_wait (= 1.20211102.0) 26 | - abseil/base/strerror (= 1.20211102.0) 27 | - abseil/base/throw_delegate (= 1.20211102.0) 28 | - abseil/base/atomic_hook (1.20211102.0): 29 | - abseil/base/config 30 | - abseil/base/core_headers 31 | - abseil/base/base (1.20211102.0): 32 | - abseil/base/atomic_hook 33 | - abseil/base/base_internal 34 | - abseil/base/config 35 | - abseil/base/core_headers 36 | - abseil/base/dynamic_annotations 37 | - abseil/base/log_severity 38 | - abseil/base/raw_logging_internal 39 | - abseil/base/spinlock_wait 40 | - abseil/meta/type_traits 41 | - abseil/base/base_internal (1.20211102.0): 42 | - abseil/base/config 43 | - abseil/meta/type_traits 44 | - abseil/base/config (1.20211102.0) 45 | - abseil/base/core_headers (1.20211102.0): 46 | - abseil/base/config 47 | - abseil/base/dynamic_annotations (1.20211102.0): 48 | - abseil/base/config 49 | - abseil/base/core_headers 50 | - abseil/base/endian (1.20211102.0): 51 | - abseil/base/base 52 | - abseil/base/config 53 | - abseil/base/core_headers 54 | - abseil/base/errno_saver (1.20211102.0): 55 | - abseil/base/config 56 | - abseil/base/fast_type_id (1.20211102.0): 57 | - abseil/base/config 58 | - abseil/base/log_severity (1.20211102.0): 59 | - abseil/base/config 60 | - abseil/base/core_headers 61 | - abseil/base/malloc_internal (1.20211102.0): 62 | - abseil/base/base 63 | - abseil/base/base_internal 64 | - abseil/base/config 65 | - abseil/base/core_headers 66 | - abseil/base/dynamic_annotations 67 | - abseil/base/raw_logging_internal 68 | - abseil/base/pretty_function (1.20211102.0) 69 | - abseil/base/raw_logging_internal (1.20211102.0): 70 | - abseil/base/atomic_hook 71 | - abseil/base/config 72 | - abseil/base/core_headers 73 | - abseil/base/log_severity 74 | - abseil/base/spinlock_wait (1.20211102.0): 75 | - abseil/base/base_internal 76 | - abseil/base/core_headers 77 | - abseil/base/errno_saver 78 | - abseil/base/strerror (1.20211102.0): 79 | - abseil/base/config 80 | - abseil/base/core_headers 81 | - abseil/base/errno_saver 82 | - abseil/base/throw_delegate (1.20211102.0): 83 | - abseil/base/config 84 | - abseil/base/raw_logging_internal 85 | - abseil/container/common (1.20211102.0): 86 | - abseil/meta/type_traits 87 | - abseil/types/optional 88 | - abseil/container/compressed_tuple (1.20211102.0): 89 | - abseil/utility/utility 90 | - abseil/container/container_memory (1.20211102.0): 91 | - abseil/base/config 92 | - abseil/memory/memory 93 | - abseil/meta/type_traits 94 | - abseil/utility/utility 95 | - abseil/container/fixed_array (1.20211102.0): 96 | - abseil/algorithm/algorithm 97 | - abseil/base/config 98 | - abseil/base/core_headers 99 | - abseil/base/dynamic_annotations 100 | - abseil/base/throw_delegate 101 | - abseil/container/compressed_tuple 102 | - abseil/memory/memory 103 | - abseil/container/flat_hash_map (1.20211102.0): 104 | - abseil/algorithm/container 105 | - abseil/container/container_memory 106 | - abseil/container/hash_function_defaults 107 | - abseil/container/raw_hash_map 108 | - abseil/memory/memory 109 | - abseil/container/hash_function_defaults (1.20211102.0): 110 | - abseil/base/config 111 | - abseil/hash/hash 112 | - abseil/strings/cord 113 | - abseil/strings/strings 114 | - abseil/container/hash_policy_traits (1.20211102.0): 115 | - abseil/meta/type_traits 116 | - abseil/container/hashtable_debug_hooks (1.20211102.0): 117 | - abseil/base/config 118 | - abseil/container/hashtablez_sampler (1.20211102.0): 119 | - abseil/base/base 120 | - abseil/base/core_headers 121 | - abseil/container/have_sse 122 | - abseil/debugging/stacktrace 123 | - abseil/memory/memory 124 | - abseil/profiling/exponential_biased 125 | - abseil/profiling/sample_recorder 126 | - abseil/synchronization/synchronization 127 | - abseil/utility/utility 128 | - abseil/container/have_sse (1.20211102.0) 129 | - abseil/container/inlined_vector (1.20211102.0): 130 | - abseil/algorithm/algorithm 131 | - abseil/base/core_headers 132 | - abseil/base/throw_delegate 133 | - abseil/container/inlined_vector_internal 134 | - abseil/memory/memory 135 | - abseil/container/inlined_vector_internal (1.20211102.0): 136 | - abseil/base/core_headers 137 | - abseil/container/compressed_tuple 138 | - abseil/memory/memory 139 | - abseil/meta/type_traits 140 | - abseil/types/span 141 | - abseil/container/layout (1.20211102.0): 142 | - abseil/base/config 143 | - abseil/base/core_headers 144 | - abseil/meta/type_traits 145 | - abseil/strings/strings 146 | - abseil/types/span 147 | - abseil/utility/utility 148 | - abseil/container/raw_hash_map (1.20211102.0): 149 | - abseil/base/throw_delegate 150 | - abseil/container/container_memory 151 | - abseil/container/raw_hash_set 152 | - abseil/container/raw_hash_set (1.20211102.0): 153 | - abseil/base/config 154 | - abseil/base/core_headers 155 | - abseil/base/endian 156 | - abseil/container/common 157 | - abseil/container/compressed_tuple 158 | - abseil/container/container_memory 159 | - abseil/container/hash_policy_traits 160 | - abseil/container/hashtable_debug_hooks 161 | - abseil/container/hashtablez_sampler 162 | - abseil/container/have_sse 163 | - abseil/memory/memory 164 | - abseil/meta/type_traits 165 | - abseil/numeric/bits 166 | - abseil/utility/utility 167 | - abseil/debugging/debugging_internal (1.20211102.0): 168 | - abseil/base/config 169 | - abseil/base/core_headers 170 | - abseil/base/dynamic_annotations 171 | - abseil/base/errno_saver 172 | - abseil/base/raw_logging_internal 173 | - abseil/debugging/demangle_internal (1.20211102.0): 174 | - abseil/base/base 175 | - abseil/base/config 176 | - abseil/base/core_headers 177 | - abseil/debugging/stacktrace (1.20211102.0): 178 | - abseil/base/config 179 | - abseil/base/core_headers 180 | - abseil/debugging/debugging_internal 181 | - abseil/debugging/symbolize (1.20211102.0): 182 | - abseil/base/base 183 | - abseil/base/config 184 | - abseil/base/core_headers 185 | - abseil/base/dynamic_annotations 186 | - abseil/base/malloc_internal 187 | - abseil/base/raw_logging_internal 188 | - abseil/debugging/debugging_internal 189 | - abseil/debugging/demangle_internal 190 | - abseil/strings/strings 191 | - abseil/functional/bind_front (1.20211102.0): 192 | - abseil/base/base_internal 193 | - abseil/container/compressed_tuple 194 | - abseil/meta/type_traits 195 | - abseil/utility/utility 196 | - abseil/functional/function_ref (1.20211102.0): 197 | - abseil/base/base_internal 198 | - abseil/base/core_headers 199 | - abseil/meta/type_traits 200 | - abseil/hash/city (1.20211102.0): 201 | - abseil/base/config 202 | - abseil/base/core_headers 203 | - abseil/base/endian 204 | - abseil/hash/hash (1.20211102.0): 205 | - abseil/base/config 206 | - abseil/base/core_headers 207 | - abseil/base/endian 208 | - abseil/container/fixed_array 209 | - abseil/hash/city 210 | - abseil/hash/low_level_hash 211 | - abseil/meta/type_traits 212 | - abseil/numeric/int128 213 | - abseil/strings/strings 214 | - abseil/types/optional 215 | - abseil/types/variant 216 | - abseil/utility/utility 217 | - abseil/hash/low_level_hash (1.20211102.0): 218 | - abseil/base/config 219 | - abseil/base/endian 220 | - abseil/numeric/bits 221 | - abseil/numeric/int128 222 | - abseil/memory (1.20211102.0): 223 | - abseil/memory/memory (= 1.20211102.0) 224 | - abseil/memory/memory (1.20211102.0): 225 | - abseil/base/core_headers 226 | - abseil/meta/type_traits 227 | - abseil/meta (1.20211102.0): 228 | - abseil/meta/type_traits (= 1.20211102.0) 229 | - abseil/meta/type_traits (1.20211102.0): 230 | - abseil/base/config 231 | - abseil/numeric/bits (1.20211102.0): 232 | - abseil/base/config 233 | - abseil/base/core_headers 234 | - abseil/numeric/int128 (1.20211102.0): 235 | - abseil/base/config 236 | - abseil/base/core_headers 237 | - abseil/numeric/bits 238 | - abseil/numeric/representation (1.20211102.0): 239 | - abseil/base/config 240 | - abseil/profiling/exponential_biased (1.20211102.0): 241 | - abseil/base/config 242 | - abseil/base/core_headers 243 | - abseil/profiling/sample_recorder (1.20211102.0): 244 | - abseil/base/config 245 | - abseil/base/core_headers 246 | - abseil/synchronization/synchronization 247 | - abseil/time/time 248 | - abseil/random/distributions (1.20211102.0): 249 | - abseil/base/base_internal 250 | - abseil/base/config 251 | - abseil/base/core_headers 252 | - abseil/meta/type_traits 253 | - abseil/numeric/bits 254 | - abseil/random/internal/distribution_caller 255 | - abseil/random/internal/fast_uniform_bits 256 | - abseil/random/internal/fastmath 257 | - abseil/random/internal/generate_real 258 | - abseil/random/internal/iostream_state_saver 259 | - abseil/random/internal/traits 260 | - abseil/random/internal/uniform_helper 261 | - abseil/random/internal/wide_multiply 262 | - abseil/strings/strings 263 | - abseil/random/internal/distribution_caller (1.20211102.0): 264 | - abseil/base/config 265 | - abseil/base/fast_type_id 266 | - abseil/utility/utility 267 | - abseil/random/internal/fast_uniform_bits (1.20211102.0): 268 | - abseil/base/config 269 | - abseil/meta/type_traits 270 | - abseil/random/internal/fastmath (1.20211102.0): 271 | - abseil/numeric/bits 272 | - abseil/random/internal/generate_real (1.20211102.0): 273 | - abseil/meta/type_traits 274 | - abseil/numeric/bits 275 | - abseil/random/internal/fastmath 276 | - abseil/random/internal/traits 277 | - abseil/random/internal/iostream_state_saver (1.20211102.0): 278 | - abseil/meta/type_traits 279 | - abseil/numeric/int128 280 | - abseil/random/internal/nonsecure_base (1.20211102.0): 281 | - abseil/base/core_headers 282 | - abseil/meta/type_traits 283 | - abseil/random/internal/pool_urbg 284 | - abseil/random/internal/salted_seed_seq 285 | - abseil/random/internal/seed_material 286 | - abseil/types/optional 287 | - abseil/types/span 288 | - abseil/random/internal/pcg_engine (1.20211102.0): 289 | - abseil/base/config 290 | - abseil/meta/type_traits 291 | - abseil/numeric/bits 292 | - abseil/numeric/int128 293 | - abseil/random/internal/fastmath 294 | - abseil/random/internal/iostream_state_saver 295 | - abseil/random/internal/platform (1.20211102.0): 296 | - abseil/base/config 297 | - abseil/random/internal/pool_urbg (1.20211102.0): 298 | - abseil/base/base 299 | - abseil/base/config 300 | - abseil/base/core_headers 301 | - abseil/base/endian 302 | - abseil/base/raw_logging_internal 303 | - abseil/random/internal/randen 304 | - abseil/random/internal/seed_material 305 | - abseil/random/internal/traits 306 | - abseil/random/seed_gen_exception 307 | - abseil/types/span 308 | - abseil/random/internal/randen (1.20211102.0): 309 | - abseil/base/raw_logging_internal 310 | - abseil/random/internal/platform 311 | - abseil/random/internal/randen_hwaes 312 | - abseil/random/internal/randen_slow 313 | - abseil/random/internal/randen_engine (1.20211102.0): 314 | - abseil/base/endian 315 | - abseil/meta/type_traits 316 | - abseil/random/internal/iostream_state_saver 317 | - abseil/random/internal/randen 318 | - abseil/random/internal/randen_hwaes (1.20211102.0): 319 | - abseil/base/config 320 | - abseil/random/internal/platform 321 | - abseil/random/internal/randen_hwaes_impl 322 | - abseil/random/internal/randen_hwaes_impl (1.20211102.0): 323 | - abseil/base/config 324 | - abseil/base/core_headers 325 | - abseil/numeric/int128 326 | - abseil/random/internal/platform 327 | - abseil/random/internal/randen_slow (1.20211102.0): 328 | - abseil/base/config 329 | - abseil/base/core_headers 330 | - abseil/base/endian 331 | - abseil/numeric/int128 332 | - abseil/random/internal/platform 333 | - abseil/random/internal/salted_seed_seq (1.20211102.0): 334 | - abseil/container/inlined_vector 335 | - abseil/meta/type_traits 336 | - abseil/random/internal/seed_material 337 | - abseil/types/optional 338 | - abseil/types/span 339 | - abseil/random/internal/seed_material (1.20211102.0): 340 | - abseil/base/core_headers 341 | - abseil/base/dynamic_annotations 342 | - abseil/base/raw_logging_internal 343 | - abseil/random/internal/fast_uniform_bits 344 | - abseil/strings/strings 345 | - abseil/types/optional 346 | - abseil/types/span 347 | - abseil/random/internal/traits (1.20211102.0): 348 | - abseil/base/config 349 | - abseil/random/internal/uniform_helper (1.20211102.0): 350 | - abseil/base/config 351 | - abseil/meta/type_traits 352 | - abseil/random/internal/traits 353 | - abseil/random/internal/wide_multiply (1.20211102.0): 354 | - abseil/base/config 355 | - abseil/numeric/bits 356 | - abseil/numeric/int128 357 | - abseil/random/internal/traits 358 | - abseil/random/random (1.20211102.0): 359 | - abseil/random/distributions 360 | - abseil/random/internal/nonsecure_base 361 | - abseil/random/internal/pcg_engine 362 | - abseil/random/internal/pool_urbg 363 | - abseil/random/internal/randen_engine 364 | - abseil/random/seed_sequences 365 | - abseil/random/seed_gen_exception (1.20211102.0): 366 | - abseil/base/config 367 | - abseil/random/seed_sequences (1.20211102.0): 368 | - abseil/container/inlined_vector 369 | - abseil/random/internal/nonsecure_base 370 | - abseil/random/internal/pool_urbg 371 | - abseil/random/internal/salted_seed_seq 372 | - abseil/random/internal/seed_material 373 | - abseil/random/seed_gen_exception 374 | - abseil/types/span 375 | - abseil/status/status (1.20211102.0): 376 | - abseil/base/atomic_hook 377 | - abseil/base/config 378 | - abseil/base/core_headers 379 | - abseil/base/raw_logging_internal 380 | - abseil/container/inlined_vector 381 | - abseil/debugging/stacktrace 382 | - abseil/debugging/symbolize 383 | - abseil/functional/function_ref 384 | - abseil/strings/cord 385 | - abseil/strings/str_format 386 | - abseil/strings/strings 387 | - abseil/types/optional 388 | - abseil/status/statusor (1.20211102.0): 389 | - abseil/base/base 390 | - abseil/base/core_headers 391 | - abseil/base/raw_logging_internal 392 | - abseil/meta/type_traits 393 | - abseil/status/status 394 | - abseil/strings/strings 395 | - abseil/types/variant 396 | - abseil/utility/utility 397 | - abseil/strings/cord (1.20211102.0): 398 | - abseil/base/base 399 | - abseil/base/config 400 | - abseil/base/core_headers 401 | - abseil/base/endian 402 | - abseil/base/raw_logging_internal 403 | - abseil/container/fixed_array 404 | - abseil/container/inlined_vector 405 | - abseil/functional/function_ref 406 | - abseil/meta/type_traits 407 | - abseil/strings/cord_internal 408 | - abseil/strings/cordz_functions 409 | - abseil/strings/cordz_info 410 | - abseil/strings/cordz_statistics 411 | - abseil/strings/cordz_update_scope 412 | - abseil/strings/cordz_update_tracker 413 | - abseil/strings/internal 414 | - abseil/strings/str_format 415 | - abseil/strings/strings 416 | - abseil/types/optional 417 | - abseil/strings/cord_internal (1.20211102.0): 418 | - abseil/base/base_internal 419 | - abseil/base/config 420 | - abseil/base/core_headers 421 | - abseil/base/endian 422 | - abseil/base/raw_logging_internal 423 | - abseil/base/throw_delegate 424 | - abseil/container/compressed_tuple 425 | - abseil/container/inlined_vector 426 | - abseil/container/layout 427 | - abseil/functional/function_ref 428 | - abseil/meta/type_traits 429 | - abseil/strings/strings 430 | - abseil/types/span 431 | - abseil/strings/cordz_functions (1.20211102.0): 432 | - abseil/base/config 433 | - abseil/base/core_headers 434 | - abseil/base/raw_logging_internal 435 | - abseil/profiling/exponential_biased 436 | - abseil/strings/cordz_handle (1.20211102.0): 437 | - abseil/base/base 438 | - abseil/base/config 439 | - abseil/base/raw_logging_internal 440 | - abseil/synchronization/synchronization 441 | - abseil/strings/cordz_info (1.20211102.0): 442 | - abseil/base/base 443 | - abseil/base/config 444 | - abseil/base/core_headers 445 | - abseil/base/raw_logging_internal 446 | - abseil/container/inlined_vector 447 | - abseil/debugging/stacktrace 448 | - abseil/strings/cord_internal 449 | - abseil/strings/cordz_functions 450 | - abseil/strings/cordz_handle 451 | - abseil/strings/cordz_statistics 452 | - abseil/strings/cordz_update_tracker 453 | - abseil/synchronization/synchronization 454 | - abseil/types/span 455 | - abseil/strings/cordz_statistics (1.20211102.0): 456 | - abseil/base/config 457 | - abseil/strings/cordz_update_tracker 458 | - abseil/strings/cordz_update_scope (1.20211102.0): 459 | - abseil/base/config 460 | - abseil/base/core_headers 461 | - abseil/strings/cord_internal 462 | - abseil/strings/cordz_info 463 | - abseil/strings/cordz_update_tracker 464 | - abseil/strings/cordz_update_tracker (1.20211102.0): 465 | - abseil/base/config 466 | - abseil/strings/internal (1.20211102.0): 467 | - abseil/base/config 468 | - abseil/base/core_headers 469 | - abseil/base/endian 470 | - abseil/base/raw_logging_internal 471 | - abseil/meta/type_traits 472 | - abseil/strings/str_format (1.20211102.0): 473 | - abseil/strings/str_format_internal 474 | - abseil/strings/str_format_internal (1.20211102.0): 475 | - abseil/base/config 476 | - abseil/base/core_headers 477 | - abseil/functional/function_ref 478 | - abseil/meta/type_traits 479 | - abseil/numeric/bits 480 | - abseil/numeric/int128 481 | - abseil/numeric/representation 482 | - abseil/strings/strings 483 | - abseil/types/optional 484 | - abseil/types/span 485 | - abseil/strings/strings (1.20211102.0): 486 | - abseil/base/base 487 | - abseil/base/config 488 | - abseil/base/core_headers 489 | - abseil/base/endian 490 | - abseil/base/raw_logging_internal 491 | - abseil/base/throw_delegate 492 | - abseil/memory/memory 493 | - abseil/meta/type_traits 494 | - abseil/numeric/bits 495 | - abseil/numeric/int128 496 | - abseil/strings/internal 497 | - abseil/synchronization/graphcycles_internal (1.20211102.0): 498 | - abseil/base/base 499 | - abseil/base/base_internal 500 | - abseil/base/config 501 | - abseil/base/core_headers 502 | - abseil/base/malloc_internal 503 | - abseil/base/raw_logging_internal 504 | - abseil/synchronization/kernel_timeout_internal (1.20211102.0): 505 | - abseil/base/core_headers 506 | - abseil/base/raw_logging_internal 507 | - abseil/time/time 508 | - abseil/synchronization/synchronization (1.20211102.0): 509 | - abseil/base/atomic_hook 510 | - abseil/base/base 511 | - abseil/base/base_internal 512 | - abseil/base/config 513 | - abseil/base/core_headers 514 | - abseil/base/dynamic_annotations 515 | - abseil/base/malloc_internal 516 | - abseil/base/raw_logging_internal 517 | - abseil/debugging/stacktrace 518 | - abseil/debugging/symbolize 519 | - abseil/synchronization/graphcycles_internal 520 | - abseil/synchronization/kernel_timeout_internal 521 | - abseil/time/time 522 | - abseil/time (1.20211102.0): 523 | - abseil/time/internal (= 1.20211102.0) 524 | - abseil/time/time (= 1.20211102.0) 525 | - abseil/time/internal (1.20211102.0): 526 | - abseil/time/internal/cctz (= 1.20211102.0) 527 | - abseil/time/internal/cctz (1.20211102.0): 528 | - abseil/time/internal/cctz/civil_time (= 1.20211102.0) 529 | - abseil/time/internal/cctz/time_zone (= 1.20211102.0) 530 | - abseil/time/internal/cctz/civil_time (1.20211102.0): 531 | - abseil/base/config 532 | - abseil/time/internal/cctz/time_zone (1.20211102.0): 533 | - abseil/base/config 534 | - abseil/time/internal/cctz/civil_time 535 | - abseil/time/time (1.20211102.0): 536 | - abseil/base/base 537 | - abseil/base/core_headers 538 | - abseil/base/raw_logging_internal 539 | - abseil/numeric/int128 540 | - abseil/strings/strings 541 | - abseil/time/internal/cctz/civil_time 542 | - abseil/time/internal/cctz/time_zone 543 | - abseil/types (1.20211102.0): 544 | - abseil/types/any (= 1.20211102.0) 545 | - abseil/types/bad_any_cast (= 1.20211102.0) 546 | - abseil/types/bad_any_cast_impl (= 1.20211102.0) 547 | - abseil/types/bad_optional_access (= 1.20211102.0) 548 | - abseil/types/bad_variant_access (= 1.20211102.0) 549 | - abseil/types/compare (= 1.20211102.0) 550 | - abseil/types/optional (= 1.20211102.0) 551 | - abseil/types/span (= 1.20211102.0) 552 | - abseil/types/variant (= 1.20211102.0) 553 | - abseil/types/any (1.20211102.0): 554 | - abseil/base/config 555 | - abseil/base/core_headers 556 | - abseil/base/fast_type_id 557 | - abseil/meta/type_traits 558 | - abseil/types/bad_any_cast 559 | - abseil/utility/utility 560 | - abseil/types/bad_any_cast (1.20211102.0): 561 | - abseil/base/config 562 | - abseil/types/bad_any_cast_impl 563 | - abseil/types/bad_any_cast_impl (1.20211102.0): 564 | - abseil/base/config 565 | - abseil/base/raw_logging_internal 566 | - abseil/types/bad_optional_access (1.20211102.0): 567 | - abseil/base/config 568 | - abseil/base/raw_logging_internal 569 | - abseil/types/bad_variant_access (1.20211102.0): 570 | - abseil/base/config 571 | - abseil/base/raw_logging_internal 572 | - abseil/types/compare (1.20211102.0): 573 | - abseil/base/core_headers 574 | - abseil/meta/type_traits 575 | - abseil/types/optional (1.20211102.0): 576 | - abseil/base/base_internal 577 | - abseil/base/config 578 | - abseil/base/core_headers 579 | - abseil/memory/memory 580 | - abseil/meta/type_traits 581 | - abseil/types/bad_optional_access 582 | - abseil/utility/utility 583 | - abseil/types/span (1.20211102.0): 584 | - abseil/algorithm/algorithm 585 | - abseil/base/core_headers 586 | - abseil/base/throw_delegate 587 | - abseil/meta/type_traits 588 | - abseil/types/variant (1.20211102.0): 589 | - abseil/base/base_internal 590 | - abseil/base/config 591 | - abseil/base/core_headers 592 | - abseil/meta/type_traits 593 | - abseil/types/bad_variant_access 594 | - abseil/utility/utility 595 | - abseil/utility/utility (1.20211102.0): 596 | - abseil/base/base_internal 597 | - abseil/base/config 598 | - abseil/meta/type_traits 599 | - BoringSSL-GRPC (0.0.24): 600 | - BoringSSL-GRPC/Implementation (= 0.0.24) 601 | - BoringSSL-GRPC/Interface (= 0.0.24) 602 | - BoringSSL-GRPC/Implementation (0.0.24): 603 | - BoringSSL-GRPC/Interface (= 0.0.24) 604 | - BoringSSL-GRPC/Interface (0.0.24) 605 | - cloud_firestore (3.4.8): 606 | - Firebase/Firestore (= 9.5.0) 607 | - firebase_core 608 | - Flutter 609 | - Firebase/Auth (9.5.0): 610 | - Firebase/CoreOnly 611 | - FirebaseAuth (~> 9.5.0) 612 | - Firebase/CoreOnly (9.5.0): 613 | - FirebaseCore (= 9.5.0) 614 | - Firebase/Firestore (9.5.0): 615 | - Firebase/CoreOnly 616 | - FirebaseFirestore (~> 9.5.0) 617 | - firebase_auth (3.9.0): 618 | - Firebase/Auth (= 9.5.0) 619 | - firebase_core 620 | - Flutter 621 | - firebase_core (1.22.0): 622 | - Firebase/CoreOnly (= 9.5.0) 623 | - Flutter 624 | - FirebaseAuth (9.5.0): 625 | - FirebaseCore (~> 9.0) 626 | - GoogleUtilities/AppDelegateSwizzler (~> 7.7) 627 | - GoogleUtilities/Environment (~> 7.7) 628 | - GTMSessionFetcher/Core (< 3.0, >= 1.7) 629 | - FirebaseCore (9.5.0): 630 | - FirebaseCoreDiagnostics (~> 9.0) 631 | - FirebaseCoreInternal (~> 9.0) 632 | - GoogleUtilities/Environment (~> 7.7) 633 | - GoogleUtilities/Logger (~> 7.7) 634 | - FirebaseCoreDiagnostics (9.6.0): 635 | - GoogleDataTransport (< 10.0.0, >= 9.1.4) 636 | - GoogleUtilities/Environment (~> 7.7) 637 | - GoogleUtilities/Logger (~> 7.7) 638 | - nanopb (< 2.30910.0, >= 2.30908.0) 639 | - FirebaseCoreInternal (9.6.0): 640 | - "GoogleUtilities/NSData+zlib (~> 7.7)" 641 | - FirebaseFirestore (9.5.0): 642 | - abseil/algorithm (~> 1.20211102.0) 643 | - abseil/base (~> 1.20211102.0) 644 | - abseil/container/flat_hash_map (~> 1.20211102.0) 645 | - abseil/memory (~> 1.20211102.0) 646 | - abseil/meta (~> 1.20211102.0) 647 | - abseil/strings/strings (~> 1.20211102.0) 648 | - abseil/time (~> 1.20211102.0) 649 | - abseil/types (~> 1.20211102.0) 650 | - FirebaseCore (~> 9.0) 651 | - "gRPC-C++ (~> 1.44.0)" 652 | - leveldb-library (~> 1.22) 653 | - nanopb (< 2.30910.0, >= 2.30908.0) 654 | - Flutter (1.0.0) 655 | - GoogleDataTransport (9.2.0): 656 | - GoogleUtilities/Environment (~> 7.7) 657 | - nanopb (< 2.30910.0, >= 2.30908.0) 658 | - PromisesObjC (< 3.0, >= 1.2) 659 | - GoogleUtilities/AppDelegateSwizzler (7.8.0): 660 | - GoogleUtilities/Environment 661 | - GoogleUtilities/Logger 662 | - GoogleUtilities/Network 663 | - GoogleUtilities/Environment (7.8.0): 664 | - PromisesObjC (< 3.0, >= 1.2) 665 | - GoogleUtilities/Logger (7.8.0): 666 | - GoogleUtilities/Environment 667 | - GoogleUtilities/Network (7.8.0): 668 | - GoogleUtilities/Logger 669 | - "GoogleUtilities/NSData+zlib" 670 | - GoogleUtilities/Reachability 671 | - "GoogleUtilities/NSData+zlib (7.8.0)" 672 | - GoogleUtilities/Reachability (7.8.0): 673 | - GoogleUtilities/Logger 674 | - "gRPC-C++ (1.44.0)": 675 | - "gRPC-C++/Implementation (= 1.44.0)" 676 | - "gRPC-C++/Interface (= 1.44.0)" 677 | - "gRPC-C++/Implementation (1.44.0)": 678 | - abseil/base/base (= 1.20211102.0) 679 | - abseil/base/core_headers (= 1.20211102.0) 680 | - abseil/container/flat_hash_map (= 1.20211102.0) 681 | - abseil/container/inlined_vector (= 1.20211102.0) 682 | - abseil/functional/bind_front (= 1.20211102.0) 683 | - abseil/hash/hash (= 1.20211102.0) 684 | - abseil/memory/memory (= 1.20211102.0) 685 | - abseil/random/random (= 1.20211102.0) 686 | - abseil/status/status (= 1.20211102.0) 687 | - abseil/status/statusor (= 1.20211102.0) 688 | - abseil/strings/cord (= 1.20211102.0) 689 | - abseil/strings/str_format (= 1.20211102.0) 690 | - abseil/strings/strings (= 1.20211102.0) 691 | - abseil/synchronization/synchronization (= 1.20211102.0) 692 | - abseil/time/time (= 1.20211102.0) 693 | - abseil/types/optional (= 1.20211102.0) 694 | - abseil/types/variant (= 1.20211102.0) 695 | - abseil/utility/utility (= 1.20211102.0) 696 | - "gRPC-C++/Interface (= 1.44.0)" 697 | - gRPC-Core (= 1.44.0) 698 | - "gRPC-C++/Interface (1.44.0)" 699 | - gRPC-Core (1.44.0): 700 | - gRPC-Core/Implementation (= 1.44.0) 701 | - gRPC-Core/Interface (= 1.44.0) 702 | - gRPC-Core/Implementation (1.44.0): 703 | - abseil/base/base (= 1.20211102.0) 704 | - abseil/base/core_headers (= 1.20211102.0) 705 | - abseil/container/flat_hash_map (= 1.20211102.0) 706 | - abseil/container/inlined_vector (= 1.20211102.0) 707 | - abseil/functional/bind_front (= 1.20211102.0) 708 | - abseil/hash/hash (= 1.20211102.0) 709 | - abseil/memory/memory (= 1.20211102.0) 710 | - abseil/random/random (= 1.20211102.0) 711 | - abseil/status/status (= 1.20211102.0) 712 | - abseil/status/statusor (= 1.20211102.0) 713 | - abseil/strings/cord (= 1.20211102.0) 714 | - abseil/strings/str_format (= 1.20211102.0) 715 | - abseil/strings/strings (= 1.20211102.0) 716 | - abseil/synchronization/synchronization (= 1.20211102.0) 717 | - abseil/time/time (= 1.20211102.0) 718 | - abseil/types/optional (= 1.20211102.0) 719 | - abseil/types/variant (= 1.20211102.0) 720 | - abseil/utility/utility (= 1.20211102.0) 721 | - BoringSSL-GRPC (= 0.0.24) 722 | - gRPC-Core/Interface (= 1.44.0) 723 | - Libuv-gRPC (= 0.0.10) 724 | - gRPC-Core/Interface (1.44.0) 725 | - GTMSessionFetcher/Core (2.1.0) 726 | - leveldb-library (1.22.1) 727 | - Libuv-gRPC (0.0.10): 728 | - Libuv-gRPC/Implementation (= 0.0.10) 729 | - Libuv-gRPC/Interface (= 0.0.10) 730 | - Libuv-gRPC/Implementation (0.0.10): 731 | - Libuv-gRPC/Interface (= 0.0.10) 732 | - Libuv-gRPC/Interface (0.0.10) 733 | - modal_progress_hud_nsn (0.0.1): 734 | - Flutter 735 | - nanopb (2.30909.0): 736 | - nanopb/decode (= 2.30909.0) 737 | - nanopb/encode (= 2.30909.0) 738 | - nanopb/decode (2.30909.0) 739 | - nanopb/encode (2.30909.0) 740 | - PromisesObjC (2.1.1) 741 | 742 | DEPENDENCIES: 743 | - cloud_firestore (from `.symlinks/plugins/cloud_firestore/ios`) 744 | - firebase_auth (from `.symlinks/plugins/firebase_auth/ios`) 745 | - firebase_core (from `.symlinks/plugins/firebase_core/ios`) 746 | - Flutter (from `Flutter`) 747 | - modal_progress_hud_nsn (from `.symlinks/plugins/modal_progress_hud_nsn/ios`) 748 | 749 | SPEC REPOS: 750 | trunk: 751 | - abseil 752 | - BoringSSL-GRPC 753 | - Firebase 754 | - FirebaseAuth 755 | - FirebaseCore 756 | - FirebaseCoreDiagnostics 757 | - FirebaseCoreInternal 758 | - FirebaseFirestore 759 | - GoogleDataTransport 760 | - GoogleUtilities 761 | - "gRPC-C++" 762 | - gRPC-Core 763 | - GTMSessionFetcher 764 | - leveldb-library 765 | - Libuv-gRPC 766 | - nanopb 767 | - PromisesObjC 768 | 769 | EXTERNAL SOURCES: 770 | cloud_firestore: 771 | :path: ".symlinks/plugins/cloud_firestore/ios" 772 | firebase_auth: 773 | :path: ".symlinks/plugins/firebase_auth/ios" 774 | firebase_core: 775 | :path: ".symlinks/plugins/firebase_core/ios" 776 | Flutter: 777 | :path: Flutter 778 | modal_progress_hud_nsn: 779 | :path: ".symlinks/plugins/modal_progress_hud_nsn/ios" 780 | 781 | SPEC CHECKSUMS: 782 | abseil: ebe5b5529fb05d93a8bdb7951607be08b7fa71bc 783 | BoringSSL-GRPC: 3175b25143e648463a56daeaaa499c6cb86dad33 784 | cloud_firestore: 7e123d5034b068e9a1fb32b2ad98a814c7f3e45d 785 | Firebase: 800f16f07af493d98d017446a315c27af0552f41 786 | firebase_auth: c070c7e5b66037cddb73a68ca4bf4728b063680b 787 | firebase_core: 31872a49ffe0bf6f834e7044c7334e433536735a 788 | FirebaseAuth: 741918f1fa62ed23246a509279f91d42d79a713f 789 | FirebaseCore: 25c0400b670fd1e2f2104349cd3b5dcce8d9418f 790 | FirebaseCoreDiagnostics: 99a495094b10a57eeb3ae8efa1665700ad0bdaa6 791 | FirebaseCoreInternal: bca76517fe1ed381e989f5e7d8abb0da8d85bed3 792 | FirebaseFirestore: e4136560a4bdd1de5f02bc79ccb8414325b08823 793 | Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a 794 | GoogleDataTransport: 1c8145da7117bd68bbbed00cf304edb6a24de00f 795 | GoogleUtilities: 1d20a6ad97ef46f67bbdec158ce00563a671ebb7 796 | "gRPC-C++": 9675f953ace2b3de7c506039d77be1f2e77a8db2 797 | gRPC-Core: 943e491cb0d45598b0b0eb9e910c88080369290b 798 | GTMSessionFetcher: ffbb25ec00ebcb5201adab0a56d808f6f1902d9f 799 | leveldb-library: 50c7b45cbd7bf543c81a468fe557a16ae3db8729 800 | Libuv-gRPC: 55e51798e14ef436ad9bc45d12d43b77b49df378 801 | modal_progress_hud_nsn: f6fb744cd060653d66ed8f325360ef3650eb2fde 802 | nanopb: b552cce312b6c8484180ef47159bc0f65a1f0431 803 | PromisesObjC: ab77feca74fa2823e7af4249b8326368e61014cb 804 | 805 | PODFILE CHECKSUM: 3dffd8c48b531d21ec0ec153c22dc8e3a6223bc9 806 | 807 | COCOAPODS: 1.11.3 808 | --------------------------------------------------------------------------------