├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── google_meet │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── main.dart ├── models │ └── data_store.dart ├── screens │ ├── home_screen.dart │ └── meeting_screen.dart └── services │ ├── join_service.dart │ └── sdk_initializer.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ 17 | 18 | # The .vscode folder contains launch configuration and tasks you configure in 19 | # VS Code which you may wish to be included in version control, so this line 20 | # is commented out by default. 21 | #.vscode/ 22 | 23 | # Flutter/Dart/Pub related 24 | **/doc/api/ 25 | **/ios/Flutter/.last_build_id 26 | .dart_tool/ 27 | .flutter-plugins 28 | .flutter-plugins-dependencies 29 | .packages 30 | .pub-cache/ 31 | .pub/ 32 | /build/ 33 | 34 | # Web related 35 | lib/generated_plugin_registrant.dart 36 | 37 | # Symbolication related 38 | app.*.symbols 39 | 40 | # Obfuscation related 41 | app.*.map.json 42 | 43 | # Android Studio will place build artifacts here 44 | /android/app/debug 45 | /android/app/profile 46 | /android/app/release 47 | 48 | lib/constants.dart -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: ffb2ecea5223acdd139a5039be2f9c796962833d 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Flutter x Meet - Google Meet clone made in Flutter 2 | 3 | Google Meet clone made in Flutter using 100ms. 4 | 5 | ## User Interface 6 | 7 | 8 | 9 | 12 | 15 | 18 | 21 | 22 |
10 | 11 | 13 | 14 | 16 | 17 | 19 | 20 |
23 |
24 | 25 | ## Demo 26 | 27 | https://user-images.githubusercontent.com/53579386/153129731-a5123b2a-c782-4c06-8d49-a6a431d8fa6d.mp4 28 | 29 | -------------------------------------------------------------------------------- /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/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | **/*.keystore 13 | **/*.jks 14 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply plugin: 'kotlin-android' 26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 27 | 28 | android { 29 | compileSdkVersion 31 30 | 31 | compileOptions { 32 | sourceCompatibility JavaVersion.VERSION_1_8 33 | targetCompatibility JavaVersion.VERSION_1_8 34 | } 35 | 36 | kotlinOptions { 37 | jvmTarget = '1.8' 38 | } 39 | 40 | sourceSets { 41 | main.java.srcDirs += 'src/main/kotlin' 42 | } 43 | 44 | defaultConfig { 45 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 46 | applicationId "com.aditya.google_meet" 47 | minSdkVersion 21 48 | targetSdkVersion 31 49 | versionCode flutterVersionCode.toInteger() 50 | versionName flutterVersionName 51 | } 52 | 53 | buildTypes { 54 | release { 55 | // TODO: Add your own signing config for the release build. 56 | // Signing with the debug keys for now, so `flutter run --release` works. 57 | signingConfig signingConfigs.debug 58 | } 59 | } 60 | } 61 | 62 | flutter { 63 | source '../..' 64 | } 65 | 66 | dependencies { 67 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 68 | } 69 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 23 | 31 | 35 | 39 | 44 | 48 | 49 | 50 | 51 | 52 | 53 | 55 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/aditya/google_meet/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.aditya.google_meet 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.5.31' 3 | repositories { 4 | google() 5 | mavenCentral() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:4.1.0' 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | } 12 | } 13 | 14 | allprojects { 15 | repositories { 16 | google() 17 | mavenCentral() 18 | } 19 | } 20 | 21 | rootProject.buildDir = '../build' 22 | subprojects { 23 | project.buildDir = "${rootProject.buildDir}/${project.name}" 24 | project.evaluationDependsOn(':app') 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip 7 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | *.mode1v3 2 | *.mode2v3 3 | *.moved-aside 4 | *.pbxuser 5 | *.perspectivev3 6 | **/*sync/ 7 | .sconsign.dblite 8 | .tags* 9 | **/.vagrant/ 10 | **/DerivedData/ 11 | Icon? 12 | **/Pods/ 13 | **/.symlinks/ 14 | profile 15 | xcuserdata 16 | **/.generated/ 17 | Flutter/App.framework 18 | Flutter/Flutter.framework 19 | Flutter/Flutter.podspec 20 | Flutter/Generated.xcconfig 21 | Flutter/ephemeral/ 22 | Flutter/app.flx 23 | Flutter/app.zip 24 | Flutter/flutter_assets/ 25 | Flutter/flutter_export_environment.sh 26 | ServiceDefinitions.json 27 | Runner/GeneratedPluginRegistrant.* 28 | 29 | # Exceptions to above rules. 30 | !default.mode1v3 31 | !default.mode2v3 32 | !default.pbxuser 33 | !default.perspectivev3 34 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 11.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | platform :ios, '12.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 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Flutter (1.0.0) 3 | - HMSAnalyticsSDK (0.0.2) 4 | - HMSBroadcastExtensionSDK (0.0.9) 5 | - HMSHLSPlayerSDK (0.0.2): 6 | - HMSAnalyticsSDK (= 0.0.2) 7 | - HMSSDK (1.8.0): 8 | - HMSAnalyticsSDK (= 0.0.2) 9 | - HMSWebRTC (= 1.0.5118) 10 | - hmssdk_flutter (1.9.13): 11 | - Flutter 12 | - HMSBroadcastExtensionSDK (= 0.0.9) 13 | - HMSHLSPlayerSDK (= 0.0.2) 14 | - HMSSDK (= 1.8.0) 15 | - HMSWebRTC (1.0.5118) 16 | - permission_handler_apple (9.1.1): 17 | - Flutter 18 | 19 | DEPENDENCIES: 20 | - Flutter (from `Flutter`) 21 | - hmssdk_flutter (from `.symlinks/plugins/hmssdk_flutter/ios`) 22 | - permission_handler_apple (from `.symlinks/plugins/permission_handler_apple/ios`) 23 | 24 | SPEC REPOS: 25 | trunk: 26 | - HMSAnalyticsSDK 27 | - HMSBroadcastExtensionSDK 28 | - HMSHLSPlayerSDK 29 | - HMSSDK 30 | - HMSWebRTC 31 | 32 | EXTERNAL SOURCES: 33 | Flutter: 34 | :path: Flutter 35 | hmssdk_flutter: 36 | :path: ".symlinks/plugins/hmssdk_flutter/ios" 37 | permission_handler_apple: 38 | :path: ".symlinks/plugins/permission_handler_apple/ios" 39 | 40 | SPEC CHECKSUMS: 41 | Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 42 | HMSAnalyticsSDK: 4d2a88a729b1eb42f3d25f217c28937ec318a5b7 43 | HMSBroadcastExtensionSDK: d80fe325f6c928bd8e5176290b5a4b7ae15d6fbb 44 | HMSHLSPlayerSDK: 6a54ad4d12f3dc2270d1ecd24019d71282a4f6a3 45 | HMSSDK: c893d1381a47ed02760ef6d06625b9aa5251f998 46 | hmssdk_flutter: 5ef8ca6090c52e483b97fd83388f52226683acac 47 | HMSWebRTC: 4487c7200f1e9358412c1d8cd974edd2766467dc 48 | permission_handler_apple: e76247795d700c14ea09e3a2d8855d41ee80a2e6 49 | 50 | PODFILE CHECKSUM: 4e8f8b2be68aeea4c0d5beb6ff1e79fface1d048 51 | 52 | COCOAPODS: 1.14.3 53 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 54; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 11 | 2371D033973B24A1C340A525 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A0AD855CF4567DC30CAD483 /* Pods_Runner.framework */; }; 12 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 13 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 14 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 15 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 16 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXCopyFilesBuildPhase section */ 20 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 21 | isa = PBXCopyFilesBuildPhase; 22 | buildActionMask = 2147483647; 23 | dstPath = ""; 24 | dstSubfolderSpec = 10; 25 | files = ( 26 | ); 27 | name = "Embed Frameworks"; 28 | runOnlyForDeploymentPostprocessing = 0; 29 | }; 30 | /* End PBXCopyFilesBuildPhase section */ 31 | 32 | /* Begin PBXFileReference section */ 33 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 34 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 35 | 21345B2746967EA0699C074A /* 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 = ""; }; 36 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 37 | 547D205340128221C5F91408 /* 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 = ""; }; 38 | 5A0AD855CF4567DC30CAD483 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 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 | 95E1992BEAEFA50099FE208D /* 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 = ""; }; 43 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 44 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 45 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 46 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 47 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 48 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 49 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | 2371D033973B24A1C340A525 /* Pods_Runner.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | /* End PBXFrameworksBuildPhase section */ 62 | 63 | /* Begin PBXGroup section */ 64 | 5049761ABA9E0CE22A8A1D6F /* Frameworks */ = { 65 | isa = PBXGroup; 66 | children = ( 67 | 5A0AD855CF4567DC30CAD483 /* Pods_Runner.framework */, 68 | ); 69 | name = Frameworks; 70 | sourceTree = ""; 71 | }; 72 | 9740EEB11CF90186004384FC /* Flutter */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 76 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 77 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 78 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 79 | ); 80 | name = Flutter; 81 | sourceTree = ""; 82 | }; 83 | 97C146E51CF9000F007C117D = { 84 | isa = PBXGroup; 85 | children = ( 86 | 9740EEB11CF90186004384FC /* Flutter */, 87 | 97C146F01CF9000F007C117D /* Runner */, 88 | 97C146EF1CF9000F007C117D /* Products */, 89 | DBB9290F9630C7CA79CD64C9 /* Pods */, 90 | 5049761ABA9E0CE22A8A1D6F /* Frameworks */, 91 | ); 92 | sourceTree = ""; 93 | }; 94 | 97C146EF1CF9000F007C117D /* Products */ = { 95 | isa = PBXGroup; 96 | children = ( 97 | 97C146EE1CF9000F007C117D /* Runner.app */, 98 | ); 99 | name = Products; 100 | sourceTree = ""; 101 | }; 102 | 97C146F01CF9000F007C117D /* Runner */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 106 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 107 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 108 | 97C147021CF9000F007C117D /* Info.plist */, 109 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 110 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 111 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 112 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 113 | ); 114 | path = Runner; 115 | sourceTree = ""; 116 | }; 117 | DBB9290F9630C7CA79CD64C9 /* Pods */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | 21345B2746967EA0699C074A /* Pods-Runner.debug.xcconfig */, 121 | 547D205340128221C5F91408 /* Pods-Runner.release.xcconfig */, 122 | 95E1992BEAEFA50099FE208D /* Pods-Runner.profile.xcconfig */, 123 | ); 124 | path = Pods; 125 | sourceTree = ""; 126 | }; 127 | /* End PBXGroup section */ 128 | 129 | /* Begin PBXNativeTarget section */ 130 | 97C146ED1CF9000F007C117D /* Runner */ = { 131 | isa = PBXNativeTarget; 132 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 133 | buildPhases = ( 134 | 57194981EC0E39AEB0391C82 /* [CP] Check Pods Manifest.lock */, 135 | 9740EEB61CF901F6004384FC /* Run Script */, 136 | 97C146EA1CF9000F007C117D /* Sources */, 137 | 97C146EB1CF9000F007C117D /* Frameworks */, 138 | 97C146EC1CF9000F007C117D /* Resources */, 139 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 140 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 141 | 49D4B7825B78F7C43DA3A078 /* [CP] Embed Pods Frameworks */, 142 | ); 143 | buildRules = ( 144 | ); 145 | dependencies = ( 146 | ); 147 | name = Runner; 148 | productName = Runner; 149 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 150 | productType = "com.apple.product-type.application"; 151 | }; 152 | /* End PBXNativeTarget section */ 153 | 154 | /* Begin PBXProject section */ 155 | 97C146E61CF9000F007C117D /* Project object */ = { 156 | isa = PBXProject; 157 | attributes = { 158 | LastUpgradeCheck = 1430; 159 | ORGANIZATIONNAME = ""; 160 | TargetAttributes = { 161 | 97C146ED1CF9000F007C117D = { 162 | CreatedOnToolsVersion = 7.3.1; 163 | LastSwiftMigration = 1100; 164 | }; 165 | }; 166 | }; 167 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 168 | compatibilityVersion = "Xcode 9.3"; 169 | developmentRegion = en; 170 | hasScannedForEncodings = 0; 171 | knownRegions = ( 172 | en, 173 | Base, 174 | ); 175 | mainGroup = 97C146E51CF9000F007C117D; 176 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 177 | projectDirPath = ""; 178 | projectRoot = ""; 179 | targets = ( 180 | 97C146ED1CF9000F007C117D /* Runner */, 181 | ); 182 | }; 183 | /* End PBXProject section */ 184 | 185 | /* Begin PBXResourcesBuildPhase section */ 186 | 97C146EC1CF9000F007C117D /* Resources */ = { 187 | isa = PBXResourcesBuildPhase; 188 | buildActionMask = 2147483647; 189 | files = ( 190 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 191 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 192 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 193 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 194 | ); 195 | runOnlyForDeploymentPostprocessing = 0; 196 | }; 197 | /* End PBXResourcesBuildPhase section */ 198 | 199 | /* Begin PBXShellScriptBuildPhase section */ 200 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 201 | isa = PBXShellScriptBuildPhase; 202 | alwaysOutOfDate = 1; 203 | buildActionMask = 2147483647; 204 | files = ( 205 | ); 206 | inputPaths = ( 207 | "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", 208 | ); 209 | name = "Thin Binary"; 210 | outputPaths = ( 211 | ); 212 | runOnlyForDeploymentPostprocessing = 0; 213 | shellPath = /bin/sh; 214 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 215 | }; 216 | 49D4B7825B78F7C43DA3A078 /* [CP] Embed Pods Frameworks */ = { 217 | isa = PBXShellScriptBuildPhase; 218 | buildActionMask = 2147483647; 219 | files = ( 220 | ); 221 | inputFileListPaths = ( 222 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", 223 | ); 224 | name = "[CP] Embed Pods Frameworks"; 225 | outputFileListPaths = ( 226 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", 227 | ); 228 | runOnlyForDeploymentPostprocessing = 0; 229 | shellPath = /bin/sh; 230 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; 231 | showEnvVarsInLog = 0; 232 | }; 233 | 57194981EC0E39AEB0391C82 /* [CP] Check Pods Manifest.lock */ = { 234 | isa = PBXShellScriptBuildPhase; 235 | buildActionMask = 2147483647; 236 | files = ( 237 | ); 238 | inputFileListPaths = ( 239 | ); 240 | inputPaths = ( 241 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 242 | "${PODS_ROOT}/Manifest.lock", 243 | ); 244 | name = "[CP] Check Pods Manifest.lock"; 245 | outputFileListPaths = ( 246 | ); 247 | outputPaths = ( 248 | "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", 249 | ); 250 | runOnlyForDeploymentPostprocessing = 0; 251 | shellPath = /bin/sh; 252 | 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"; 253 | showEnvVarsInLog = 0; 254 | }; 255 | 9740EEB61CF901F6004384FC /* Run Script */ = { 256 | isa = PBXShellScriptBuildPhase; 257 | alwaysOutOfDate = 1; 258 | buildActionMask = 2147483647; 259 | files = ( 260 | ); 261 | inputPaths = ( 262 | ); 263 | name = "Run Script"; 264 | outputPaths = ( 265 | ); 266 | runOnlyForDeploymentPostprocessing = 0; 267 | shellPath = /bin/sh; 268 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 269 | }; 270 | /* End PBXShellScriptBuildPhase section */ 271 | 272 | /* Begin PBXSourcesBuildPhase section */ 273 | 97C146EA1CF9000F007C117D /* Sources */ = { 274 | isa = PBXSourcesBuildPhase; 275 | buildActionMask = 2147483647; 276 | files = ( 277 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 278 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 279 | ); 280 | runOnlyForDeploymentPostprocessing = 0; 281 | }; 282 | /* End PBXSourcesBuildPhase section */ 283 | 284 | /* Begin PBXVariantGroup section */ 285 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 286 | isa = PBXVariantGroup; 287 | children = ( 288 | 97C146FB1CF9000F007C117D /* Base */, 289 | ); 290 | name = Main.storyboard; 291 | sourceTree = ""; 292 | }; 293 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 294 | isa = PBXVariantGroup; 295 | children = ( 296 | 97C147001CF9000F007C117D /* Base */, 297 | ); 298 | name = LaunchScreen.storyboard; 299 | sourceTree = ""; 300 | }; 301 | /* End PBXVariantGroup section */ 302 | 303 | /* Begin XCBuildConfiguration section */ 304 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 305 | isa = XCBuildConfiguration; 306 | buildSettings = { 307 | ALWAYS_SEARCH_USER_PATHS = NO; 308 | CLANG_ANALYZER_NONNULL = YES; 309 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 310 | CLANG_CXX_LIBRARY = "libc++"; 311 | CLANG_ENABLE_MODULES = YES; 312 | CLANG_ENABLE_OBJC_ARC = YES; 313 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 314 | CLANG_WARN_BOOL_CONVERSION = YES; 315 | CLANG_WARN_COMMA = YES; 316 | CLANG_WARN_CONSTANT_CONVERSION = YES; 317 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 318 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 319 | CLANG_WARN_EMPTY_BODY = YES; 320 | CLANG_WARN_ENUM_CONVERSION = YES; 321 | CLANG_WARN_INFINITE_RECURSION = YES; 322 | CLANG_WARN_INT_CONVERSION = YES; 323 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 324 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 325 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 326 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 327 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 328 | CLANG_WARN_STRICT_PROTOTYPES = YES; 329 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 330 | CLANG_WARN_UNREACHABLE_CODE = YES; 331 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 332 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 333 | COPY_PHASE_STRIP = NO; 334 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 335 | ENABLE_NS_ASSERTIONS = NO; 336 | ENABLE_STRICT_OBJC_MSGSEND = YES; 337 | GCC_C_LANGUAGE_STANDARD = gnu99; 338 | GCC_NO_COMMON_BLOCKS = YES; 339 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 340 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 341 | GCC_WARN_UNDECLARED_SELECTOR = YES; 342 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 343 | GCC_WARN_UNUSED_FUNCTION = YES; 344 | GCC_WARN_UNUSED_VARIABLE = YES; 345 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 346 | MTL_ENABLE_DEBUG_INFO = NO; 347 | SDKROOT = iphoneos; 348 | SUPPORTED_PLATFORMS = iphoneos; 349 | TARGETED_DEVICE_FAMILY = "1,2"; 350 | VALIDATE_PRODUCT = YES; 351 | }; 352 | name = Profile; 353 | }; 354 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 355 | isa = XCBuildConfiguration; 356 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 357 | buildSettings = { 358 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 359 | CLANG_ENABLE_MODULES = YES; 360 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 361 | DEVELOPMENT_TEAM = 5N85PP82A9; 362 | ENABLE_BITCODE = NO; 363 | INFOPLIST_FILE = Runner/Info.plist; 364 | LD_RUNPATH_SEARCH_PATHS = ( 365 | "$(inherited)", 366 | "@executable_path/Frameworks", 367 | ); 368 | PRODUCT_BUNDLE_IDENTIFIER = com.aditya.googleMeet; 369 | PRODUCT_NAME = "$(TARGET_NAME)"; 370 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 371 | SWIFT_VERSION = 5.0; 372 | VERSIONING_SYSTEM = "apple-generic"; 373 | }; 374 | name = Profile; 375 | }; 376 | 97C147031CF9000F007C117D /* Debug */ = { 377 | isa = XCBuildConfiguration; 378 | buildSettings = { 379 | ALWAYS_SEARCH_USER_PATHS = NO; 380 | CLANG_ANALYZER_NONNULL = YES; 381 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 382 | CLANG_CXX_LIBRARY = "libc++"; 383 | CLANG_ENABLE_MODULES = YES; 384 | CLANG_ENABLE_OBJC_ARC = YES; 385 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 386 | CLANG_WARN_BOOL_CONVERSION = YES; 387 | CLANG_WARN_COMMA = YES; 388 | CLANG_WARN_CONSTANT_CONVERSION = YES; 389 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 390 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 391 | CLANG_WARN_EMPTY_BODY = YES; 392 | CLANG_WARN_ENUM_CONVERSION = YES; 393 | CLANG_WARN_INFINITE_RECURSION = YES; 394 | CLANG_WARN_INT_CONVERSION = YES; 395 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 396 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 397 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 398 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 399 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 400 | CLANG_WARN_STRICT_PROTOTYPES = YES; 401 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 402 | CLANG_WARN_UNREACHABLE_CODE = YES; 403 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 404 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 405 | COPY_PHASE_STRIP = NO; 406 | DEBUG_INFORMATION_FORMAT = dwarf; 407 | ENABLE_STRICT_OBJC_MSGSEND = YES; 408 | ENABLE_TESTABILITY = YES; 409 | GCC_C_LANGUAGE_STANDARD = gnu99; 410 | GCC_DYNAMIC_NO_PIC = NO; 411 | GCC_NO_COMMON_BLOCKS = YES; 412 | GCC_OPTIMIZATION_LEVEL = 0; 413 | GCC_PREPROCESSOR_DEFINITIONS = ( 414 | "DEBUG=1", 415 | "$(inherited)", 416 | ); 417 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 418 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 419 | GCC_WARN_UNDECLARED_SELECTOR = YES; 420 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 421 | GCC_WARN_UNUSED_FUNCTION = YES; 422 | GCC_WARN_UNUSED_VARIABLE = YES; 423 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 424 | MTL_ENABLE_DEBUG_INFO = YES; 425 | ONLY_ACTIVE_ARCH = YES; 426 | SDKROOT = iphoneos; 427 | TARGETED_DEVICE_FAMILY = "1,2"; 428 | }; 429 | name = Debug; 430 | }; 431 | 97C147041CF9000F007C117D /* Release */ = { 432 | isa = XCBuildConfiguration; 433 | buildSettings = { 434 | ALWAYS_SEARCH_USER_PATHS = NO; 435 | CLANG_ANALYZER_NONNULL = YES; 436 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 437 | CLANG_CXX_LIBRARY = "libc++"; 438 | CLANG_ENABLE_MODULES = YES; 439 | CLANG_ENABLE_OBJC_ARC = YES; 440 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 441 | CLANG_WARN_BOOL_CONVERSION = YES; 442 | CLANG_WARN_COMMA = YES; 443 | CLANG_WARN_CONSTANT_CONVERSION = YES; 444 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 445 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 446 | CLANG_WARN_EMPTY_BODY = YES; 447 | CLANG_WARN_ENUM_CONVERSION = YES; 448 | CLANG_WARN_INFINITE_RECURSION = YES; 449 | CLANG_WARN_INT_CONVERSION = YES; 450 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 451 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 452 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 453 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 454 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 455 | CLANG_WARN_STRICT_PROTOTYPES = YES; 456 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 457 | CLANG_WARN_UNREACHABLE_CODE = YES; 458 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 459 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 460 | COPY_PHASE_STRIP = NO; 461 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 462 | ENABLE_NS_ASSERTIONS = NO; 463 | ENABLE_STRICT_OBJC_MSGSEND = YES; 464 | GCC_C_LANGUAGE_STANDARD = gnu99; 465 | GCC_NO_COMMON_BLOCKS = YES; 466 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 467 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 468 | GCC_WARN_UNDECLARED_SELECTOR = YES; 469 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 470 | GCC_WARN_UNUSED_FUNCTION = YES; 471 | GCC_WARN_UNUSED_VARIABLE = YES; 472 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 473 | MTL_ENABLE_DEBUG_INFO = NO; 474 | SDKROOT = iphoneos; 475 | SUPPORTED_PLATFORMS = iphoneos; 476 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 477 | TARGETED_DEVICE_FAMILY = "1,2"; 478 | VALIDATE_PRODUCT = YES; 479 | }; 480 | name = Release; 481 | }; 482 | 97C147061CF9000F007C117D /* Debug */ = { 483 | isa = XCBuildConfiguration; 484 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 485 | buildSettings = { 486 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 487 | CLANG_ENABLE_MODULES = YES; 488 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 489 | DEVELOPMENT_TEAM = 5N85PP82A9; 490 | ENABLE_BITCODE = NO; 491 | INFOPLIST_FILE = Runner/Info.plist; 492 | LD_RUNPATH_SEARCH_PATHS = ( 493 | "$(inherited)", 494 | "@executable_path/Frameworks", 495 | ); 496 | PRODUCT_BUNDLE_IDENTIFIER = com.aditya.googleMeet; 497 | PRODUCT_NAME = "$(TARGET_NAME)"; 498 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 499 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 500 | SWIFT_VERSION = 5.0; 501 | VERSIONING_SYSTEM = "apple-generic"; 502 | }; 503 | name = Debug; 504 | }; 505 | 97C147071CF9000F007C117D /* Release */ = { 506 | isa = XCBuildConfiguration; 507 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 508 | buildSettings = { 509 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 510 | CLANG_ENABLE_MODULES = YES; 511 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 512 | DEVELOPMENT_TEAM = 5N85PP82A9; 513 | ENABLE_BITCODE = NO; 514 | INFOPLIST_FILE = Runner/Info.plist; 515 | LD_RUNPATH_SEARCH_PATHS = ( 516 | "$(inherited)", 517 | "@executable_path/Frameworks", 518 | ); 519 | PRODUCT_BUNDLE_IDENTIFIER = com.aditya.googleMeet; 520 | PRODUCT_NAME = "$(TARGET_NAME)"; 521 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 522 | SWIFT_VERSION = 5.0; 523 | VERSIONING_SYSTEM = "apple-generic"; 524 | }; 525 | name = Release; 526 | }; 527 | /* End XCBuildConfiguration section */ 528 | 529 | /* Begin XCConfigurationList section */ 530 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 531 | isa = XCConfigurationList; 532 | buildConfigurations = ( 533 | 97C147031CF9000F007C117D /* Debug */, 534 | 97C147041CF9000F007C117D /* Release */, 535 | 249021D3217E4FDB00AE95B9 /* Profile */, 536 | ); 537 | defaultConfigurationIsVisible = 0; 538 | defaultConfigurationName = Release; 539 | }; 540 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 541 | isa = XCConfigurationList; 542 | buildConfigurations = ( 543 | 97C147061CF9000F007C117D /* Debug */, 544 | 97C147071CF9000F007C117D /* Release */, 545 | 249021D4217E4FDB00AE95B9 /* Profile */, 546 | ); 547 | defaultConfigurationIsVisible = 0; 548 | defaultConfigurationName = Release; 549 | }; 550 | /* End XCConfigurationList section */ 551 | }; 552 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 553 | } 554 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.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/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 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 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-60x60@2x.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "60x60", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-60x60@3x.png", 55 | "scale" : "3x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-App-20x20@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "20x20", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-App-20x20@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-29x29@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-29x29@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-40x40@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "40x40", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-40x40@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-76x76@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "76x76", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-76x76@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "83.5x83.5", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-App-83.5x83.5@2x.png", 109 | "scale" : "2x" 110 | }, 111 | { 112 | "size" : "1024x1024", 113 | "idiom" : "ios-marketing", 114 | "filename" : "Icon-App-1024x1024@1x.png", 115 | "scale" : "1x" 116 | } 117 | ], 118 | "info" : { 119 | "version" : 1, 120 | "author" : "xcode" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/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/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/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/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/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/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/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/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/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/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/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/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/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/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/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/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/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/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/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/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/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/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/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/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityathakurxd/flutter-meet/2d095fbd5693ae3652475e35fe52a1b43ad0bd2d/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | google_meet 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | $(FLUTTER_BUILD_NAME) 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSRequiresIPhoneOS 24 | 25 | NSCameraUsageDescription 26 | 100ms needs access to Camera to enable high quality video conferencing. 27 | NSLocalNetworkUsageDescription 28 | 100ms needs access to Local Network to enable high quality video conferencing. 29 | NSMicrophoneUsageDescription 30 | 100ms needs access to Microphone to enable high quality video conferencing. 31 | UILaunchStoryboardName 32 | LaunchScreen 33 | UIMainStoryboardFile 34 | Main 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UISupportedInterfaceOrientations~ipad 42 | 43 | UIInterfaceOrientationPortrait 44 | UIInterfaceOrientationPortraitUpsideDown 45 | UIInterfaceOrientationLandscapeLeft 46 | UIInterfaceOrientationLandscapeRight 47 | 48 | UIViewControllerBasedStatusBarAppearance 49 | 50 | CADisableMinimumFrameDurationOnPhone 51 | 52 | UIApplicationSupportsIndirectInputEvents 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | //Package imports 2 | import 'package:flutter/material.dart'; 3 | 4 | //File imports 5 | import 'package:google_meet/screens/home_screen.dart'; 6 | 7 | void main() { 8 | runApp(const MyApp()); 9 | } 10 | 11 | class MyApp extends StatelessWidget { 12 | const MyApp({Key? key}) : super(key: key); 13 | 14 | // This widget is the root of your application. 15 | @override 16 | Widget build(BuildContext context) { 17 | return MaterialApp( 18 | title: 'Flutter Meet', 19 | theme: ThemeData( 20 | primaryColor: Colors.grey[900], 21 | outlinedButtonTheme: OutlinedButtonThemeData( 22 | style: ButtonStyle( 23 | shape: MaterialStateProperty.all(RoundedRectangleBorder( 24 | borderRadius: BorderRadius.circular(20.0))), 25 | backgroundColor: MaterialStateColor.resolveWith( 26 | (states) => Colors.blueAccent), 27 | foregroundColor: MaterialStateColor.resolveWith( 28 | (states) => Colors.white)))), 29 | home: const HomeScreen(), 30 | ); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /lib/models/data_store.dart: -------------------------------------------------------------------------------- 1 | //Dart imports 2 | import 'dart:developer'; 3 | 4 | //Package imports 5 | import 'package:flutter/material.dart'; 6 | import 'package:hmssdk_flutter/hmssdk_flutter.dart'; 7 | 8 | //File imports 9 | import 'package:google_meet/services/sdk_initializer.dart'; 10 | 11 | class UserDataStore extends ChangeNotifier 12 | implements HMSUpdateListener, HMSActionResultListener { 13 | HMSTrack? remoteVideoTrack; 14 | HMSPeer? remotePeer; 15 | HMSTrack? remoteAudioTrack; 16 | HMSVideoTrack? localTrack; 17 | bool _disposed = false; 18 | late HMSPeer localPeer; 19 | bool isRoomEnded = false; 20 | 21 | void startListen() { 22 | SdkInitializer.hmssdk.addUpdateListener(listener: this); 23 | } 24 | 25 | void leaveRoom() async { 26 | SdkInitializer.hmssdk.leave(hmsActionResultListener: this); 27 | } 28 | 29 | @override 30 | void dispose() { 31 | _disposed = true; 32 | super.dispose(); 33 | } 34 | 35 | @override 36 | void notifyListeners() { 37 | if (!_disposed) { 38 | super.notifyListeners(); 39 | } 40 | } 41 | 42 | @override 43 | void onJoin({required HMSRoom room}) { 44 | for (HMSPeer each in room.peers!) { 45 | if (each.isLocal) { 46 | localPeer = each; 47 | break; 48 | } 49 | } 50 | } 51 | 52 | @override 53 | void onPeerUpdate({required HMSPeer peer, required HMSPeerUpdate update}) { 54 | switch (update) { 55 | case HMSPeerUpdate.peerJoined: 56 | remotePeer = peer; 57 | remoteAudioTrack = peer.audioTrack; 58 | remoteVideoTrack = peer.videoTrack; 59 | break; 60 | case HMSPeerUpdate.peerLeft: 61 | remotePeer = null; 62 | break; 63 | case HMSPeerUpdate.roleUpdated: 64 | break; 65 | case HMSPeerUpdate.metadataChanged: 66 | break; 67 | case HMSPeerUpdate.nameChanged: 68 | break; 69 | case HMSPeerUpdate.defaultUpdate: 70 | break; 71 | case HMSPeerUpdate.networkQualityUpdated: 72 | break; 73 | case HMSPeerUpdate.handRaiseUpdated: 74 | break; 75 | } 76 | notifyListeners(); 77 | } 78 | 79 | @override 80 | void onTrackUpdate( 81 | {required HMSTrack track, 82 | required HMSTrackUpdate trackUpdate, 83 | required HMSPeer peer}) { 84 | switch (trackUpdate) { 85 | case HMSTrackUpdate.trackAdded: 86 | if (track.kind == HMSTrackKind.kHMSTrackKindAudio) { 87 | if (!peer.isLocal) remoteAudioTrack = track; 88 | } else if (track.kind == HMSTrackKind.kHMSTrackKindVideo) { 89 | if (!peer.isLocal) { 90 | remoteVideoTrack = track; 91 | } else { 92 | localTrack = track as HMSVideoTrack; 93 | } 94 | } 95 | break; 96 | case HMSTrackUpdate.trackRemoved: 97 | if (track.kind == HMSTrackKind.kHMSTrackKindAudio) { 98 | if (!peer.isLocal) remoteAudioTrack = null; 99 | } else if (track.kind == HMSTrackKind.kHMSTrackKindVideo) { 100 | if (!peer.isLocal) { 101 | remoteVideoTrack = null; 102 | } else { 103 | localTrack = null; 104 | } 105 | } 106 | break; 107 | case HMSTrackUpdate.trackMuted: 108 | if (track.kind == HMSTrackKind.kHMSTrackKindAudio) { 109 | if (!peer.isLocal) remoteAudioTrack = track; 110 | } else if (track.kind == HMSTrackKind.kHMSTrackKindVideo) { 111 | if (!peer.isLocal) { 112 | remoteVideoTrack = track; 113 | } else { 114 | localTrack = null; 115 | } 116 | } 117 | break; 118 | case HMSTrackUpdate.trackUnMuted: 119 | if (track.kind == HMSTrackKind.kHMSTrackKindAudio) { 120 | if (!peer.isLocal) remoteAudioTrack = track; 121 | } else if (track.kind == HMSTrackKind.kHMSTrackKindVideo) { 122 | if (!peer.isLocal) { 123 | remoteVideoTrack = track; 124 | } else { 125 | localTrack = track as HMSVideoTrack; 126 | } 127 | } 128 | break; 129 | case HMSTrackUpdate.trackDescriptionChanged: 130 | break; 131 | case HMSTrackUpdate.trackDegraded: 132 | break; 133 | case HMSTrackUpdate.trackRestored: 134 | break; 135 | case HMSTrackUpdate.defaultUpdate: 136 | break; 137 | } 138 | notifyListeners(); 139 | } 140 | 141 | @override 142 | void onHMSError({required HMSException error}) { 143 | log(error.message ?? ""); 144 | } 145 | 146 | @override 147 | void onMessage({required HMSMessage message}) {} 148 | 149 | @override 150 | void onRoomUpdate({required HMSRoom room, required HMSRoomUpdate update}) {} 151 | 152 | @override 153 | void onUpdateSpeakers({required List updateSpeakers}) {} 154 | 155 | @override 156 | void onReconnected() {} 157 | 158 | @override 159 | void onReconnecting() {} 160 | 161 | @override 162 | void onRemovedFromRoom( 163 | {required HMSPeerRemovedFromPeer hmsPeerRemovedFromPeer}) {} 164 | 165 | @override 166 | void onRoleChangeRequest({required HMSRoleChangeRequest roleChangeRequest}) {} 167 | 168 | @override 169 | void onChangeTrackStateRequest( 170 | {required HMSTrackChangeRequest hmsTrackChangeRequest}) {} 171 | 172 | @override 173 | void onAudioDeviceChanged( 174 | {HMSAudioDevice? currentAudioDevice, 175 | List? availableAudioDevice}) {} 176 | 177 | @override 178 | void onSessionStoreAvailable({HMSSessionStore? hmsSessionStore}) { 179 | hmsSessionStore?.setSessionMetadataForKey( 180 | key: "pinnedMessage", data: "Hey there"); 181 | } 182 | 183 | @override 184 | void onPeerListUpdate( 185 | {required List addedPeers, 186 | required List removedPeers}) { 187 | if (addedPeers.isNotEmpty) { 188 | if (!addedPeers[0].isLocal) { 189 | remotePeer = addedPeers[0]; 190 | remoteAudioTrack = addedPeers[0].audioTrack; 191 | remoteVideoTrack = addedPeers[0].videoTrack; 192 | log("User joined: ${addedPeers[0].name}"); 193 | } 194 | } 195 | } 196 | 197 | @override 198 | void onException( 199 | {required HMSActionResultListenerMethod methodType, 200 | Map? arguments, 201 | required HMSException hmsException}) { 202 | switch (methodType) { 203 | case HMSActionResultListenerMethod.leave: 204 | log("Leave room error ${hmsException.message}"); 205 | break; 206 | case HMSActionResultListenerMethod.changeTrackState: 207 | break; 208 | case HMSActionResultListenerMethod.changeMetadata: 209 | break; 210 | case HMSActionResultListenerMethod.endRoom: 211 | break; 212 | case HMSActionResultListenerMethod.removePeer: 213 | break; 214 | case HMSActionResultListenerMethod.acceptChangeRole: 215 | break; 216 | case HMSActionResultListenerMethod.changeRoleOfPeer: 217 | break; 218 | case HMSActionResultListenerMethod.changeTrackStateForRole: 219 | break; 220 | case HMSActionResultListenerMethod.startRtmpOrRecording: 221 | break; 222 | case HMSActionResultListenerMethod.stopRtmpAndRecording: 223 | break; 224 | case HMSActionResultListenerMethod.changeName: 225 | break; 226 | case HMSActionResultListenerMethod.sendBroadcastMessage: 227 | break; 228 | case HMSActionResultListenerMethod.sendGroupMessage: 229 | break; 230 | case HMSActionResultListenerMethod.sendDirectMessage: 231 | break; 232 | case HMSActionResultListenerMethod.hlsStreamingStarted: 233 | break; 234 | case HMSActionResultListenerMethod.hlsStreamingStopped: 235 | break; 236 | case HMSActionResultListenerMethod.startScreenShare: 237 | break; 238 | case HMSActionResultListenerMethod.stopScreenShare: 239 | break; 240 | case HMSActionResultListenerMethod.startAudioShare: 241 | break; 242 | case HMSActionResultListenerMethod.stopAudioShare: 243 | break; 244 | case HMSActionResultListenerMethod.switchCamera: 245 | break; 246 | case HMSActionResultListenerMethod.changeRoleOfPeersWithRoles: 247 | break; 248 | case HMSActionResultListenerMethod.setSessionMetadataForKey: 249 | break; 250 | case HMSActionResultListenerMethod.sendHLSTimedMetadata: 251 | break; 252 | case HMSActionResultListenerMethod.lowerLocalPeerHand: 253 | break; 254 | case HMSActionResultListenerMethod.lowerRemotePeerHand: 255 | break; 256 | case HMSActionResultListenerMethod.raiseLocalPeerHand: 257 | break; 258 | case HMSActionResultListenerMethod.quickStartPoll: 259 | break; 260 | case HMSActionResultListenerMethod.addSingleChoicePollResponse: 261 | break; 262 | case HMSActionResultListenerMethod.addMultiChoicePollResponse: 263 | break; 264 | case HMSActionResultListenerMethod.unknown: 265 | break; 266 | } 267 | } 268 | 269 | @override 270 | void onSuccess( 271 | {required HMSActionResultListenerMethod methodType, 272 | Map? arguments}) { 273 | switch (methodType) { 274 | case HMSActionResultListenerMethod.leave: 275 | isRoomEnded = true; 276 | log("Updated leave"); 277 | notifyListeners(); 278 | break; 279 | case HMSActionResultListenerMethod.changeTrackState: 280 | break; 281 | case HMSActionResultListenerMethod.changeMetadata: 282 | break; 283 | case HMSActionResultListenerMethod.endRoom: 284 | break; 285 | case HMSActionResultListenerMethod.removePeer: 286 | break; 287 | case HMSActionResultListenerMethod.acceptChangeRole: 288 | break; 289 | case HMSActionResultListenerMethod.changeRoleOfPeer: 290 | break; 291 | case HMSActionResultListenerMethod.changeTrackStateForRole: 292 | break; 293 | case HMSActionResultListenerMethod.startRtmpOrRecording: 294 | break; 295 | case HMSActionResultListenerMethod.stopRtmpAndRecording: 296 | break; 297 | case HMSActionResultListenerMethod.changeName: 298 | break; 299 | case HMSActionResultListenerMethod.sendBroadcastMessage: 300 | break; 301 | case HMSActionResultListenerMethod.sendGroupMessage: 302 | break; 303 | case HMSActionResultListenerMethod.sendDirectMessage: 304 | break; 305 | case HMSActionResultListenerMethod.hlsStreamingStarted: 306 | break; 307 | case HMSActionResultListenerMethod.hlsStreamingStopped: 308 | break; 309 | case HMSActionResultListenerMethod.startScreenShare: 310 | break; 311 | case HMSActionResultListenerMethod.stopScreenShare: 312 | break; 313 | case HMSActionResultListenerMethod.startAudioShare: 314 | break; 315 | case HMSActionResultListenerMethod.stopAudioShare: 316 | break; 317 | case HMSActionResultListenerMethod.switchCamera: 318 | break; 319 | case HMSActionResultListenerMethod.changeRoleOfPeersWithRoles: 320 | break; 321 | case HMSActionResultListenerMethod.setSessionMetadataForKey: 322 | break; 323 | case HMSActionResultListenerMethod.sendHLSTimedMetadata: 324 | break; 325 | case HMSActionResultListenerMethod.lowerLocalPeerHand: 326 | break; 327 | case HMSActionResultListenerMethod.lowerRemotePeerHand: 328 | break; 329 | case HMSActionResultListenerMethod.raiseLocalPeerHand: 330 | break; 331 | case HMSActionResultListenerMethod.quickStartPoll: 332 | break; 333 | case HMSActionResultListenerMethod.addSingleChoicePollResponse: 334 | break; 335 | case HMSActionResultListenerMethod.addMultiChoicePollResponse: 336 | break; 337 | case HMSActionResultListenerMethod.unknown: 338 | break; 339 | } 340 | } 341 | } 342 | -------------------------------------------------------------------------------- /lib/screens/home_screen.dart: -------------------------------------------------------------------------------- 1 | //Package imports 2 | import 'package:flutter/material.dart'; 3 | import 'package:google_meet/models/data_store.dart'; 4 | import 'package:permission_handler/permission_handler.dart'; 5 | import 'package:provider/provider.dart'; 6 | 7 | //File imports 8 | import 'package:google_meet/screens/meeting_screen.dart'; 9 | import 'package:google_meet/services/join_service.dart'; 10 | import 'package:google_meet/services/sdk_initializer.dart'; 11 | 12 | class HomeScreen extends StatefulWidget { 13 | const HomeScreen({Key? key}) : super(key: key); 14 | 15 | @override 16 | State createState() => _HomeScreenState(); 17 | } 18 | 19 | class _HomeScreenState extends State { 20 | late UserDataStore _dataStore; 21 | bool isLoading = false; 22 | 23 | @override 24 | void initState() { 25 | getPermissions(); 26 | super.initState(); 27 | } 28 | 29 | void getPermissions() async { 30 | await Permission.camera.request(); 31 | await Permission.microphone.request(); 32 | 33 | while ((await Permission.camera.isDenied)) { 34 | await Permission.camera.request(); 35 | } 36 | while ((await Permission.microphone.isDenied)) { 37 | await Permission.microphone.request(); 38 | } 39 | } 40 | 41 | //Handles room joining functionality 42 | Future joinRoom() async { 43 | setState(() { 44 | isLoading = true; 45 | }); 46 | //The join method initialize sdk,gets auth token,creates HMSConfig and helps in joining the room 47 | await SdkInitializer.hmssdk.build(); 48 | _dataStore = UserDataStore(); 49 | 50 | //Here we are attaching a listener to our DataStoreClass 51 | _dataStore.startListen(); 52 | bool isJoinSuccessful = await JoinService.join(SdkInitializer.hmssdk); 53 | if (!isJoinSuccessful) { 54 | return false; 55 | } 56 | setState(() { 57 | isLoading = false; 58 | }); 59 | return true; 60 | } 61 | 62 | @override 63 | Widget build(BuildContext context) { 64 | return SafeArea( 65 | child: Scaffold( 66 | backgroundColor: Theme.of(context).primaryColor, 67 | appBar: AppBar( 68 | backgroundColor: Theme.of(context).primaryColor, 69 | elevation: 0, 70 | title: const Text("Meet"), 71 | centerTitle: true, 72 | actions: [ 73 | IconButton( 74 | icon: const Icon(Icons.account_circle), 75 | onPressed: () {}, 76 | ), 77 | ], 78 | ), 79 | drawer: Drawer( 80 | child: ListView( 81 | padding: EdgeInsets.zero, 82 | children: [ 83 | DrawerHeader( 84 | decoration: BoxDecoration( 85 | color: Theme.of(context).primaryColor, 86 | ), 87 | child: const Text( 88 | 'Google Meet', 89 | style: TextStyle(fontSize: 25, color: Colors.white), 90 | ), 91 | ), 92 | ListTile( 93 | title: const Row( 94 | children: [ 95 | Icon(Icons.settings_outlined), 96 | SizedBox( 97 | width: 10, 98 | ), 99 | Text('Settings'), 100 | ], 101 | ), 102 | onTap: () {}, 103 | ), 104 | ListTile( 105 | title: const Row( 106 | children: [ 107 | Icon(Icons.feedback_outlined), 108 | SizedBox( 109 | width: 10, 110 | ), 111 | Text('Send feedback'), 112 | ], 113 | ), 114 | onTap: () {}, 115 | ), 116 | ListTile( 117 | title: const Row( 118 | children: [ 119 | Icon(Icons.help_outline), 120 | SizedBox( 121 | width: 10, 122 | ), 123 | Text('Help'), 124 | ], 125 | ), 126 | onTap: () {}, 127 | ), 128 | ], 129 | ), // Populate the Drawer in the next step. 130 | ), 131 | body: Column( 132 | children: [ 133 | Row( 134 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 135 | children: [ 136 | OutlinedButton( 137 | onPressed: () async { 138 | showModalBottomSheet( 139 | context: context, 140 | builder: (BuildContext context) { 141 | return SizedBox( 142 | height: 200, 143 | child: ListView( 144 | padding: EdgeInsets.zero, 145 | children: [ 146 | ListTile( 147 | title: const Row( 148 | children: [ 149 | Icon(Icons.video_call), 150 | SizedBox( 151 | width: 10, 152 | ), 153 | Text('Start an instant meeting'), 154 | ], 155 | ), 156 | onTap: () async { 157 | bool isJoined = await joinRoom(); 158 | if (isJoined) { 159 | Navigator.of(context).push(MaterialPageRoute( 160 | builder: (_) => 161 | ListenableProvider.value( 162 | value: _dataStore, 163 | child: const MeetingScreen()))); 164 | } else { 165 | const SnackBar(content: Text("Error")); 166 | } 167 | }, 168 | ), 169 | ListTile( 170 | title: const Row( 171 | children: [ 172 | Icon(Icons.close), 173 | SizedBox( 174 | width: 10, 175 | ), 176 | Text('Close'), 177 | ], 178 | ), 179 | onTap: () { 180 | Navigator.pop(context); 181 | }, 182 | ), 183 | ], 184 | ), 185 | ); 186 | }, 187 | ); 188 | }, 189 | child: const Text('New meeting'), 190 | ), 191 | OutlinedButton( 192 | style: Theme.of(context) 193 | .outlinedButtonTheme 194 | .style! 195 | .copyWith( 196 | side: MaterialStateProperty.all( 197 | const BorderSide(color: Colors.white)), 198 | backgroundColor: MaterialStateColor.resolveWith( 199 | (states) => Colors.transparent), 200 | foregroundColor: MaterialStateColor.resolveWith( 201 | (states) => Colors.white)), 202 | onPressed: () {}, 203 | child: const Text('Join with a code')) 204 | ], 205 | ) 206 | ], 207 | ), 208 | ), 209 | ); 210 | } 211 | } 212 | -------------------------------------------------------------------------------- /lib/screens/meeting_screen.dart: -------------------------------------------------------------------------------- 1 | //Package imports 2 | import 'package:draggable_widget/draggable_widget.dart'; 3 | import 'package:flutter/material.dart'; 4 | import 'package:hmssdk_flutter/hmssdk_flutter.dart'; 5 | import 'package:provider/provider.dart'; 6 | 7 | //File imports 8 | import 'package:google_meet/models/data_store.dart'; 9 | import 'package:google_meet/services/sdk_initializer.dart'; 10 | 11 | class MeetingScreen extends StatefulWidget { 12 | const MeetingScreen({Key? key}) : super(key: key); 13 | 14 | @override 15 | _MeetingScreenState createState() => _MeetingScreenState(); 16 | } 17 | 18 | class _MeetingScreenState extends State { 19 | bool isLocalAudioOn = true; 20 | bool isLocalVideoOn = true; 21 | final bool _isLoading = false; 22 | String? orientation; 23 | double width = 0; 24 | 25 | @override 26 | void initState() { 27 | super.initState(); 28 | WidgetsBinding.instance.addPostFrameCallback((_) { 29 | width = MediaQuery.of(context).size.width; 30 | }); 31 | } 32 | 33 | @override 34 | void dispose() { 35 | super.dispose(); 36 | } 37 | 38 | @override 39 | Widget build(BuildContext context) { 40 | final _isVideoOff = context.select( 41 | (user) => user.remoteVideoTrack?.isMute ?? true); 42 | final _peer = 43 | context.select((user) => user.remotePeer); 44 | final remoteTrack = context 45 | .select((user) => user.remoteVideoTrack); 46 | final localTrack = context 47 | .select((user) => user.localTrack); 48 | 49 | return WillPopScope( 50 | onWillPop: () async { 51 | context.read().leaveRoom(); 52 | Navigator.pop(context); 53 | return true; 54 | }, 55 | child: SafeArea( 56 | child: Scaffold( 57 | body: (_isLoading) 58 | ? const CircularProgressIndicator() 59 | : (_peer == null) 60 | ? Container( 61 | color: Colors.black.withOpacity(0.9), 62 | width: MediaQuery.of(context).size.width, 63 | height: MediaQuery.of(context).size.height, 64 | child: Stack( 65 | children: [ 66 | Positioned( 67 | child: IconButton( 68 | onPressed: () { 69 | context.read().leaveRoom(); 70 | Navigator.pop(context); 71 | }, 72 | icon: const Icon( 73 | Icons.arrow_back_ios, 74 | color: Colors.white, 75 | ))), 76 | const Column( 77 | mainAxisAlignment: MainAxisAlignment.center, 78 | crossAxisAlignment: CrossAxisAlignment.start, 79 | children: [ 80 | Padding( 81 | padding: 82 | EdgeInsets.only(left: 20.0, bottom: 20), 83 | child: Text( 84 | "You're the only one here", 85 | style: TextStyle( 86 | color: Colors.white, 87 | fontSize: 20, 88 | fontWeight: FontWeight.bold), 89 | ), 90 | ), 91 | Padding( 92 | padding: EdgeInsets.only(left: 20.0), 93 | child: Text( 94 | "Share meeting link with others", 95 | style: TextStyle( 96 | color: Colors.white, 97 | fontSize: 12, 98 | fontWeight: FontWeight.bold), 99 | ), 100 | ), 101 | Padding( 102 | padding: EdgeInsets.only(left: 20.0), 103 | child: Text( 104 | "that you want in the meeting", 105 | style: TextStyle( 106 | color: Colors.white, 107 | fontSize: 12, 108 | fontWeight: FontWeight.bold), 109 | ), 110 | ), 111 | Padding( 112 | padding: EdgeInsets.only(left: 20.0, top: 10), 113 | child: CircularProgressIndicator( 114 | strokeWidth: 2, 115 | ), 116 | ), 117 | ], 118 | ), 119 | DraggableWidget( 120 | topMargin: 10, 121 | bottomMargin: 130, 122 | horizontalSpace: 10, 123 | child: localPeerTile(localTrack), 124 | ), 125 | ], 126 | ), 127 | ) 128 | : SizedBox( 129 | height: MediaQuery.of(context).size.height, 130 | width: MediaQuery.of(context).size.width, 131 | child: Stack( 132 | children: [ 133 | Container( 134 | color: Colors.black.withOpacity(0.9), 135 | child: _isVideoOff 136 | ? Center( 137 | child: Container( 138 | decoration: BoxDecoration( 139 | shape: BoxShape.circle, 140 | boxShadow: [ 141 | BoxShadow( 142 | color: 143 | Colors.blue.withAlpha(60), 144 | blurRadius: 10.0, 145 | spreadRadius: 2.0, 146 | ), 147 | ]), 148 | child: const Icon( 149 | Icons.videocam_off, 150 | color: Colors.white, 151 | size: 30, 152 | ), 153 | ), 154 | ) 155 | : (remoteTrack != null) 156 | ? Container( 157 | child: HMSVideoView( 158 | scaleType: 159 | ScaleType.SCALE_ASPECT_FILL, 160 | track: remoteTrack as HMSVideoTrack, 161 | ), 162 | ) 163 | : const Center(child: Text("No Video"))), 164 | Align( 165 | alignment: Alignment.bottomCenter, 166 | child: Padding( 167 | padding: const EdgeInsets.only(bottom: 15), 168 | child: Row( 169 | mainAxisAlignment: 170 | MainAxisAlignment.spaceEvenly, 171 | children: [ 172 | GestureDetector( 173 | onTap: () async { 174 | context.read().leaveRoom(); 175 | Navigator.pop(context); 176 | }, 177 | child: Container( 178 | decoration: BoxDecoration( 179 | shape: BoxShape.circle, 180 | boxShadow: [ 181 | BoxShadow( 182 | color: Colors.red.withAlpha(60), 183 | blurRadius: 3.0, 184 | spreadRadius: 5.0, 185 | ), 186 | ]), 187 | child: const CircleAvatar( 188 | radius: 25, 189 | backgroundColor: Colors.red, 190 | child: Icon(Icons.call_end, 191 | color: Colors.white), 192 | ), 193 | ), 194 | ), 195 | GestureDetector( 196 | onTap: () => { 197 | SdkInitializer.hmssdk 198 | .toggleCameraMuteState(), 199 | setState(() { 200 | isLocalVideoOn = !isLocalVideoOn; 201 | }) 202 | }, 203 | child: CircleAvatar( 204 | radius: 25, 205 | backgroundColor: 206 | Colors.transparent.withOpacity(0.2), 207 | child: Icon( 208 | isLocalVideoOn 209 | ? Icons.videocam 210 | : Icons.videocam_off_rounded, 211 | color: Colors.white, 212 | ), 213 | ), 214 | ), 215 | GestureDetector( 216 | onTap: () => { 217 | SdkInitializer.hmssdk 218 | .toggleMicMuteState(), 219 | setState(() { 220 | isLocalAudioOn = !isLocalAudioOn; 221 | }) 222 | }, 223 | child: CircleAvatar( 224 | radius: 25, 225 | backgroundColor: 226 | Colors.transparent.withOpacity(0.2), 227 | child: Icon( 228 | isLocalAudioOn 229 | ? Icons.mic 230 | : Icons.mic_off, 231 | color: Colors.white, 232 | ), 233 | ), 234 | ), 235 | ], 236 | ), 237 | ), 238 | ), 239 | Positioned( 240 | top: 10, 241 | left: 10, 242 | child: GestureDetector( 243 | onTap: () { 244 | context.read().leaveRoom(); 245 | Navigator.pop(context); 246 | }, 247 | child: const Icon( 248 | Icons.arrow_back_ios, 249 | color: Colors.white, 250 | ), 251 | ), 252 | ), 253 | Positioned( 254 | top: 10, 255 | right: 10, 256 | child: GestureDetector( 257 | onTap: () { 258 | if (isLocalVideoOn) { 259 | SdkInitializer.hmssdk.switchCamera(); 260 | } 261 | }, 262 | child: CircleAvatar( 263 | radius: 25, 264 | backgroundColor: 265 | Colors.transparent.withOpacity(0.2), 266 | child: const Icon( 267 | Icons.switch_camera_outlined, 268 | color: Colors.white, 269 | ), 270 | ), 271 | ), 272 | ), 273 | DraggableWidget( 274 | topMargin: 10, 275 | bottomMargin: 130, 276 | horizontalSpace: 10, 277 | child: localPeerTile(localTrack), 278 | ), 279 | ], 280 | ), 281 | ), 282 | ), 283 | ), 284 | ); 285 | } 286 | 287 | Widget localPeerTile(HMSVideoTrack? localTrack) { 288 | return ClipRRect( 289 | borderRadius: BorderRadius.circular(10), 290 | child: Container( 291 | height: 150, 292 | width: 100, 293 | color: Colors.black, 294 | child: (isLocalVideoOn && localTrack != null) 295 | ? HMSVideoView( 296 | track: localTrack, 297 | ) 298 | : const Icon( 299 | Icons.videocam_off_rounded, 300 | color: Colors.white, 301 | ), 302 | ), 303 | ); 304 | } 305 | } 306 | -------------------------------------------------------------------------------- /lib/services/join_service.dart: -------------------------------------------------------------------------------- 1 | //Dart imports 2 | 3 | //Package imports 4 | import 'package:hmssdk_flutter/hmssdk_flutter.dart'; 5 | 6 | class JoinService { 7 | static Future join(HMSSDK hmssdk) async { 8 | String? roomCode = getCode( 9 | "https://mobilevideoconference.app.100ms.live/meeting/rky-hzlr-ybr"); 10 | 11 | if (roomCode == null) return false; 12 | dynamic authToken = await hmssdk.getAuthTokenByRoomCode(roomCode: roomCode); 13 | 14 | if (authToken is String) { 15 | HMSConfig roomConfig = HMSConfig( 16 | authToken: authToken, 17 | userName: "user", 18 | ); 19 | 20 | hmssdk.join(config: roomConfig); 21 | } else if (authToken is HMSException) { 22 | // Handle the error 23 | return false; 24 | } 25 | HMSConfig config = HMSConfig(authToken: authToken, userName: "user"); 26 | await hmssdk.join(config: config); 27 | return true; 28 | } 29 | 30 | static String? getCode(String roomUrl) { 31 | String url = roomUrl; 32 | if (url == "") return null; 33 | url = url.trim(); 34 | 35 | List codeAndDomain = []; 36 | String code = ""; 37 | codeAndDomain = url.split(".app.100ms.live"); 38 | code = codeAndDomain[1]; 39 | if (code.contains("meeting")) { 40 | code = code.split("/meeting/")[1]; 41 | } else { 42 | code = code.split("/preview/")[1]; 43 | } 44 | return code; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /lib/services/sdk_initializer.dart: -------------------------------------------------------------------------------- 1 | //Package imports 2 | import 'package:hmssdk_flutter/hmssdk_flutter.dart'; 3 | 4 | class SdkInitializer { 5 | static HMSSDK hmssdk = HMSSDK( 6 | hmsTrackSetting: HMSTrackSetting( 7 | audioTrackSetting: HMSAudioTrackSetting( 8 | trackInitialState: HMSTrackInitState.MUTED))); 9 | } 10 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | async: 5 | dependency: transitive 6 | description: 7 | name: async 8 | sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" 9 | url: "https://pub.dev" 10 | source: hosted 11 | version: "2.11.0" 12 | boolean_selector: 13 | dependency: transitive 14 | description: 15 | name: boolean_selector 16 | sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" 17 | url: "https://pub.dev" 18 | source: hosted 19 | version: "2.1.1" 20 | characters: 21 | dependency: transitive 22 | description: 23 | name: characters 24 | sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" 25 | url: "https://pub.dev" 26 | source: hosted 27 | version: "1.3.0" 28 | clock: 29 | dependency: transitive 30 | description: 31 | name: clock 32 | sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf 33 | url: "https://pub.dev" 34 | source: hosted 35 | version: "1.1.1" 36 | collection: 37 | dependency: transitive 38 | description: 39 | name: collection 40 | sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687 41 | url: "https://pub.dev" 42 | source: hosted 43 | version: "1.17.2" 44 | cupertino_icons: 45 | dependency: "direct main" 46 | description: 47 | name: cupertino_icons 48 | sha256: caac504f942f41dfadcf45229ce8c47065b93919a12739f20d6173a883c5ec73 49 | url: "https://pub.dev" 50 | source: hosted 51 | version: "1.0.2" 52 | draggable_widget: 53 | dependency: "direct main" 54 | description: 55 | name: draggable_widget 56 | sha256: d7f6b1eb9cb79b724b02dc2ac699f82d1ab20b99920b8b1f25812054d72ca803 57 | url: "https://pub.dev" 58 | source: hosted 59 | version: "2.0.0" 60 | fake_async: 61 | dependency: transitive 62 | description: 63 | name: fake_async 64 | sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" 65 | url: "https://pub.dev" 66 | source: hosted 67 | version: "1.3.1" 68 | flutter: 69 | dependency: "direct main" 70 | description: flutter 71 | source: sdk 72 | version: "0.0.0" 73 | flutter_lints: 74 | dependency: "direct dev" 75 | description: 76 | name: flutter_lints 77 | sha256: b543301ad291598523947dc534aaddc5aaad597b709d2426d3a0e0d44c5cb493 78 | url: "https://pub.dev" 79 | source: hosted 80 | version: "1.0.4" 81 | flutter_test: 82 | dependency: "direct dev" 83 | description: flutter 84 | source: sdk 85 | version: "0.0.0" 86 | hmssdk_flutter: 87 | dependency: "direct main" 88 | description: 89 | name: hmssdk_flutter 90 | sha256: efc257a82187a9a5d675842650fa6ff0ff56487585dd24d38ac4237f492a21b5 91 | url: "https://pub.dev" 92 | source: hosted 93 | version: "1.9.14" 94 | http: 95 | dependency: "direct main" 96 | description: 97 | name: http 98 | sha256: "2ed163531e071c2c6b7c659635112f24cb64ecbebf6af46b550d536c0b1aa112" 99 | url: "https://pub.dev" 100 | source: hosted 101 | version: "0.13.4" 102 | http_parser: 103 | dependency: transitive 104 | description: 105 | name: http_parser 106 | sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" 107 | url: "https://pub.dev" 108 | source: hosted 109 | version: "4.0.2" 110 | lints: 111 | dependency: transitive 112 | description: 113 | name: lints 114 | sha256: a2c3d198cb5ea2e179926622d433331d8b58374ab8f29cdda6e863bd62fd369c 115 | url: "https://pub.dev" 116 | source: hosted 117 | version: "1.0.1" 118 | matcher: 119 | dependency: transitive 120 | description: 121 | name: matcher 122 | sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" 123 | url: "https://pub.dev" 124 | source: hosted 125 | version: "0.12.16" 126 | material_color_utilities: 127 | dependency: transitive 128 | description: 129 | name: material_color_utilities 130 | sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" 131 | url: "https://pub.dev" 132 | source: hosted 133 | version: "0.5.0" 134 | meta: 135 | dependency: transitive 136 | description: 137 | name: meta 138 | sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3" 139 | url: "https://pub.dev" 140 | source: hosted 141 | version: "1.9.1" 142 | nested: 143 | dependency: transitive 144 | description: 145 | name: nested 146 | sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" 147 | url: "https://pub.dev" 148 | source: hosted 149 | version: "1.0.0" 150 | path: 151 | dependency: transitive 152 | description: 153 | name: path 154 | sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" 155 | url: "https://pub.dev" 156 | source: hosted 157 | version: "1.8.3" 158 | permission_handler: 159 | dependency: "direct main" 160 | description: 161 | name: permission_handler 162 | sha256: ad65ba9af42a3d067203641de3fd9f547ded1410bad3b84400c2b4899faede70 163 | url: "https://pub.dev" 164 | source: hosted 165 | version: "11.0.0" 166 | permission_handler_android: 167 | dependency: transitive 168 | description: 169 | name: permission_handler_android 170 | sha256: f23cfe9af0d49c6b9fd8a8b09f7b3301ca7e346204939b5afef4404d36d2608f 171 | url: "https://pub.dev" 172 | source: hosted 173 | version: "11.0.1" 174 | permission_handler_apple: 175 | dependency: transitive 176 | description: 177 | name: permission_handler_apple 178 | sha256: "99e220bce3f8877c78e4ace901082fb29fa1b4ebde529ad0932d8d664b34f3f5" 179 | url: "https://pub.dev" 180 | source: hosted 181 | version: "9.1.4" 182 | permission_handler_platform_interface: 183 | dependency: transitive 184 | description: 185 | name: permission_handler_platform_interface 186 | sha256: f2343e9fa9c22ae4fd92d4732755bfe452214e7189afcc097380950cf567b4b2 187 | url: "https://pub.dev" 188 | source: hosted 189 | version: "3.11.5" 190 | permission_handler_windows: 191 | dependency: transitive 192 | description: 193 | name: permission_handler_windows 194 | sha256: cc074aace208760f1eee6aa4fae766b45d947df85bc831cde77009cdb4720098 195 | url: "https://pub.dev" 196 | source: hosted 197 | version: "0.1.3" 198 | plugin_platform_interface: 199 | dependency: transitive 200 | description: 201 | name: plugin_platform_interface 202 | sha256: da3fdfeccc4d4ff2da8f8c556704c08f912542c5fb3cf2233ed75372384a034d 203 | url: "https://pub.dev" 204 | source: hosted 205 | version: "2.1.6" 206 | provider: 207 | dependency: "direct main" 208 | description: 209 | name: provider 210 | sha256: "7896193cf752c40ba7f7732a95264319a787871e5d628225357f5c909182bc06" 211 | url: "https://pub.dev" 212 | source: hosted 213 | version: "6.0.2" 214 | sky_engine: 215 | dependency: transitive 216 | description: flutter 217 | source: sdk 218 | version: "0.0.99" 219 | source_span: 220 | dependency: transitive 221 | description: 222 | name: source_span 223 | sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" 224 | url: "https://pub.dev" 225 | source: hosted 226 | version: "1.10.0" 227 | stack_trace: 228 | dependency: transitive 229 | description: 230 | name: stack_trace 231 | sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5 232 | url: "https://pub.dev" 233 | source: hosted 234 | version: "1.11.0" 235 | stream_channel: 236 | dependency: transitive 237 | description: 238 | name: stream_channel 239 | sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8" 240 | url: "https://pub.dev" 241 | source: hosted 242 | version: "2.1.1" 243 | string_scanner: 244 | dependency: transitive 245 | description: 246 | name: string_scanner 247 | sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" 248 | url: "https://pub.dev" 249 | source: hosted 250 | version: "1.2.0" 251 | term_glyph: 252 | dependency: transitive 253 | description: 254 | name: term_glyph 255 | sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 256 | url: "https://pub.dev" 257 | source: hosted 258 | version: "1.2.1" 259 | test_api: 260 | dependency: transitive 261 | description: 262 | name: test_api 263 | sha256: "75760ffd7786fffdfb9597c35c5b27eaeec82be8edfb6d71d32651128ed7aab8" 264 | url: "https://pub.dev" 265 | source: hosted 266 | version: "0.6.0" 267 | typed_data: 268 | dependency: transitive 269 | description: 270 | name: typed_data 271 | sha256: "26f87ade979c47a150c9eaab93ccd2bebe70a27dc0b4b29517f2904f04eb11a5" 272 | url: "https://pub.dev" 273 | source: hosted 274 | version: "1.3.1" 275 | vector_math: 276 | dependency: transitive 277 | description: 278 | name: vector_math 279 | sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" 280 | url: "https://pub.dev" 281 | source: hosted 282 | version: "2.1.4" 283 | web: 284 | dependency: transitive 285 | description: 286 | name: web 287 | sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10 288 | url: "https://pub.dev" 289 | source: hosted 290 | version: "0.1.4-beta" 291 | sdks: 292 | dart: ">=3.1.0-185.0.dev <4.0.0" 293 | flutter: ">=2.10.0" 294 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: google_meet 2 | description: Google Meet clone made in Flutter using 100ms. 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.12.0 <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 | hmssdk_flutter: 1.9.14 37 | permission_handler: 38 | http: 0.13.4 39 | provider: 6.0.2 40 | draggable_widget: 2.0.0 41 | 42 | # The following adds the Cupertino Icons font to your application. 43 | # Use with the CupertinoIcons class for iOS style icons. 44 | cupertino_icons: 1.0.2 45 | 46 | dev_dependencies: 47 | flutter_test: 48 | sdk: flutter 49 | 50 | # The "flutter_lints" package below contains a set of recommended lints to 51 | # encourage good coding practices. The lint set provided by the package is 52 | # activated in the `analysis_options.yaml` file located at the root of your 53 | # package. See that file for information about deactivating specific lint 54 | # rules and activating additional ones. 55 | flutter_lints: ^1.0.0 56 | 57 | # For information on the generic Dart part of this file, see the 58 | # following page: https://dart.dev/tools/pub/pubspec 59 | 60 | # The following section is specific to Flutter. 61 | flutter: 62 | 63 | # The following line ensures that the Material Icons font is 64 | # included with your application, so that you can use the icons in 65 | # the material Icons class. 66 | uses-material-design: true 67 | 68 | # To add assets to your application, add an assets section, like this: 69 | # assets: 70 | # - images/a_dot_burr.jpeg 71 | # - images/a_dot_ham.jpeg 72 | 73 | # An image asset can refer to one or more resolution-specific "variants", see 74 | # https://flutter.dev/assets-and-images/#resolution-aware. 75 | 76 | # For details regarding adding assets from package dependencies, see 77 | # https://flutter.dev/assets-and-images/#from-packages 78 | 79 | # To add custom fonts to your application, add a fonts section here, 80 | # in this "flutter" section. Each entry in this list should have a 81 | # "family" key with the font family name, and a "fonts" key with a 82 | # list giving the asset and other descriptors for the font. For 83 | # example: 84 | # fonts: 85 | # - family: Schyler 86 | # fonts: 87 | # - asset: fonts/Schyler-Regular.ttf 88 | # - asset: fonts/Schyler-Italic.ttf 89 | # style: italic 90 | # - family: Trajan Pro 91 | # fonts: 92 | # - asset: fonts/TrajanPro.ttf 93 | # - asset: fonts/TrajanPro_Bold.ttf 94 | # weight: 700 95 | # 96 | # For details regarding fonts from package dependencies, 97 | # see https://flutter.dev/custom-fonts/#from-packages 98 | -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter widget test. 2 | // 3 | // To perform an interaction with a widget in your test, use the WidgetTester 4 | // utility that Flutter provides. For example, you can send tap and scroll 5 | // gestures. You can also use WidgetTester to find child widgets in the widget 6 | // tree, read text, and verify that the values of widget properties are correct. 7 | 8 | import 'package:flutter/material.dart'; 9 | import 'package:flutter_test/flutter_test.dart'; 10 | 11 | import 'package:google_meet/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(const MyApp()); 17 | 18 | // Verify that our counter starts at 0. 19 | expect(find.text('0'), findsOneWidget); 20 | expect(find.text('1'), findsNothing); 21 | 22 | // Tap the '+' icon and trigger a frame. 23 | await tester.tap(find.byIcon(Icons.add)); 24 | await tester.pump(); 25 | 26 | // Verify that our counter has incremented. 27 | expect(find.text('0'), findsNothing); 28 | expect(find.text('1'), findsOneWidget); 29 | }); 30 | } 31 | --------------------------------------------------------------------------------