├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_getx_template │ │ │ │ └── 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 └── settings_aar.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 └── src │ ├── app.dart │ ├── lang │ ├── en_US.dart │ ├── translation_service.dart │ └── vi_VN.dart │ ├── pages │ └── home │ │ ├── home_page.dart │ │ └── widgets │ │ └── remote_view_card.dart │ ├── public │ ├── constant.dart │ └── styles.dart │ ├── repository │ ├── base_repository.dart │ ├── local │ │ └── user_local.dart │ └── remote │ │ ├── api_gateway.dart │ │ └── authentication_repository.dart │ ├── routes │ ├── app_pages.dart │ └── app_routes.dart │ ├── services │ ├── socket.dart │ └── socket_emit.dart │ ├── shared │ └── logger │ │ └── logger_utils.dart │ └── theme │ ├── theme_service.dart │ └── themes.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── nodejs_sfus_server ├── .gitignore ├── index.js ├── package.json ├── public │ ├── index.html │ ├── index.js │ ├── viewer.html │ └── viewer.js ├── server.js └── yarn.lock ├── pubspec.lock ├── pubspec.yaml ├── run.sh ├── screenshots └── result.jpg ├── test └── widget_test.dart └── web ├── favicon.png ├── icons ├── Icon-192.png └── Icon-512.png ├── index.html └── manifest.json /.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 | -------------------------------------------------------------------------------- /.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: b0a22998593fc605c723dee8ff4d9315c32cfe2c 8 | channel: beta 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Dao Hong Vinh 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > :warning: **Warning:** This repository is no longer supported. An alternative project is available [here](https://github.com/lambiengcode/waterbus). 2 | 3 | ## Video Call Flutter App (SFUs Architecture) 📱 4 | 5 | 6 | 7 | ### Description: 8 | - This is sandbox video call application using Flutter and WebRTC. 9 | 10 | ### SFUs – Selective Forwarding Units 11 | 12 | 13 | - In this case, each participant still sends just one set of video and audio up to the SFU, like our MCU. However, the SFU doesn’t make any composite streams. Rather, it sends a different stream down for each user. In this example, 4 streams are received by each participant, since there are 5 people in the call. 14 | - The good thing about this is it’s still less work on each participant than a mesh peer-to-peer model. This is because each participant is only establishing one connection (to the SFU) instead of to all other participants to upload their own video/audio. But, it can be more bandwidth intensive than the MCU because the participants each receive multiple streams downloaded. 15 | - The nice thing for participants about receiving separate streams is that they can do whatever they want with them. They are not bound to layout or UI decisions of the MCU. If you have been in a conference call where the conferencing tool allowed you to choose a different layout (ie, which speaker’s video will be most prominent, or how you want to arrange the videos on the screen), then that was using an SFU. 16 | - Media servers which implement an SFU architecture include Jitsi and Janus. 17 | 18 | ### Quick start 19 | 20 | #### Start WebRTC SFUs Server 21 | - Step 1: open **nodejs_sfus_server** 22 | - Step 2: run **yarn** or **npm i** for install packages 23 | - Step 3: run **yarn start** or **npm start** for start server 24 | - Server is running on port 5000, you can change port in **server.js** 25 | 26 | #### Mobile Application 27 | - Step 1: run **flutter pub get** for install flutter pub 28 | - Step 2: replace socket url by ip and port your server in **flutter_webrtc_sfus/lib/src/pages/home/home_page.dart**, line **79** 29 | - Step 3: run app and auto connect in call 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 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply plugin: 'kotlin-android' 26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 27 | 28 | android { 29 | compileSdkVersion 30 30 | 31 | sourceSets { 32 | main.java.srcDirs += 'src/main/kotlin' 33 | } 34 | 35 | defaultConfig { 36 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 37 | applicationId "com.example.get_boilerplate" 38 | minSdkVersion 21 39 | targetSdkVersion 30 40 | versionCode flutterVersionCode.toInteger() 41 | versionName flutterVersionName 42 | } 43 | 44 | buildTypes { 45 | release { 46 | // TODO: Add your own signing config for the release build. 47 | // Signing with the debug keys for now, so `flutter run --release` works. 48 | signingConfig signingConfigs.debug 49 | } 50 | } 51 | } 52 | 53 | flutter { 54 | source '../..' 55 | } 56 | 57 | dependencies { 58 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 59 | } 60 | -------------------------------------------------------------------------------- /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 | 18 | 25 | 29 | 33 | 38 | 42 | 43 | 44 | 45 | 46 | 47 | 49 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_getx_template/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.get_boilerplate 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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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.3.50' 3 | repositories { 4 | google() 5 | jcenter() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:4.1.0' 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | } 12 | } 13 | 14 | allprojects { 15 | repositories { 16 | google() 17 | jcenter() 18 | } 19 | } 20 | 21 | rootProject.buildDir = '../build' 22 | subprojects { 23 | project.buildDir = "${rootProject.buildDir}/${project.name}" 24 | } 25 | subprojects { 26 | project.evaluationDependsOn(':app') 27 | } 28 | 29 | task clean(type: Delete) { 30 | delete rootProject.buildDir 31 | } 32 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.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 | -------------------------------------------------------------------------------- /android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /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/app.flx 22 | Flutter/app.zip 23 | Flutter/flutter_assets/ 24 | Flutter/flutter_export_environment.sh 25 | ServiceDefinitions.json 26 | Runner/GeneratedPluginRegistrant.* 27 | 28 | # Exceptions to above rules. 29 | !default.mode1v3 30 | !default.mode2v3 31 | !default.pbxuser 32 | !default.perspectivev3 33 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 8.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "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, '9.0' 3 | 4 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency. 5 | ENV['COCOAPODS_DISABLE_STATS'] = 'true' 6 | 7 | project 'Runner', { 8 | 'Debug' => :debug, 9 | 'Profile' => :release, 10 | 'Release' => :release, 11 | } 12 | 13 | def flutter_root 14 | generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) 15 | unless File.exist?(generated_xcode_build_settings_path) 16 | raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" 17 | end 18 | 19 | File.foreach(generated_xcode_build_settings_path) do |line| 20 | matches = line.match(/FLUTTER_ROOT\=(.*)/) 21 | return matches[1].strip if matches 22 | end 23 | raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" 24 | end 25 | 26 | require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) 27 | 28 | flutter_ios_podfile_setup 29 | 30 | target 'Runner' do 31 | use_frameworks! 32 | use_modular_headers! 33 | 34 | flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) 35 | end 36 | 37 | post_install do |installer| 38 | installer.pods_project.targets.each do |target| 39 | flutter_additional_ios_build_settings(target) 40 | end 41 | end 42 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Flutter (1.0.0) 3 | - integration_test (0.0.1): 4 | - Flutter 5 | - path_provider (0.0.1): 6 | - Flutter 7 | 8 | DEPENDENCIES: 9 | - Flutter (from `Flutter`) 10 | - integration_test (from `.symlinks/plugins/integration_test/ios`) 11 | - path_provider (from `.symlinks/plugins/path_provider/ios`) 12 | 13 | EXTERNAL SOURCES: 14 | Flutter: 15 | :path: Flutter 16 | integration_test: 17 | :path: ".symlinks/plugins/integration_test/ios" 18 | path_provider: 19 | :path: ".symlinks/plugins/path_provider/ios" 20 | 21 | SPEC CHECKSUMS: 22 | Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c 23 | integration_test: 5ed24a436eb7ec17b6a13046e9bf7ca4a404e59e 24 | path_provider: abfe2b5c733d04e238b0d8691db0cfd63a27a93c 25 | 26 | PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c 27 | 28 | COCOAPODS: 1.10.1 29 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0433D889CD2CFF7EFF1E0BD2 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A8EF73C5B5820A4613937247 /* Pods_Runner.framework */; }; 11 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 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 | 0D75E86EF1FF0406CADEAFCA /* 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 = ""; }; 34 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 35 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 36 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 37 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 38 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 39 | 78769DC6C719F96EE15BC990 /* 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 = ""; }; 40 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 41 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 42 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 43 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 44 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 45 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 46 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 47 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 48 | A8EF73C5B5820A4613937247 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | E5EE97A855A726AAAE1AFF9E /* 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 = ""; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | 0433D889CD2CFF7EFF1E0BD2 /* Pods_Runner.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | /* End PBXFrameworksBuildPhase section */ 62 | 63 | /* Begin PBXGroup section */ 64 | 9740EEB11CF90186004384FC /* Flutter */ = { 65 | isa = PBXGroup; 66 | children = ( 67 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 68 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 69 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 70 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 71 | ); 72 | name = Flutter; 73 | sourceTree = ""; 74 | }; 75 | 97C146E51CF9000F007C117D = { 76 | isa = PBXGroup; 77 | children = ( 78 | 9740EEB11CF90186004384FC /* Flutter */, 79 | 97C146F01CF9000F007C117D /* Runner */, 80 | 97C146EF1CF9000F007C117D /* Products */, 81 | DB9FAED1A51CDA805D37039D /* Pods */, 82 | B8F9A8ACFD2E109C6DFBAEAB /* Frameworks */, 83 | ); 84 | sourceTree = ""; 85 | }; 86 | 97C146EF1CF9000F007C117D /* Products */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 97C146EE1CF9000F007C117D /* Runner.app */, 90 | ); 91 | name = Products; 92 | sourceTree = ""; 93 | }; 94 | 97C146F01CF9000F007C117D /* Runner */ = { 95 | isa = PBXGroup; 96 | children = ( 97 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 98 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 99 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 100 | 97C147021CF9000F007C117D /* Info.plist */, 101 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 102 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 103 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 104 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 105 | ); 106 | path = Runner; 107 | sourceTree = ""; 108 | }; 109 | B8F9A8ACFD2E109C6DFBAEAB /* Frameworks */ = { 110 | isa = PBXGroup; 111 | children = ( 112 | A8EF73C5B5820A4613937247 /* Pods_Runner.framework */, 113 | ); 114 | name = Frameworks; 115 | sourceTree = ""; 116 | }; 117 | DB9FAED1A51CDA805D37039D /* Pods */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | 0D75E86EF1FF0406CADEAFCA /* Pods-Runner.debug.xcconfig */, 121 | 78769DC6C719F96EE15BC990 /* Pods-Runner.release.xcconfig */, 122 | E5EE97A855A726AAAE1AFF9E /* Pods-Runner.profile.xcconfig */, 123 | ); 124 | name = Pods; 125 | path = Pods; 126 | sourceTree = ""; 127 | }; 128 | /* End PBXGroup section */ 129 | 130 | /* Begin PBXNativeTarget section */ 131 | 97C146ED1CF9000F007C117D /* Runner */ = { 132 | isa = PBXNativeTarget; 133 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 134 | buildPhases = ( 135 | 3E73904D974D12C351244305 /* [CP] Check Pods Manifest.lock */, 136 | 9740EEB61CF901F6004384FC /* Run Script */, 137 | 97C146EA1CF9000F007C117D /* Sources */, 138 | 97C146EB1CF9000F007C117D /* Frameworks */, 139 | 97C146EC1CF9000F007C117D /* Resources */, 140 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 141 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 142 | 9BCA38C10E33F3A685EC4E16 /* [CP] Embed Pods Frameworks */, 143 | ); 144 | buildRules = ( 145 | ); 146 | dependencies = ( 147 | ); 148 | name = Runner; 149 | productName = Runner; 150 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 151 | productType = "com.apple.product-type.application"; 152 | }; 153 | /* End PBXNativeTarget section */ 154 | 155 | /* Begin PBXProject section */ 156 | 97C146E61CF9000F007C117D /* Project object */ = { 157 | isa = PBXProject; 158 | attributes = { 159 | LastUpgradeCheck = 1020; 160 | ORGANIZATIONNAME = ""; 161 | TargetAttributes = { 162 | 97C146ED1CF9000F007C117D = { 163 | CreatedOnToolsVersion = 7.3.1; 164 | LastSwiftMigration = 1100; 165 | }; 166 | }; 167 | }; 168 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 169 | compatibilityVersion = "Xcode 9.3"; 170 | developmentRegion = en; 171 | hasScannedForEncodings = 0; 172 | knownRegions = ( 173 | en, 174 | Base, 175 | ); 176 | mainGroup = 97C146E51CF9000F007C117D; 177 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 178 | projectDirPath = ""; 179 | projectRoot = ""; 180 | targets = ( 181 | 97C146ED1CF9000F007C117D /* Runner */, 182 | ); 183 | }; 184 | /* End PBXProject section */ 185 | 186 | /* Begin PBXResourcesBuildPhase section */ 187 | 97C146EC1CF9000F007C117D /* Resources */ = { 188 | isa = PBXResourcesBuildPhase; 189 | buildActionMask = 2147483647; 190 | files = ( 191 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 192 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 193 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 194 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 195 | ); 196 | runOnlyForDeploymentPostprocessing = 0; 197 | }; 198 | /* End PBXResourcesBuildPhase section */ 199 | 200 | /* Begin PBXShellScriptBuildPhase section */ 201 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 202 | isa = PBXShellScriptBuildPhase; 203 | buildActionMask = 2147483647; 204 | files = ( 205 | ); 206 | inputPaths = ( 207 | ); 208 | name = "Thin Binary"; 209 | outputPaths = ( 210 | ); 211 | runOnlyForDeploymentPostprocessing = 0; 212 | shellPath = /bin/sh; 213 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 214 | }; 215 | 3E73904D974D12C351244305 /* [CP] Check Pods Manifest.lock */ = { 216 | isa = PBXShellScriptBuildPhase; 217 | buildActionMask = 2147483647; 218 | files = ( 219 | ); 220 | inputFileListPaths = ( 221 | ); 222 | inputPaths = ( 223 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 224 | "${PODS_ROOT}/Manifest.lock", 225 | ); 226 | name = "[CP] Check Pods Manifest.lock"; 227 | outputFileListPaths = ( 228 | ); 229 | outputPaths = ( 230 | "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", 231 | ); 232 | runOnlyForDeploymentPostprocessing = 0; 233 | shellPath = /bin/sh; 234 | 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"; 235 | showEnvVarsInLog = 0; 236 | }; 237 | 9740EEB61CF901F6004384FC /* Run Script */ = { 238 | isa = PBXShellScriptBuildPhase; 239 | buildActionMask = 2147483647; 240 | files = ( 241 | ); 242 | inputPaths = ( 243 | ); 244 | name = "Run Script"; 245 | outputPaths = ( 246 | ); 247 | runOnlyForDeploymentPostprocessing = 0; 248 | shellPath = /bin/sh; 249 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 250 | }; 251 | 9BCA38C10E33F3A685EC4E16 /* [CP] Embed Pods Frameworks */ = { 252 | isa = PBXShellScriptBuildPhase; 253 | buildActionMask = 2147483647; 254 | files = ( 255 | ); 256 | inputFileListPaths = ( 257 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", 258 | ); 259 | name = "[CP] Embed Pods Frameworks"; 260 | outputFileListPaths = ( 261 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", 262 | ); 263 | runOnlyForDeploymentPostprocessing = 0; 264 | shellPath = /bin/sh; 265 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; 266 | showEnvVarsInLog = 0; 267 | }; 268 | /* End PBXShellScriptBuildPhase section */ 269 | 270 | /* Begin PBXSourcesBuildPhase section */ 271 | 97C146EA1CF9000F007C117D /* Sources */ = { 272 | isa = PBXSourcesBuildPhase; 273 | buildActionMask = 2147483647; 274 | files = ( 275 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 276 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 277 | ); 278 | runOnlyForDeploymentPostprocessing = 0; 279 | }; 280 | /* End PBXSourcesBuildPhase section */ 281 | 282 | /* Begin PBXVariantGroup section */ 283 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 284 | isa = PBXVariantGroup; 285 | children = ( 286 | 97C146FB1CF9000F007C117D /* Base */, 287 | ); 288 | name = Main.storyboard; 289 | sourceTree = ""; 290 | }; 291 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 292 | isa = PBXVariantGroup; 293 | children = ( 294 | 97C147001CF9000F007C117D /* Base */, 295 | ); 296 | name = LaunchScreen.storyboard; 297 | sourceTree = ""; 298 | }; 299 | /* End PBXVariantGroup section */ 300 | 301 | /* Begin XCBuildConfiguration section */ 302 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 303 | isa = XCBuildConfiguration; 304 | buildSettings = { 305 | ALWAYS_SEARCH_USER_PATHS = NO; 306 | CLANG_ANALYZER_NONNULL = YES; 307 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 308 | CLANG_CXX_LIBRARY = "libc++"; 309 | CLANG_ENABLE_MODULES = YES; 310 | CLANG_ENABLE_OBJC_ARC = YES; 311 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 312 | CLANG_WARN_BOOL_CONVERSION = YES; 313 | CLANG_WARN_COMMA = YES; 314 | CLANG_WARN_CONSTANT_CONVERSION = YES; 315 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 316 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 317 | CLANG_WARN_EMPTY_BODY = YES; 318 | CLANG_WARN_ENUM_CONVERSION = YES; 319 | CLANG_WARN_INFINITE_RECURSION = YES; 320 | CLANG_WARN_INT_CONVERSION = YES; 321 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 322 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 323 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 324 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 325 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 326 | CLANG_WARN_STRICT_PROTOTYPES = YES; 327 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 328 | CLANG_WARN_UNREACHABLE_CODE = YES; 329 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 330 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 331 | COPY_PHASE_STRIP = NO; 332 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 333 | ENABLE_NS_ASSERTIONS = NO; 334 | ENABLE_STRICT_OBJC_MSGSEND = YES; 335 | GCC_C_LANGUAGE_STANDARD = gnu99; 336 | GCC_NO_COMMON_BLOCKS = YES; 337 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 338 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 339 | GCC_WARN_UNDECLARED_SELECTOR = YES; 340 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 341 | GCC_WARN_UNUSED_FUNCTION = YES; 342 | GCC_WARN_UNUSED_VARIABLE = YES; 343 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 344 | MTL_ENABLE_DEBUG_INFO = NO; 345 | SDKROOT = iphoneos; 346 | SUPPORTED_PLATFORMS = iphoneos; 347 | TARGETED_DEVICE_FAMILY = "1,2"; 348 | VALIDATE_PRODUCT = YES; 349 | }; 350 | name = Profile; 351 | }; 352 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 353 | isa = XCBuildConfiguration; 354 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 355 | buildSettings = { 356 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 357 | CLANG_ENABLE_MODULES = YES; 358 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 359 | ENABLE_BITCODE = NO; 360 | INFOPLIST_FILE = Runner/Info.plist; 361 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 362 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterGetxTemplate; 363 | PRODUCT_NAME = "$(TARGET_NAME)"; 364 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 365 | SWIFT_VERSION = 5.0; 366 | VERSIONING_SYSTEM = "apple-generic"; 367 | }; 368 | name = Profile; 369 | }; 370 | 97C147031CF9000F007C117D /* Debug */ = { 371 | isa = XCBuildConfiguration; 372 | buildSettings = { 373 | ALWAYS_SEARCH_USER_PATHS = NO; 374 | CLANG_ANALYZER_NONNULL = YES; 375 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 376 | CLANG_CXX_LIBRARY = "libc++"; 377 | CLANG_ENABLE_MODULES = YES; 378 | CLANG_ENABLE_OBJC_ARC = YES; 379 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 380 | CLANG_WARN_BOOL_CONVERSION = YES; 381 | CLANG_WARN_COMMA = YES; 382 | CLANG_WARN_CONSTANT_CONVERSION = YES; 383 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 384 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 385 | CLANG_WARN_EMPTY_BODY = YES; 386 | CLANG_WARN_ENUM_CONVERSION = YES; 387 | CLANG_WARN_INFINITE_RECURSION = YES; 388 | CLANG_WARN_INT_CONVERSION = YES; 389 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 390 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 391 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 392 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 393 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 394 | CLANG_WARN_STRICT_PROTOTYPES = YES; 395 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 396 | CLANG_WARN_UNREACHABLE_CODE = YES; 397 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 398 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 399 | COPY_PHASE_STRIP = NO; 400 | DEBUG_INFORMATION_FORMAT = dwarf; 401 | ENABLE_STRICT_OBJC_MSGSEND = YES; 402 | ENABLE_TESTABILITY = YES; 403 | GCC_C_LANGUAGE_STANDARD = gnu99; 404 | GCC_DYNAMIC_NO_PIC = NO; 405 | GCC_NO_COMMON_BLOCKS = YES; 406 | GCC_OPTIMIZATION_LEVEL = 0; 407 | GCC_PREPROCESSOR_DEFINITIONS = ( 408 | "DEBUG=1", 409 | "$(inherited)", 410 | ); 411 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 412 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 413 | GCC_WARN_UNDECLARED_SELECTOR = YES; 414 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 415 | GCC_WARN_UNUSED_FUNCTION = YES; 416 | GCC_WARN_UNUSED_VARIABLE = YES; 417 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 418 | MTL_ENABLE_DEBUG_INFO = YES; 419 | ONLY_ACTIVE_ARCH = YES; 420 | SDKROOT = iphoneos; 421 | TARGETED_DEVICE_FAMILY = "1,2"; 422 | }; 423 | name = Debug; 424 | }; 425 | 97C147041CF9000F007C117D /* Release */ = { 426 | isa = XCBuildConfiguration; 427 | buildSettings = { 428 | ALWAYS_SEARCH_USER_PATHS = NO; 429 | CLANG_ANALYZER_NONNULL = YES; 430 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 431 | CLANG_CXX_LIBRARY = "libc++"; 432 | CLANG_ENABLE_MODULES = YES; 433 | CLANG_ENABLE_OBJC_ARC = YES; 434 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 435 | CLANG_WARN_BOOL_CONVERSION = YES; 436 | CLANG_WARN_COMMA = YES; 437 | CLANG_WARN_CONSTANT_CONVERSION = YES; 438 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 439 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 440 | CLANG_WARN_EMPTY_BODY = YES; 441 | CLANG_WARN_ENUM_CONVERSION = YES; 442 | CLANG_WARN_INFINITE_RECURSION = YES; 443 | CLANG_WARN_INT_CONVERSION = YES; 444 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 445 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 446 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 447 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 448 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 449 | CLANG_WARN_STRICT_PROTOTYPES = YES; 450 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 451 | CLANG_WARN_UNREACHABLE_CODE = YES; 452 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 453 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 454 | COPY_PHASE_STRIP = NO; 455 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 456 | ENABLE_NS_ASSERTIONS = NO; 457 | ENABLE_STRICT_OBJC_MSGSEND = YES; 458 | GCC_C_LANGUAGE_STANDARD = gnu99; 459 | GCC_NO_COMMON_BLOCKS = YES; 460 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 461 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 462 | GCC_WARN_UNDECLARED_SELECTOR = YES; 463 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 464 | GCC_WARN_UNUSED_FUNCTION = YES; 465 | GCC_WARN_UNUSED_VARIABLE = YES; 466 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 467 | MTL_ENABLE_DEBUG_INFO = NO; 468 | SDKROOT = iphoneos; 469 | SUPPORTED_PLATFORMS = iphoneos; 470 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 471 | TARGETED_DEVICE_FAMILY = "1,2"; 472 | VALIDATE_PRODUCT = YES; 473 | }; 474 | name = Release; 475 | }; 476 | 97C147061CF9000F007C117D /* Debug */ = { 477 | isa = XCBuildConfiguration; 478 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 479 | buildSettings = { 480 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 481 | CLANG_ENABLE_MODULES = YES; 482 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 483 | ENABLE_BITCODE = NO; 484 | INFOPLIST_FILE = Runner/Info.plist; 485 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 486 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterGetxTemplate; 487 | PRODUCT_NAME = "$(TARGET_NAME)"; 488 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 489 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 490 | SWIFT_VERSION = 5.0; 491 | VERSIONING_SYSTEM = "apple-generic"; 492 | }; 493 | name = Debug; 494 | }; 495 | 97C147071CF9000F007C117D /* Release */ = { 496 | isa = XCBuildConfiguration; 497 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 498 | buildSettings = { 499 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 500 | CLANG_ENABLE_MODULES = YES; 501 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 502 | ENABLE_BITCODE = NO; 503 | INFOPLIST_FILE = Runner/Info.plist; 504 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 505 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterGetxTemplate; 506 | PRODUCT_NAME = "$(TARGET_NAME)"; 507 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 508 | SWIFT_VERSION = 5.0; 509 | VERSIONING_SYSTEM = "apple-generic"; 510 | }; 511 | name = Release; 512 | }; 513 | /* End XCBuildConfiguration section */ 514 | 515 | /* Begin XCConfigurationList section */ 516 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 517 | isa = XCConfigurationList; 518 | buildConfigurations = ( 519 | 97C147031CF9000F007C117D /* Debug */, 520 | 97C147041CF9000F007C117D /* Release */, 521 | 249021D3217E4FDB00AE95B9 /* Profile */, 522 | ); 523 | defaultConfigurationIsVisible = 0; 524 | defaultConfigurationName = Release; 525 | }; 526 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 527 | isa = XCConfigurationList; 528 | buildConfigurations = ( 529 | 97C147061CF9000F007C117D /* Debug */, 530 | 97C147071CF9000F007C117D /* Release */, 531 | 249021D4217E4FDB00AE95B9 /* Profile */, 532 | ); 533 | defaultConfigurationIsVisible = 0; 534 | defaultConfigurationName = Release; 535 | }; 536 | /* End XCConfigurationList section */ 537 | }; 538 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 539 | } 540 | -------------------------------------------------------------------------------- /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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/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 | get_boilerplate 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | $(FLUTTER_BUILD_NAME) 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UISupportedInterfaceOrientations 30 | 31 | UIInterfaceOrientationPortrait 32 | UIInterfaceOrientationLandscapeLeft 33 | UIInterfaceOrientationLandscapeRight 34 | 35 | UISupportedInterfaceOrientations~ipad 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationPortraitUpsideDown 39 | UIInterfaceOrientationLandscapeLeft 40 | UIInterfaceOrientationLandscapeRight 41 | 42 | UIViewControllerBasedStatusBarAppearance 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:get_boilerplate/src/lang/translation_service.dart'; 3 | import 'package:get_boilerplate/src/routes/app_pages.dart'; 4 | import 'package:get_boilerplate/src/shared/logger/logger_utils.dart'; 5 | import 'package:get_boilerplate/src/theme/theme_service.dart'; 6 | import 'package:get_boilerplate/src/theme/themes.dart'; 7 | import 'package:get/get.dart'; 8 | import 'package:get_storage/get_storage.dart'; 9 | 10 | void main() async { 11 | await GetStorage.init(); 12 | runApp(GetMaterialApp( 13 | debugShowCheckedModeBanner: false, 14 | enableLog: true, 15 | logWriterCallback: Logger.write, 16 | initialRoute: AppPages.INITIAL, 17 | getPages: AppPages.routes, 18 | locale: TranslationService.locale, 19 | fallbackLocale: TranslationService.fallbackLocale, 20 | translations: TranslationService(), 21 | theme: Themes().lightTheme, 22 | darkTheme: Themes().darkTheme, 23 | themeMode: ThemeService().getThemeMode(), 24 | )); 25 | } 26 | -------------------------------------------------------------------------------- /lib/src/app.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter/services.dart'; 3 | import 'package:get_boilerplate/src/pages/home/home_page.dart'; 4 | 5 | class App extends StatefulWidget { 6 | @override 7 | State createState() => _AppState(); 8 | } 9 | 10 | class _AppState extends State with WidgetsBindingObserver { 11 | @override 12 | void initState() { 13 | SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle( 14 | statusBarColor: Colors.transparent, 15 | statusBarBrightness: Brightness.light, 16 | statusBarIconBrightness: Brightness.light, 17 | )); 18 | WidgetsBinding.instance.addObserver(this); 19 | SystemChrome.setPreferredOrientations([ 20 | DeviceOrientation.portraitDown, 21 | DeviceOrientation.portraitUp, 22 | ]); 23 | super.initState(); 24 | } 25 | 26 | @override 27 | Widget build(BuildContext context) { 28 | return HomePage(); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /lib/src/lang/en_US.dart: -------------------------------------------------------------------------------- 1 | const Map en_US = { 2 | 'helloWord': 'Hello World', 3 | }; 4 | -------------------------------------------------------------------------------- /lib/src/lang/translation_service.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:get/get.dart'; 3 | 4 | import 'en_US.dart'; 5 | import 'vi_VN.dart'; 6 | 7 | class TranslationService extends Translations { 8 | static final locale = Get.deviceLocale; 9 | static final fallbackLocale = Locale('en', 'US'); 10 | @override 11 | Map> get keys => { 12 | 'en_US': en_US, 13 | 'vi_VN': vi_VN, 14 | }; 15 | } 16 | -------------------------------------------------------------------------------- /lib/src/lang/vi_VN.dart: -------------------------------------------------------------------------------- 1 | const Map vi_VN = {}; 2 | -------------------------------------------------------------------------------- /lib/src/pages/home/home_page.dart: -------------------------------------------------------------------------------- 1 | import 'dart:async'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:flutter_webrtc/flutter_webrtc.dart' as RTC; 4 | import 'package:get_boilerplate/src/pages/home/widgets/remote_view_card.dart'; 5 | import 'package:get_boilerplate/src/services/socket_emit.dart'; 6 | import 'package:sdp_transform/sdp_transform.dart'; 7 | import 'package:socket_io_client/socket_io_client.dart'; 8 | 9 | Map configuration = { 10 | 'iceServers': [ 11 | {"urls": "stun:stun.jacknathan.tk:3478"}, 12 | { 13 | "urls": "turn:turn.jacknathan.tk:3478", 14 | "username": "ducanhzed", 15 | "credential": "1507200a", 16 | }, 17 | ], 18 | 'sdpSemantics': "unified-plan", 19 | }; 20 | 21 | Socket socket; 22 | 23 | class HomePage extends StatefulWidget { 24 | @override 25 | State createState() => _HomePageState(); 26 | } 27 | 28 | class _HomePageState extends State { 29 | List> socketIdRemotes = []; 30 | RTC.RTCPeerConnection _peerConnection; 31 | RTC.MediaStream _localStream; 32 | RTC.RTCVideoRenderer _localRenderer = RTC.RTCVideoRenderer(); 33 | bool _isSend = false; 34 | bool _isFrontCamera = true; 35 | 36 | @override 37 | void initState() { 38 | super.initState(); 39 | initRenderers(); 40 | _createPeerConnection().then( 41 | (pc) async { 42 | _peerConnection = pc; 43 | _localStream = await _getUserMedia(); 44 | _localStream.getTracks().forEach((track) { 45 | _peerConnection.addTrack(track, _localStream); 46 | }); 47 | }, 48 | ); 49 | connectAndListen(); 50 | } 51 | 52 | @override 53 | void dispose() { 54 | _peerConnection.close(); 55 | _localStream.dispose(); 56 | _localRenderer.dispose(); 57 | super.dispose(); 58 | } 59 | 60 | _switchCamera() async { 61 | if (_localStream != null) { 62 | bool value = await _localStream.getVideoTracks()[0].switchCamera(); 63 | while (value == _isFrontCamera) value = await _localStream.getVideoTracks()[0].switchCamera(); 64 | _isFrontCamera = value; 65 | } 66 | } 67 | 68 | _createPeerConnectionAnswer(socketId) async { 69 | RTC.RTCPeerConnection pc = await RTC.createPeerConnection(configuration); 70 | 71 | pc.onTrack = (track) { 72 | int index = socketIdRemotes.indexWhere((item) => item['socketId'] == socketId); 73 | socketIdRemotes[index]['stream'].srcObject = track.streams[0]; 74 | }; 75 | 76 | pc.onRenegotiationNeeded = () { 77 | _createOfferForReceive(socketId); 78 | }; 79 | 80 | return pc; 81 | } 82 | 83 | void connectAndListen() async { 84 | var urlConnectSocket = 'https://tugomu.tk'; 85 | socket = 86 | io(urlConnectSocket, OptionBuilder().enableForceNew().setTransports(['websocket']).build()); 87 | socket.connect(); 88 | socket.onConnect((_) { 89 | print('connected'); 90 | 91 | socket.on('NEW-PEER-SSC', (data) async { 92 | String newUser = data['socketId']; 93 | RTC.RTCVideoRenderer stream = new RTC.RTCVideoRenderer(); 94 | await stream.initialize(); 95 | socketIdRemotes.add({ 96 | 'socketId': newUser, 97 | 'pc': null, 98 | 'stream': stream, 99 | }); 100 | _createPeerConnectionAnswer(newUser).then((pcRemote) { 101 | socketIdRemotes[socketIdRemotes.length - 1]['pc'] = pcRemote; 102 | socketIdRemotes[socketIdRemotes.length - 1]['pc'].addTransceiver( 103 | kind: RTC.RTCRtpMediaType.RTCRtpMediaTypeVideo, 104 | init: RTC.RTCRtpTransceiverInit( 105 | direction: RTC.TransceiverDirection.RecvOnly, 106 | ), 107 | ); 108 | }); 109 | }); 110 | 111 | socket.on('SEND-SSC', (data) { 112 | List listSocketId = 113 | (data['sockets'] as List).map((e) => e.toString()).toList(); 114 | listSocketId.asMap().forEach((index, user) async { 115 | RTC.RTCVideoRenderer stream = new RTC.RTCVideoRenderer(); 116 | await stream.initialize(); 117 | setState(() { 118 | socketIdRemotes.add({ 119 | 'socketId': user, 120 | 'pc': null, 121 | 'stream': stream, 122 | }); 123 | }); 124 | _createPeerConnectionAnswer(user).then((pcRemote) { 125 | socketIdRemotes[index]['pc'] = pcRemote; 126 | socketIdRemotes[index]['pc'].addTransceiver( 127 | kind: RTC.RTCRtpMediaType.RTCRtpMediaTypeVideo, 128 | init: RTC.RTCRtpTransceiverInit( 129 | direction: RTC.TransceiverDirection.RecvOnly, 130 | ), 131 | ); 132 | }); 133 | }); 134 | 135 | _setRemoteDescription(data['sdp']); 136 | }); 137 | 138 | socket.on('RECEIVE-SSC', (data) { 139 | int index = socketIdRemotes.indexWhere( 140 | (element) => element['socketId'] == data['socketId'], 141 | ); 142 | if (index != -1) { 143 | _setRemoteDescriptionForReceive(index, data['sdp']); 144 | } 145 | }); 146 | }); 147 | 148 | socket.onDisconnect((_) => print('disconnect')); 149 | } 150 | 151 | initRenderers() async { 152 | await _localRenderer.initialize(); 153 | } 154 | 155 | void _setRemoteDescription(sdp) async { 156 | RTC.RTCSessionDescription description = new RTC.RTCSessionDescription(sdp, 'answer'); 157 | await _peerConnection.setRemoteDescription(description); 158 | } 159 | 160 | void _setRemoteDescriptionForReceive(indexSocket, sdp) async { 161 | RTC.RTCSessionDescription description = new RTC.RTCSessionDescription(sdp, 'answer'); 162 | await socketIdRemotes[indexSocket]['pc'].setRemoteDescription(description); 163 | } 164 | 165 | _createOffer() async { 166 | RTC.RTCSessionDescription description = await _peerConnection.createOffer({ 167 | 'offerToReceiveVideo': 1, 168 | 'offerToReceiveAudio': 1, 169 | }); 170 | _peerConnection.setLocalDescription(description); 171 | var session = parse(description.sdp.toString()); 172 | String sdp = write(session, null); 173 | await sendSdpForBroadcast(sdp); 174 | } 175 | 176 | _createOfferForReceive(String socketId) async { 177 | int index = socketIdRemotes.indexWhere((item) => item['socketId'] == socketId); 178 | if (index != -1) { 179 | RTC.RTCSessionDescription description = await socketIdRemotes[index]['pc'].createOffer({ 180 | 'offerToReceiveVideo': 1, 181 | 'offerToReceiveAudio': 1, 182 | }); 183 | socketIdRemotes[index]['pc'].setLocalDescription(description); 184 | var session = parse(description.sdp.toString()); 185 | String sdp = write(session, null); 186 | await sendSdpOnlyReceive(sdp, socketId); 187 | } 188 | } 189 | 190 | _createPeerConnection() async { 191 | final Map offerSdpConstraints = { 192 | "mandatory": { 193 | "OfferToReceiveAudio": true, 194 | "OfferToReceiveVideo": true, 195 | }, 196 | "optional": [], 197 | }; 198 | 199 | RTC.RTCPeerConnection pc = await RTC.createPeerConnection(configuration, offerSdpConstraints); 200 | 201 | pc.onRenegotiationNeeded = () { 202 | if (!_isSend) { 203 | _isSend = true; 204 | _createOffer(); 205 | } 206 | }; 207 | return pc; 208 | } 209 | 210 | Future sendSdpForBroadcast( 211 | String sdp, 212 | ) async { 213 | SocketEmit().sendSdpForBroadcase(sdp); 214 | } 215 | 216 | Future sendSdpOnlyReceive( 217 | String sdp, 218 | String socketId, 219 | ) async { 220 | SocketEmit().sendSdpForReceive(sdp, socketId); 221 | } 222 | 223 | _getUserMedia() async { 224 | final Map mediaConstraints = { 225 | 'audio': true, 226 | 'video': { 227 | 'facingMode': 'user', 228 | }, 229 | }; 230 | 231 | RTC.MediaStream stream = await RTC.navigator.getUserMedia(mediaConstraints); 232 | 233 | setState(() { 234 | _localRenderer.srcObject = stream; 235 | }); 236 | 237 | return stream; 238 | } 239 | 240 | endCall() { 241 | _peerConnection.close(); 242 | _localStream.dispose(); 243 | _localRenderer.dispose(); 244 | } 245 | 246 | @override 247 | Widget build(BuildContext context) { 248 | Size size = MediaQuery.of(context).size; 249 | return Scaffold( 250 | body: Container( 251 | height: size.height, 252 | width: size.width, 253 | child: Column( 254 | crossAxisAlignment: CrossAxisAlignment.center, 255 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 256 | children: [ 257 | Stack( 258 | children: [ 259 | Container( 260 | color: Colors.black, 261 | width: size.width, 262 | height: size.height, 263 | child: socketIdRemotes.isEmpty 264 | ? Container() 265 | : RemoteViewCard( 266 | remoteRenderer: socketIdRemotes[0]['stream'], 267 | ), 268 | ), 269 | Positioned( 270 | bottom: 20.0, 271 | left: 12.0, 272 | right: 0, 273 | child: Container( 274 | color: Colors.transparent, 275 | width: size.width, 276 | height: size.width * .25, 277 | child: socketIdRemotes.length < 2 278 | ? Container() 279 | : ListView.builder( 280 | scrollDirection: Axis.horizontal, 281 | itemCount: socketIdRemotes.length - 1, 282 | itemBuilder: (context, index) { 283 | return Container( 284 | margin: EdgeInsets.only(right: 6.0), 285 | decoration: BoxDecoration( 286 | borderRadius: BorderRadius.circular(4.0), 287 | border: Border.all( 288 | color: Colors.blueAccent, 289 | width: 2.0, 290 | ), 291 | ), 292 | child: RemoteViewCard( 293 | remoteRenderer: socketIdRemotes[index + 1]['stream'], 294 | ), 295 | ); 296 | }, 297 | ), 298 | ), 299 | ), 300 | Positioned( 301 | top: 45.0, 302 | left: 15.0, 303 | child: Column( 304 | children: [ 305 | _localRenderer.textureId == null 306 | ? Container( 307 | height: size.width * .50, 308 | width: size.width * .32, 309 | decoration: BoxDecoration( 310 | borderRadius: BorderRadius.all(Radius.circular(6.0)), 311 | border: Border.all(color: Colors.blueAccent, width: 2.0), 312 | ), 313 | ) 314 | : FittedBox( 315 | fit: BoxFit.cover, 316 | child: Container( 317 | height: size.width * .50, 318 | width: size.width * .32, 319 | decoration: BoxDecoration( 320 | borderRadius: BorderRadius.all(Radius.circular(6.0)), 321 | border: Border.all(color: Colors.blueAccent, width: 2.0), 322 | ), 323 | child: Transform( 324 | transform: Matrix4.identity()..rotateY(0.0), 325 | alignment: FractionalOffset.center, 326 | child: Texture(textureId: _localRenderer.textureId), 327 | ), 328 | ), 329 | ), 330 | SizedBox( 331 | height: 8.0, 332 | ), 333 | GestureDetector( 334 | onTap: () => _switchCamera(), 335 | child: Container( 336 | height: size.width * .125, 337 | width: size.width * .125, 338 | decoration: BoxDecoration( 339 | shape: BoxShape.circle, 340 | border: Border.all(color: Colors.blueAccent, width: 2.0), 341 | color: Colors.blueAccent, 342 | ), 343 | alignment: Alignment.center, 344 | child: Icon( 345 | Icons.switch_camera, 346 | color: Colors.white, 347 | size: size.width / 18.0, 348 | ), 349 | ), 350 | ), 351 | ], 352 | ), 353 | ), 354 | ], 355 | ), 356 | Row( 357 | children: [ 358 | // Expanded( 359 | // flex: 1, 360 | // child: GestureDetector( 361 | // onTap: () async { 362 | // endCall(); 363 | // }, 364 | // child: Container( 365 | // height: size.width * .15, 366 | // decoration: BoxDecoration( 367 | // color: Colors.transparent, 368 | // ), 369 | // // child: Icon( 370 | // // Icons.phone_missed, 371 | // // color: Colors.white, 372 | // // size: size.width / 14.0, 373 | // // ), 374 | // ), 375 | // ), 376 | // ), 377 | // Expanded( 378 | // flex: 1, 379 | // child: GestureDetector( 380 | // onTap: () async {}, 381 | // child: Container( 382 | // height: size.width * .15, 383 | // decoration: BoxDecoration( 384 | // color: Colors.transparent, 385 | // ), 386 | // // child: Icon( 387 | // // Icons.phone, 388 | // // color: Colors.white, 389 | // // size: size.width / 14.0, 390 | // // ), 391 | // ), 392 | // ), 393 | // ), 394 | ], 395 | ), 396 | ], 397 | ), 398 | ), 399 | ); 400 | } 401 | } 402 | -------------------------------------------------------------------------------- /lib/src/pages/home/widgets/remote_view_card.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_webrtc/flutter_webrtc.dart' as RTC; 3 | 4 | class RemoteViewCard extends StatefulWidget { 5 | final RTC.RTCVideoRenderer remoteRenderer; 6 | RemoteViewCard({ 7 | this.remoteRenderer, 8 | }); 9 | 10 | @override 11 | State createState() => _RemoteViewCardState(); 12 | } 13 | 14 | class _RemoteViewCardState extends State { 15 | @override 16 | void initState() { 17 | super.initState(); 18 | } 19 | 20 | @override 21 | void dispose() { 22 | super.dispose(); 23 | } 24 | 25 | endCall() {} 26 | 27 | @override 28 | Widget build(BuildContext context) { 29 | Size size = MediaQuery.of(context).size; 30 | return Container( 31 | child: widget.remoteRenderer.textureId == null 32 | ? Container() 33 | : FittedBox( 34 | fit: BoxFit.cover, 35 | child: Container( 36 | height: size.width * .45, 37 | width: size.width * .45, 38 | child: Transform( 39 | transform: Matrix4.identity()..rotateY(0.0), 40 | alignment: FractionalOffset.center, 41 | child: Texture(textureId: widget.remoteRenderer.textureId), 42 | ), 43 | ), 44 | ), 45 | ); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /lib/src/public/constant.dart: -------------------------------------------------------------------------------- 1 | import 'package:get/get.dart'; 2 | 3 | const baseUrl = 'http://localhost:port/route'; 4 | var width = Get.width; 5 | var height = Get.height; 6 | -------------------------------------------------------------------------------- /lib/src/public/styles.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | var colorBlack = Color(0xFF14171A); 4 | var colorDarkGrey = Color(0xFF657786); 5 | var colorPrimary = Color(0xFF1DA1F2); 6 | var colorTitle = Color(0xFF2C3D50); 7 | 8 | var colorHigh = Colors.redAccent; 9 | var colorMedium = Colors.amber.shade700; 10 | var colorLow = colorPrimary; 11 | var colorCompleted = Colors.green; 12 | var colorFailed = colorDarkGrey; 13 | var colorActive = Color(0xFF00D72F); 14 | 15 | Color mC = Colors.grey.shade100; 16 | Color mCL = Colors.white; 17 | Color mCM = Colors.grey.shade200; 18 | Color mCH = Colors.grey.shade400; 19 | Color mCD = Colors.black.withOpacity(0.075); 20 | Color mCC = Colors.green.withOpacity(0.65); 21 | Color fCD = Colors.grey.shade700; 22 | Color fCL = Colors.grey; 23 | 24 | BoxDecoration nMbox = BoxDecoration( 25 | borderRadius: BorderRadius.circular(15), 26 | color: mC, 27 | boxShadow: [ 28 | BoxShadow( 29 | color: mCD, 30 | offset: Offset(10, 10), 31 | blurRadius: 10, 32 | ), 33 | BoxShadow( 34 | color: mCL, 35 | offset: Offset(-10, -10), 36 | blurRadius: 10, 37 | ), 38 | ], 39 | ); 40 | 41 | BoxDecoration nMboxCategoryOff = BoxDecoration( 42 | shape: BoxShape.circle, 43 | color: mC, 44 | boxShadow: [ 45 | BoxShadow( 46 | color: mCD, 47 | offset: Offset(10, 10), 48 | blurRadius: 10, 49 | ), 50 | BoxShadow( 51 | color: mCL, 52 | offset: Offset(-10, -10), 53 | blurRadius: 10, 54 | ), 55 | ], 56 | ); 57 | 58 | BoxDecoration nMboxCategoryOn = BoxDecoration( 59 | shape: BoxShape.circle, 60 | color: mCD, 61 | boxShadow: [ 62 | BoxShadow( 63 | color: mCL, offset: Offset(3, 3), blurRadius: 3, spreadRadius: -3), 64 | ], 65 | ); 66 | 67 | BoxDecoration nMboxInvert = BoxDecoration( 68 | borderRadius: BorderRadius.circular(15), 69 | color: mCD, 70 | boxShadow: [ 71 | BoxShadow( 72 | color: mCL, offset: Offset(3, 3), blurRadius: 3, spreadRadius: -3), 73 | ]); 74 | 75 | BoxDecoration nMboxInvertActive = nMboxInvert.copyWith(color: mCC); 76 | 77 | BoxDecoration nMbtn = BoxDecoration( 78 | borderRadius: BorderRadius.circular(10), 79 | color: mC, 80 | boxShadow: [ 81 | BoxShadow( 82 | color: mCD, 83 | offset: Offset(2, 2), 84 | blurRadius: 2, 85 | ) 86 | ], 87 | ); 88 | -------------------------------------------------------------------------------- /lib/src/repository/base_repository.dart: -------------------------------------------------------------------------------- 1 | import 'dart:convert'; 2 | import 'package:get_boilerplate/src/repository/local/user_local.dart'; 3 | import 'package:http/http.dart' as http; 4 | 5 | const root_url = "domain_api.com"; 6 | const socket_url = "domain_api.com"; 7 | 8 | class HandleApis { 9 | get(String name, [String params]) async { 10 | Map paramsObject = {}; 11 | if (params != null) 12 | params.split('&').forEach((element) { 13 | paramsObject[element.split('=')[0].toString()] = element.split('=')[1].toString(); 14 | }); 15 | http.Response response = await http.get( 16 | params == null 17 | ? Uri.http(root_url, '/' + name) 18 | : Uri.http(root_url, '/' + name, paramsObject), 19 | headers: getHeader(), 20 | ); 21 | return response; 22 | } 23 | 24 | post(String name, Map body) async { 25 | return await http.post( 26 | Uri.http(root_url, '/' + name), 27 | headers: getHeader(), 28 | body: jsonEncode(body), 29 | ); 30 | } 31 | 32 | put(String name, Map body) async { 33 | return await http.put( 34 | Uri.http(root_url, '/' + name), 35 | headers: getHeader(), 36 | body: jsonEncode(body), 37 | ); 38 | } 39 | 40 | delete(String name, {Map body}) async { 41 | return await http.delete( 42 | Uri.http(root_url, '/' + name), 43 | headers: getHeader(), 44 | ); 45 | } 46 | 47 | getHeader() { 48 | return { 49 | 'Content-Type': 'application/json; charset=UTF-8', 50 | 'Connection': 'keep-alive', 51 | 'Accept': '*/*', 52 | 'Accept-Encoding': 'gzip, deflate, br', 53 | 'Authorization': 'Bearer ' + UserLocal().getAccessToken(), 54 | }; 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /lib/src/repository/local/user_local.dart: -------------------------------------------------------------------------------- 1 | import 'package:get_storage/get_storage.dart'; 2 | 3 | class UserLocal { 4 | final _getStorage = GetStorage(); 5 | final storageKey = 'token'; 6 | 7 | String getAccessToken() { 8 | return _getStorage.read(storageKey) ?? ''; 9 | } 10 | 11 | void saveAccessToken(String accessToken) { 12 | _getStorage.write(storageKey, accessToken); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /lib/src/repository/remote/api_gateway.dart: -------------------------------------------------------------------------------- 1 | class ApiGateway { 2 | static const LOGIN = 'api/auth/login'; 3 | static const REGISTER = 'api/auth/register'; 4 | } 5 | -------------------------------------------------------------------------------- /lib/src/repository/remote/authentication_repository.dart: -------------------------------------------------------------------------------- 1 | import 'dart:convert'; 2 | 3 | import 'package:get_boilerplate/src/repository/base_repository.dart'; 4 | import 'package:get_boilerplate/src/repository/remote/api_gateway.dart'; 5 | 6 | class AuthenticationRepository { 7 | Future> login(String username, String password) async { 8 | var body = { 9 | "phone": username, 10 | "password": password, 11 | }; 12 | var response = await HandleApis().post(ApiGateway.LOGIN, body); 13 | if (response.statusCode == 200) { 14 | return jsonDecode(response.body)["data"]; 15 | } 16 | return null; 17 | } 18 | 19 | Future> register( 20 | String username, 21 | String password, 22 | String fullName, 23 | ) async { 24 | var body = { 25 | "phone": username, 26 | "password": password, 27 | "fullName": fullName, 28 | }; 29 | 30 | var response = await HandleApis().post(ApiGateway.REGISTER, body); 31 | if (response.statusCode == 200) { 32 | return Map.from( 33 | jsonDecode(response.body)["data"], 34 | ); 35 | } 36 | return null; 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /lib/src/routes/app_pages.dart: -------------------------------------------------------------------------------- 1 | import 'package:get_boilerplate/src/app.dart'; 2 | import 'package:get/get.dart'; 3 | part 'app_routes.dart'; 4 | 5 | // ignore: avoid_classes_with_only_static_members 6 | class AppPages { 7 | static const INITIAL = Routes.ROOT; 8 | 9 | static final routes = [ 10 | GetPage( 11 | name: Routes.ROOT, 12 | page: () => App(), 13 | children: [], 14 | ), 15 | ]; 16 | } 17 | -------------------------------------------------------------------------------- /lib/src/routes/app_routes.dart: -------------------------------------------------------------------------------- 1 | part of 'app_pages.dart'; 2 | 3 | abstract class Routes { 4 | static const ROOT = '/root'; 5 | static const HOME = '/home'; 6 | } 7 | -------------------------------------------------------------------------------- /lib/src/services/socket.dart: -------------------------------------------------------------------------------- 1 | import 'dart:convert'; 2 | 3 | import 'package:get/get.dart'; 4 | import 'package:get_boilerplate/src/pages/home/widgets/remote_view_card.dart'; 5 | import 'package:get_boilerplate/src/services/socket_emit.dart'; 6 | import 'package:socket_io_client/socket_io_client.dart'; 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /lib/src/services/socket_emit.dart: -------------------------------------------------------------------------------- 1 | import 'package:get_boilerplate/src/pages/home/home_page.dart'; 2 | 3 | class SocketEmit { 4 | sendSdpForBroadcase(String sdp) { 5 | socket.emit('SEND-CSS', {'sdp': sdp}); 6 | } 7 | 8 | sendSdpForReceive(String sdp, String socketId) { 9 | socket.emit('RECEIVE-CSS', { 10 | 'sdp': sdp, 11 | 'socketId': socketId, 12 | }); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /lib/src/shared/logger/logger_utils.dart: -------------------------------------------------------------------------------- 1 | class Logger { 2 | static void write(String text, {bool isError = false}) { 3 | Future.microtask(() => print('** $text. isError: [$isError]')); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /lib/src/theme/theme_service.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:get_storage/get_storage.dart'; 3 | import 'package:get/get.dart'; 4 | 5 | class ThemeService { 6 | final _getStorage = GetStorage(); 7 | final storageKey = 'isDarkMode'; 8 | 9 | ThemeMode getThemeMode() { 10 | return isSavedDarkMode() ? ThemeMode.dark : ThemeMode.light; 11 | } 12 | 13 | bool isSavedDarkMode() { 14 | return _getStorage.read(storageKey) ?? false; 15 | } 16 | 17 | void saveThemeMode(bool isDarkMode) { 18 | _getStorage.write(storageKey, isDarkMode); 19 | } 20 | 21 | void changeThemeMode() { 22 | Get.changeThemeMode(isSavedDarkMode() ? ThemeMode.light : ThemeMode.dark); 23 | saveThemeMode(!isSavedDarkMode()); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lib/src/theme/themes.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:get_boilerplate/src/public/styles.dart'; 3 | 4 | class Themes { 5 | final lightTheme = ThemeData.light().copyWith( 6 | primaryColor: colorPrimary, 7 | appBarTheme: AppBarTheme( 8 | brightness: Brightness.light, 9 | textTheme: TextTheme( 10 | headline2: TextStyle(color: colorTitle), 11 | ), 12 | ), 13 | ); 14 | final darkTheme = ThemeData.dark().copyWith( 15 | primaryColor: colorPrimary, 16 | appBarTheme: AppBarTheme( 17 | brightness: Brightness.dark, 18 | textTheme: TextTheme( 19 | headline2: TextStyle(color: mC), 20 | ), 21 | ), 22 | ); 23 | } 24 | -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.10) 2 | project(runner LANGUAGES CXX) 3 | 4 | set(BINARY_NAME "get_boilerplate") 5 | set(APPLICATION_ID "com.example.get_boilerplate") 6 | 7 | cmake_policy(SET CMP0063 NEW) 8 | 9 | set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") 10 | 11 | # Configure build options. 12 | if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) 13 | set(CMAKE_BUILD_TYPE "Debug" CACHE 14 | STRING "Flutter build mode" FORCE) 15 | set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS 16 | "Debug" "Profile" "Release") 17 | endif() 18 | 19 | # Compilation settings that should be applied to most targets. 20 | function(APPLY_STANDARD_SETTINGS TARGET) 21 | target_compile_features(${TARGET} PUBLIC cxx_std_14) 22 | target_compile_options(${TARGET} PRIVATE -Wall -Werror) 23 | target_compile_options(${TARGET} PRIVATE "$<$>:-O3>") 24 | target_compile_definitions(${TARGET} PRIVATE "$<$>:NDEBUG>") 25 | endfunction() 26 | 27 | set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") 28 | 29 | # Flutter library and tool build rules. 30 | add_subdirectory(${FLUTTER_MANAGED_DIR}) 31 | 32 | # System-level dependencies. 33 | find_package(PkgConfig REQUIRED) 34 | pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) 35 | 36 | add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}") 37 | 38 | # Application build 39 | add_executable(${BINARY_NAME} 40 | "main.cc" 41 | "my_application.cc" 42 | "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" 43 | ) 44 | apply_standard_settings(${BINARY_NAME}) 45 | target_link_libraries(${BINARY_NAME} PRIVATE flutter) 46 | target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) 47 | add_dependencies(${BINARY_NAME} flutter_assemble) 48 | # Only the install-generated bundle's copy of the executable will launch 49 | # correctly, since the resources must in the right relative locations. To avoid 50 | # people trying to run the unbundled copy, put it in a subdirectory instead of 51 | # the default top-level location. 52 | set_target_properties(${BINARY_NAME} 53 | PROPERTIES 54 | RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run" 55 | ) 56 | 57 | # Generated plugin build rules, which manage building the plugins and adding 58 | # them to the application. 59 | include(flutter/generated_plugins.cmake) 60 | 61 | 62 | # === Installation === 63 | # By default, "installing" just makes a relocatable bundle in the build 64 | # directory. 65 | set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle") 66 | if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) 67 | set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) 68 | endif() 69 | 70 | # Start with a clean build bundle directory every time. 71 | install(CODE " 72 | file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\") 73 | " COMPONENT Runtime) 74 | 75 | set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") 76 | set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib") 77 | 78 | install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" 79 | COMPONENT Runtime) 80 | 81 | install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" 82 | COMPONENT Runtime) 83 | 84 | install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 85 | COMPONENT Runtime) 86 | 87 | if(PLUGIN_BUNDLED_LIBRARIES) 88 | install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" 89 | DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 90 | COMPONENT Runtime) 91 | endif() 92 | 93 | # Fully re-copy the assets directory on each build to avoid having stale files 94 | # from a previous install. 95 | set(FLUTTER_ASSET_DIR_NAME "flutter_assets") 96 | install(CODE " 97 | file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") 98 | " COMPONENT Runtime) 99 | install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" 100 | DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) 101 | 102 | # Install the AOT library on non-Debug builds only. 103 | if(NOT CMAKE_BUILD_TYPE MATCHES "Debug") 104 | install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 105 | COMPONENT Runtime) 106 | endif() 107 | -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.10) 2 | 3 | set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") 4 | 5 | # Configuration provided via flutter tool. 6 | include(${EPHEMERAL_DIR}/generated_config.cmake) 7 | 8 | # TODO: Move the rest of this into files in ephemeral. See 9 | # https://github.com/flutter/flutter/issues/57146. 10 | 11 | # Serves the same purpose as list(TRANSFORM ... PREPEND ...), 12 | # which isn't available in 3.10. 13 | function(list_prepend LIST_NAME PREFIX) 14 | set(NEW_LIST "") 15 | foreach(element ${${LIST_NAME}}) 16 | list(APPEND NEW_LIST "${PREFIX}${element}") 17 | endforeach(element) 18 | set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE) 19 | endfunction() 20 | 21 | # === Flutter Library === 22 | # System-level dependencies. 23 | find_package(PkgConfig REQUIRED) 24 | pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) 25 | pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0) 26 | pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0) 27 | pkg_check_modules(BLKID REQUIRED IMPORTED_TARGET blkid) 28 | pkg_check_modules(LZMA REQUIRED IMPORTED_TARGET liblzma) 29 | 30 | set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so") 31 | 32 | # Published to parent scope for install step. 33 | set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) 34 | set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) 35 | set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) 36 | set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE) 37 | 38 | list(APPEND FLUTTER_LIBRARY_HEADERS 39 | "fl_basic_message_channel.h" 40 | "fl_binary_codec.h" 41 | "fl_binary_messenger.h" 42 | "fl_dart_project.h" 43 | "fl_engine.h" 44 | "fl_json_message_codec.h" 45 | "fl_json_method_codec.h" 46 | "fl_message_codec.h" 47 | "fl_method_call.h" 48 | "fl_method_channel.h" 49 | "fl_method_codec.h" 50 | "fl_method_response.h" 51 | "fl_plugin_registrar.h" 52 | "fl_plugin_registry.h" 53 | "fl_standard_message_codec.h" 54 | "fl_standard_method_codec.h" 55 | "fl_string_codec.h" 56 | "fl_value.h" 57 | "fl_view.h" 58 | "flutter_linux.h" 59 | ) 60 | list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/") 61 | add_library(flutter INTERFACE) 62 | target_include_directories(flutter INTERFACE 63 | "${EPHEMERAL_DIR}" 64 | ) 65 | target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}") 66 | target_link_libraries(flutter INTERFACE 67 | PkgConfig::GTK 68 | PkgConfig::GLIB 69 | PkgConfig::GIO 70 | PkgConfig::BLKID 71 | PkgConfig::LZMA 72 | ) 73 | add_dependencies(flutter flutter_assemble) 74 | 75 | # === Flutter tool backend === 76 | # _phony_ is a non-existent file to force this command to run every time, 77 | # since currently there's no way to get a full input/output list from the 78 | # flutter tool. 79 | add_custom_command( 80 | OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} 81 | ${CMAKE_CURRENT_BINARY_DIR}/_phony_ 82 | COMMAND ${CMAKE_COMMAND} -E env 83 | ${FLUTTER_TOOL_ENVIRONMENT} 84 | "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh" 85 | ${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE} 86 | VERBATIM 87 | ) 88 | add_custom_target(flutter_assemble DEPENDS 89 | "${FLUTTER_LIBRARY}" 90 | ${FLUTTER_LIBRARY_HEADERS} 91 | ) 92 | -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | #include "generated_plugin_registrant.h" 6 | 7 | 8 | void fl_register_plugins(FlPluginRegistry* registry) { 9 | } 10 | -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | #ifndef GENERATED_PLUGIN_REGISTRANT_ 6 | #define GENERATED_PLUGIN_REGISTRANT_ 7 | 8 | #include 9 | 10 | // Registers Flutter plugins. 11 | void fl_register_plugins(FlPluginRegistry* registry); 12 | 13 | #endif // GENERATED_PLUGIN_REGISTRANT_ 14 | -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Generated file, do not edit. 3 | # 4 | 5 | list(APPEND FLUTTER_PLUGIN_LIST 6 | ) 7 | 8 | set(PLUGIN_BUNDLED_LIBRARIES) 9 | 10 | foreach(plugin ${FLUTTER_PLUGIN_LIST}) 11 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) 12 | target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) 13 | list(APPEND PLUGIN_BUNDLED_LIBRARIES $) 14 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) 15 | endforeach(plugin) 16 | -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- 1 | #include "my_application.h" 2 | 3 | int main(int argc, char** argv) { 4 | g_autoptr(MyApplication) app = my_application_new(); 5 | return g_application_run(G_APPLICATION(app), argc, argv); 6 | } 7 | -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- 1 | #include "my_application.h" 2 | 3 | #include 4 | #ifdef GDK_WINDOWING_X11 5 | #include 6 | #endif 7 | 8 | #include "flutter/generated_plugin_registrant.h" 9 | 10 | struct _MyApplication { 11 | GtkApplication parent_instance; 12 | char** dart_entrypoint_arguments; 13 | }; 14 | 15 | G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION) 16 | 17 | // Implements GApplication::activate. 18 | static void my_application_activate(GApplication* application) { 19 | MyApplication* self = MY_APPLICATION(application); 20 | GtkWindow* window = 21 | GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application))); 22 | 23 | // Use a header bar when running in GNOME as this is the common style used 24 | // by applications and is the setup most users will be using (e.g. Ubuntu 25 | // desktop). 26 | // If running on X and not using GNOME then just use a traditional title bar 27 | // in case the window manager does more exotic layout, e.g. tiling. 28 | // If running on Wayland assume the header bar will work (may need changing 29 | // if future cases occur). 30 | gboolean use_header_bar = TRUE; 31 | #ifdef GDK_WINDOWING_X11 32 | GdkScreen *screen = gtk_window_get_screen(window); 33 | if (GDK_IS_X11_SCREEN(screen)) { 34 | const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen); 35 | if (g_strcmp0(wm_name, "GNOME Shell") != 0) { 36 | use_header_bar = FALSE; 37 | } 38 | } 39 | #endif 40 | if (use_header_bar) { 41 | GtkHeaderBar *header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); 42 | gtk_widget_show(GTK_WIDGET(header_bar)); 43 | gtk_header_bar_set_title(header_bar, "get_boilerplate"); 44 | gtk_header_bar_set_show_close_button(header_bar, TRUE); 45 | gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); 46 | } 47 | else { 48 | gtk_window_set_title(window, "get_boilerplate"); 49 | } 50 | 51 | gtk_window_set_default_size(window, 1280, 720); 52 | gtk_widget_show(GTK_WIDGET(window)); 53 | 54 | g_autoptr(FlDartProject) project = fl_dart_project_new(); 55 | fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments); 56 | 57 | FlView* view = fl_view_new(project); 58 | gtk_widget_show(GTK_WIDGET(view)); 59 | gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view)); 60 | 61 | fl_register_plugins(FL_PLUGIN_REGISTRY(view)); 62 | 63 | gtk_widget_grab_focus(GTK_WIDGET(view)); 64 | } 65 | 66 | // Implements GApplication::local_command_line. 67 | static gboolean my_application_local_command_line(GApplication* application, gchar ***arguments, int *exit_status) { 68 | MyApplication* self = MY_APPLICATION(application); 69 | // Strip out the first argument as it is the binary name. 70 | self->dart_entrypoint_arguments = g_strdupv(*arguments + 1); 71 | 72 | g_autoptr(GError) error = nullptr; 73 | if (!g_application_register(application, nullptr, &error)) { 74 | g_warning("Failed to register: %s", error->message); 75 | *exit_status = 1; 76 | return TRUE; 77 | } 78 | 79 | g_application_activate(application); 80 | *exit_status = 0; 81 | 82 | return TRUE; 83 | } 84 | 85 | // Implements GObject::dispose. 86 | static void my_application_dispose(GObject *object) { 87 | MyApplication* self = MY_APPLICATION(object); 88 | g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev); 89 | G_OBJECT_CLASS(my_application_parent_class)->dispose(object); 90 | } 91 | 92 | static void my_application_class_init(MyApplicationClass* klass) { 93 | G_APPLICATION_CLASS(klass)->activate = my_application_activate; 94 | G_APPLICATION_CLASS(klass)->local_command_line = my_application_local_command_line; 95 | G_OBJECT_CLASS(klass)->dispose = my_application_dispose; 96 | } 97 | 98 | static void my_application_init(MyApplication* self) {} 99 | 100 | MyApplication* my_application_new() { 101 | return MY_APPLICATION(g_object_new(my_application_get_type(), 102 | "application-id", APPLICATION_ID, 103 | nullptr)); 104 | } 105 | -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- 1 | #ifndef FLUTTER_MY_APPLICATION_H_ 2 | #define FLUTTER_MY_APPLICATION_H_ 3 | 4 | #include 5 | 6 | G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION, 7 | GtkApplication) 8 | 9 | /** 10 | * my_application_new: 11 | * 12 | * Creates a new Flutter-based application. 13 | * 14 | * Returns: a new #MyApplication. 15 | */ 16 | MyApplication* my_application_new(); 17 | 18 | #endif // FLUTTER_MY_APPLICATION_H_ 19 | -------------------------------------------------------------------------------- /nodejs_sfus_server/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # Snowpack dependency directory (https://snowpack.dev/) 45 | web_modules/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | .parcel-cache 78 | 79 | # Next.js build output 80 | .next 81 | out 82 | 83 | # Nuxt.js build / generate output 84 | .nuxt 85 | dist 86 | 87 | # Gatsby files 88 | .cache/ 89 | # Comment in the public line in if your project uses Gatsby and not Next.js 90 | # https://nextjs.org/blog/next-9-1#public-directory-support 91 | # public 92 | 93 | # vuepress build output 94 | .vuepress/dist 95 | 96 | # Serverless directories 97 | .serverless/ 98 | 99 | # FuseBox cache 100 | .fusebox/ 101 | 102 | # DynamoDB Local files 103 | .dynamodb/ 104 | 105 | # TernJS port file 106 | .tern-port 107 | 108 | # Stores VSCode versions used for testing VSCode extensions 109 | .vscode-test 110 | 111 | # yarn v2 112 | .yarn/cache 113 | .yarn/unplugged 114 | .yarn/build-state.yml 115 | .yarn/install-state.gz 116 | .pnp.* -------------------------------------------------------------------------------- /nodejs_sfus_server/index.js: -------------------------------------------------------------------------------- 1 | const express = require("express"); 2 | const app = express(); 3 | const bodyParser = require("body-parser"); 4 | const webrtc = require("wrtc"); 5 | 6 | let senderStream; 7 | 8 | app.use(express.static("public")); 9 | app.use(bodyParser.json()); 10 | app.use(bodyParser.urlencoded({ extended: true })); 11 | 12 | app.post("/consumer", async ({ body }, res) => { 13 | const peer = new webrtc.RTCPeerConnection({ 14 | iceServers: [ 15 | { 16 | urls: "stun:stun.stunprotocol.org", 17 | }, 18 | ], 19 | }); 20 | const desc = new webrtc.RTCSessionDescription(body.sdp); 21 | await peer.setRemoteDescription(desc); 22 | senderStream 23 | .getTracks() 24 | .forEach((track) => peer.addTrack(track, senderStream)); 25 | const answer = await peer.createAnswer(); 26 | await peer.setLocalDescription(answer); 27 | const payload = { 28 | sdp: peer.localDescription, 29 | }; 30 | 31 | res.json(payload); 32 | }); 33 | 34 | app.post("/broadcast", async ({ body }, res) => { 35 | console.log(body); 36 | const peer = new webrtc.RTCPeerConnection({ 37 | iceServers: [ 38 | { 39 | urls: "stun:stun.stunprotocol.org", 40 | }, 41 | ], 42 | }); 43 | peer.ontrack = (e) => handleTrackEvent(e, peer); 44 | const desc = new webrtc.RTCSessionDescription(body.sdp); 45 | await peer.setRemoteDescription(desc); 46 | const answer = await peer.createAnswer(); 47 | await peer.setLocalDescription(answer); 48 | const payload = { 49 | sdp: peer.localDescription, 50 | }; 51 | 52 | res.json(payload); 53 | }); 54 | 55 | function handleTrackEvent(e, peer) { 56 | senderStream = e.streams[0]; 57 | } 58 | 59 | app.listen(5000, () => console.log("server started")); 60 | -------------------------------------------------------------------------------- /nodejs_sfus_server/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "@mapbox/node-pre-gyp": "1.x", 4 | "body-parser": "^1.19.0", 5 | "express": "^4.17.1", 6 | "http": "^0.0.1-security", 7 | "socket.io": "^4.2.0", 8 | "wrtc": "^0.4.7" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /nodejs_sfus_server/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /nodejs_sfus_server/public/index.js: -------------------------------------------------------------------------------- 1 | window.onload = () => { 2 | document.getElementById("my-button").onclick = () => { 3 | init(); 4 | }; 5 | }; 6 | 7 | async function init() { 8 | const stream = await navigator.mediaDevices.getUserMedia({ 9 | video: true, 10 | // audio: true, 11 | }); 12 | document.getElementById("video").srcObject = stream; 13 | const peer = createPeer(); 14 | stream.getTracks().forEach((track) => peer.addTrack(track, stream)); 15 | } 16 | 17 | function createPeer() { 18 | const peer = new RTCPeerConnection({ 19 | iceServers: [ 20 | { 21 | urls: "stun:stun.stunprotocol.org", 22 | }, 23 | ], 24 | }); 25 | peer.onnegotiationneeded = () => handleNegotiationNeededEvent(peer); 26 | 27 | return peer; 28 | } 29 | 30 | async function handleNegotiationNeededEvent(peer) { 31 | const offer = await peer.createOffer(); 32 | await peer.setLocalDescription(offer); 33 | const payload = { 34 | sdp: peer.localDescription, 35 | }; 36 | 37 | const { data } = await axios.post("/broadcast", payload); 38 | const desc = new RTCSessionDescription(data.sdp); 39 | peer.setRemoteDescription(desc).catch((e) => console.log(e)); 40 | } 41 | -------------------------------------------------------------------------------- /nodejs_sfus_server/public/viewer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Viewer 7 | 8 | 9 | 10 | 11 |

Viewer

12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /nodejs_sfus_server/public/viewer.js: -------------------------------------------------------------------------------- 1 | window.onload = () => { 2 | document.getElementById("my-button").onclick = () => { 3 | init(); 4 | }; 5 | }; 6 | 7 | async function init() { 8 | const peer = createPeer(); 9 | peer.addTransceiver("video", { direction: "recvonly" }); 10 | peer.addTransceiver("audio", { direction: "recvonly" }); 11 | } 12 | 13 | function createPeer() { 14 | const peer = new RTCPeerConnection({ 15 | iceServers: [ 16 | { 17 | urls: "stun:stun.stunprotocol.org", 18 | }, 19 | ], 20 | }); 21 | peer.ontrack = handleTrackEvent; 22 | peer.onnegotiationneeded = () => handleNegotiationNeededEvent(peer); 23 | 24 | return peer; 25 | } 26 | 27 | async function handleNegotiationNeededEvent(peer) { 28 | const offer = await peer.createOffer(); 29 | await peer.setLocalDescription(offer); 30 | const payload = { 31 | sdp: peer.localDescription, 32 | }; 33 | 34 | const { data } = await axios.post("/consumer", payload); 35 | const desc = new RTCSessionDescription(data.sdp); 36 | peer.setRemoteDescription(desc).catch((e) => console.log(e)); 37 | } 38 | 39 | function handleTrackEvent(e) { 40 | document.getElementById("video").srcObject = e.streams[0]; 41 | } 42 | -------------------------------------------------------------------------------- /nodejs_sfus_server/server.js: -------------------------------------------------------------------------------- 1 | const express = require("express"); 2 | const app = express(); 3 | const bodyParser = require("body-parser"); 4 | const webrtc = require("wrtc"); 5 | const server = require("http").Server(app); 6 | const io = require("socket.io")(server, { 7 | cors: { 8 | origin: "*", 9 | }, 10 | }); 11 | 12 | const port = 5000; 13 | let senderStreams = []; 14 | 15 | app.use(express.static("public")); 16 | app.use(bodyParser.json()); 17 | app.use(bodyParser.urlencoded({ extended: true })); 18 | 19 | app.get("/*", (req, res) => res.send("SFUs SERVER")); 20 | 21 | function handleTrackEvent(e, socketId) { 22 | const index = senderStreams.findIndex((item) => socketId === item.socketId); 23 | if (index != -1) { 24 | senderStreams[index].stream = e.streams[0]; 25 | } else { 26 | senderStreams.push({ 27 | socketId: socketId, 28 | stream: e.streams[0], 29 | }); 30 | } 31 | } 32 | 33 | async function createPeerConnectionSend(sdp, socketId) { 34 | const peer = new webrtc.RTCPeerConnection({ 35 | iceServers: [ 36 | { 37 | urls: "stun:stun.stunprotocol.org", 38 | }, 39 | ], 40 | }); 41 | peer.ontrack = (e) => handleTrackEvent(e, socketId); 42 | const sdpDesc = { 43 | type: "offer", 44 | sdp: sdp, 45 | }; 46 | const desc = new webrtc.RTCSessionDescription(sdpDesc); 47 | await peer.setRemoteDescription(desc); 48 | const answer = await peer.createAnswer(); 49 | await peer.setLocalDescription(answer); 50 | const payload = peer.localDescription.sdp; 51 | return payload; 52 | } 53 | 54 | async function createPeerConnectionReceive(sdp, socketId) { 55 | const peer = new webrtc.RTCPeerConnection({ 56 | iceServers: [ 57 | { 58 | urls: "stun:stun.stunprotocol.org", 59 | }, 60 | ], 61 | }); 62 | const sdpDesc = { 63 | type: "offer", 64 | sdp: sdp, 65 | }; 66 | const desc = new webrtc.RTCSessionDescription(sdpDesc); 67 | await peer.setRemoteDescription(desc); 68 | const index = senderStreams.findIndex((e) => e.socketId === socketId); 69 | if (senderStreams.length > 0) { 70 | senderStreams[index].stream 71 | .getTracks() 72 | .forEach((track) => peer.addTrack(track, senderStreams[index].stream)); 73 | } 74 | const answer = await peer.createAnswer(); 75 | await peer.setLocalDescription(answer); 76 | const payload = peer.localDescription.sdp; 77 | 78 | return payload; 79 | } 80 | 81 | io.on("connection", function (socket) { 82 | socket.on("SEND-CSS", async function (data) { 83 | const payload = await createPeerConnectionSend(data.sdp, socket.id); 84 | const listSocketId = senderStreams 85 | .filter((e) => e.socketId != socket.id) 86 | .map((e) => e.socketId); 87 | io.to(socket.id).emit("SEND-SSC", { 88 | socketId: socket.id, 89 | sdp: payload, 90 | sockets: listSocketId, 91 | }); 92 | socket.broadcast.emit("NEW-PEER-SSC", { 93 | socketId: socket.id, 94 | }); 95 | }); 96 | 97 | socket.on("RECEIVE-CSS", async function (data) { 98 | console.log(data.socketId); 99 | const payload = await createPeerConnectionReceive(data.sdp, data.socketId); 100 | io.to(socket.id).emit("RECEIVE-SSC", { 101 | socketId: data.socketId, 102 | sdp: payload, 103 | }); 104 | }); 105 | 106 | socket.on("disconnect", function () { 107 | senderStreams = senderStreams.filter((e) => e.socketId !== socket.id); 108 | }); 109 | }); 110 | 111 | app.post("/broadcast", async ({ body }, res) => { 112 | const peer = new webrtc.RTCPeerConnection({ 113 | iceServers: [ 114 | { 115 | urls: "stun:stun.stunprotocol.org", 116 | }, 117 | ], 118 | }); 119 | peer.ontrack = (e) => 120 | handleTrackEvent(e, Math.floor(Math.random() * 1000000000).toString()); 121 | const desc = new webrtc.RTCSessionDescription(body.sdp); 122 | await peer.setRemoteDescription(desc); 123 | const answer = await peer.createAnswer(); 124 | await peer.setLocalDescription(answer); 125 | const payload = { 126 | sdp: peer.localDescription, 127 | }; 128 | 129 | res.json(payload); 130 | }); 131 | 132 | app.post("/consumer", async ({ body }, res) => { 133 | const peer = new webrtc.RTCPeerConnection({ 134 | iceServers: [ 135 | { 136 | urls: "stun:stun.stunprotocol.org", 137 | }, 138 | ], 139 | }); 140 | const desc = new webrtc.RTCSessionDescription(body.sdp); 141 | await peer.setRemoteDescription(desc); 142 | if (senderStreams.length > 0) { 143 | let index = 0; 144 | senderStreams[index].stream 145 | .getTracks() 146 | .forEach((track) => peer.addTrack(track, senderStreams[index].stream)); 147 | } 148 | const answer = await peer.createAnswer(); 149 | await peer.setLocalDescription(answer); 150 | const payload = { 151 | sdp: peer.localDescription, 152 | }; 153 | 154 | res.json(payload); 155 | }); 156 | 157 | server.listen(port, "0.0.0.0", function () { 158 | console.log("Server is running on port: " + port); 159 | }); 160 | -------------------------------------------------------------------------------- /nodejs_sfus_server/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@mapbox/node-pre-gyp@1.x": 6 | version "1.0.5" 7 | resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.5.tgz#2a0b32fcb416fb3f2250fd24cb2a81421a4f5950" 8 | integrity sha512-4srsKPXWlIxp5Vbqz5uLfBN+du2fJChBoYn/f2h991WLdk7jUvcSk/McVLSv/X+xQIPI8eGD5GjrnygdyHnhPA== 9 | dependencies: 10 | detect-libc "^1.0.3" 11 | https-proxy-agent "^5.0.0" 12 | make-dir "^3.1.0" 13 | node-fetch "^2.6.1" 14 | nopt "^5.0.0" 15 | npmlog "^4.1.2" 16 | rimraf "^3.0.2" 17 | semver "^7.3.4" 18 | tar "^6.1.0" 19 | 20 | "@types/component-emitter@^1.2.10": 21 | version "1.2.10" 22 | resolved "https://registry.yarnpkg.com/@types/component-emitter/-/component-emitter-1.2.10.tgz#ef5b1589b9f16544642e473db5ea5639107ef3ea" 23 | integrity sha512-bsjleuRKWmGqajMerkzox19aGbscQX5rmmvvXl3wlIp5gMG1HgkiwPxsN5p070fBDKTNSPgojVbuY1+HWMbFhg== 24 | 25 | "@types/cookie@^0.4.1": 26 | version "0.4.1" 27 | resolved "https://registry.yarnpkg.com/@types/cookie/-/cookie-0.4.1.tgz#bfd02c1f2224567676c1545199f87c3a861d878d" 28 | integrity sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q== 29 | 30 | "@types/cors@^2.8.12": 31 | version "2.8.12" 32 | resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.12.tgz#6b2c510a7ad7039e98e7b8d3d6598f4359e5c080" 33 | integrity sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw== 34 | 35 | "@types/node@>=10.0.0": 36 | version "16.10.3" 37 | resolved "https://registry.yarnpkg.com/@types/node/-/node-16.10.3.tgz#7a8f2838603ea314d1d22bb3171d899e15c57bd5" 38 | integrity sha512-ho3Ruq+fFnBrZhUYI46n/bV2GjwzSkwuT4dTf0GkuNFmnb8nq4ny2z9JEVemFi6bdEJanHLlYfy9c6FN9B9McQ== 39 | 40 | abbrev@1: 41 | version "1.1.1" 42 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 43 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 44 | 45 | accepts@~1.3.4, accepts@~1.3.7: 46 | version "1.3.7" 47 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" 48 | integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== 49 | dependencies: 50 | mime-types "~2.1.24" 51 | negotiator "0.6.2" 52 | 53 | agent-base@6: 54 | version "6.0.2" 55 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 56 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 57 | dependencies: 58 | debug "4" 59 | 60 | ansi-regex@^2.0.0: 61 | version "2.1.1" 62 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 63 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 64 | 65 | ansi-regex@^3.0.0: 66 | version "3.0.0" 67 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 68 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 69 | 70 | aproba@^1.0.3: 71 | version "1.2.0" 72 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 73 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== 74 | 75 | are-we-there-yet@~1.1.2: 76 | version "1.1.5" 77 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 78 | integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== 79 | dependencies: 80 | delegates "^1.0.0" 81 | readable-stream "^2.0.6" 82 | 83 | array-flatten@1.1.1: 84 | version "1.1.1" 85 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 86 | integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= 87 | 88 | balanced-match@^1.0.0: 89 | version "1.0.0" 90 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 91 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 92 | 93 | base64-arraybuffer@0.1.4: 94 | version "0.1.4" 95 | resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz#9818c79e059b1355f97e0428a017c838e90ba812" 96 | integrity sha1-mBjHngWbE1X5fgQooBfIOOkLqBI= 97 | 98 | base64id@2.0.0, base64id@~2.0.0: 99 | version "2.0.0" 100 | resolved "https://registry.yarnpkg.com/base64id/-/base64id-2.0.0.tgz#2770ac6bc47d312af97a8bf9a634342e0cd25cb6" 101 | integrity sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog== 102 | 103 | body-parser@1.19.0, body-parser@^1.19.0: 104 | version "1.19.0" 105 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" 106 | integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== 107 | dependencies: 108 | bytes "3.1.0" 109 | content-type "~1.0.4" 110 | debug "2.6.9" 111 | depd "~1.1.2" 112 | http-errors "1.7.2" 113 | iconv-lite "0.4.24" 114 | on-finished "~2.3.0" 115 | qs "6.7.0" 116 | raw-body "2.4.0" 117 | type-is "~1.6.17" 118 | 119 | brace-expansion@^1.1.7: 120 | version "1.1.11" 121 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 122 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 123 | dependencies: 124 | balanced-match "^1.0.0" 125 | concat-map "0.0.1" 126 | 127 | bytes@3.1.0: 128 | version "3.1.0" 129 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 130 | integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== 131 | 132 | chownr@^1.1.1: 133 | version "1.1.4" 134 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" 135 | integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== 136 | 137 | chownr@^2.0.0: 138 | version "2.0.0" 139 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" 140 | integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== 141 | 142 | code-point-at@^1.0.0: 143 | version "1.1.0" 144 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 145 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 146 | 147 | component-emitter@~1.3.0: 148 | version "1.3.0" 149 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 150 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 151 | 152 | concat-map@0.0.1: 153 | version "0.0.1" 154 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 155 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 156 | 157 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 158 | version "1.1.0" 159 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 160 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 161 | 162 | content-disposition@0.5.3: 163 | version "0.5.3" 164 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" 165 | integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== 166 | dependencies: 167 | safe-buffer "5.1.2" 168 | 169 | content-type@~1.0.4: 170 | version "1.0.4" 171 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 172 | integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 173 | 174 | cookie-signature@1.0.6: 175 | version "1.0.6" 176 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 177 | integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= 178 | 179 | cookie@0.4.0: 180 | version "0.4.0" 181 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" 182 | integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== 183 | 184 | cookie@~0.4.1: 185 | version "0.4.1" 186 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.1.tgz#afd713fe26ebd21ba95ceb61f9a8116e50a537d1" 187 | integrity sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA== 188 | 189 | core-util-is@~1.0.0: 190 | version "1.0.2" 191 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 192 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 193 | 194 | cors@~2.8.5: 195 | version "2.8.5" 196 | resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" 197 | integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== 198 | dependencies: 199 | object-assign "^4" 200 | vary "^1" 201 | 202 | debug@2.6.9: 203 | version "2.6.9" 204 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 205 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 206 | dependencies: 207 | ms "2.0.0" 208 | 209 | debug@4, debug@~4.3.1, debug@~4.3.2: 210 | version "4.3.2" 211 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" 212 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== 213 | dependencies: 214 | ms "2.1.2" 215 | 216 | debug@^3.2.6: 217 | version "3.2.7" 218 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 219 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 220 | dependencies: 221 | ms "^2.1.1" 222 | 223 | deep-extend@^0.6.0: 224 | version "0.6.0" 225 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 226 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 227 | 228 | delegates@^1.0.0: 229 | version "1.0.0" 230 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 231 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 232 | 233 | depd@~1.1.2: 234 | version "1.1.2" 235 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 236 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= 237 | 238 | destroy@~1.0.4: 239 | version "1.0.4" 240 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 241 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 242 | 243 | detect-libc@^1.0.2, detect-libc@^1.0.3: 244 | version "1.0.3" 245 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 246 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 247 | 248 | domexception@^1.0.1: 249 | version "1.0.1" 250 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" 251 | integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== 252 | dependencies: 253 | webidl-conversions "^4.0.2" 254 | 255 | ee-first@1.1.1: 256 | version "1.1.1" 257 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 258 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 259 | 260 | encodeurl@~1.0.2: 261 | version "1.0.2" 262 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 263 | integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= 264 | 265 | engine.io-parser@~4.0.0: 266 | version "4.0.3" 267 | resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-4.0.3.tgz#83d3a17acfd4226f19e721bb22a1ee8f7662d2f6" 268 | integrity sha512-xEAAY0msNnESNPc00e19y5heTPX4y/TJ36gr8t1voOaNmTojP9b3oK3BbJLFufW2XFPQaaijpFewm2g2Um3uqA== 269 | dependencies: 270 | base64-arraybuffer "0.1.4" 271 | 272 | engine.io@~5.2.0: 273 | version "5.2.0" 274 | resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-5.2.0.tgz#554cdd0230d89de7b1a49a809d7ee5a129d36809" 275 | integrity sha512-d1DexkQx87IFr1FLuV+0f5kAm1Hk1uOVijLOb+D1sDO2QMb7YjE02VHtZtxo7xIXMgcWLb+vl3HRT0rI9tr4jQ== 276 | dependencies: 277 | accepts "~1.3.4" 278 | base64id "2.0.0" 279 | cookie "~0.4.1" 280 | cors "~2.8.5" 281 | debug "~4.3.1" 282 | engine.io-parser "~4.0.0" 283 | ws "~7.4.2" 284 | 285 | escape-html@~1.0.3: 286 | version "1.0.3" 287 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 288 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 289 | 290 | etag@~1.8.1: 291 | version "1.8.1" 292 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 293 | integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= 294 | 295 | express@^4.17.1: 296 | version "4.17.1" 297 | resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" 298 | integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== 299 | dependencies: 300 | accepts "~1.3.7" 301 | array-flatten "1.1.1" 302 | body-parser "1.19.0" 303 | content-disposition "0.5.3" 304 | content-type "~1.0.4" 305 | cookie "0.4.0" 306 | cookie-signature "1.0.6" 307 | debug "2.6.9" 308 | depd "~1.1.2" 309 | encodeurl "~1.0.2" 310 | escape-html "~1.0.3" 311 | etag "~1.8.1" 312 | finalhandler "~1.1.2" 313 | fresh "0.5.2" 314 | merge-descriptors "1.0.1" 315 | methods "~1.1.2" 316 | on-finished "~2.3.0" 317 | parseurl "~1.3.3" 318 | path-to-regexp "0.1.7" 319 | proxy-addr "~2.0.5" 320 | qs "6.7.0" 321 | range-parser "~1.2.1" 322 | safe-buffer "5.1.2" 323 | send "0.17.1" 324 | serve-static "1.14.1" 325 | setprototypeof "1.1.1" 326 | statuses "~1.5.0" 327 | type-is "~1.6.18" 328 | utils-merge "1.0.1" 329 | vary "~1.1.2" 330 | 331 | finalhandler@~1.1.2: 332 | version "1.1.2" 333 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" 334 | integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== 335 | dependencies: 336 | debug "2.6.9" 337 | encodeurl "~1.0.2" 338 | escape-html "~1.0.3" 339 | on-finished "~2.3.0" 340 | parseurl "~1.3.3" 341 | statuses "~1.5.0" 342 | unpipe "~1.0.0" 343 | 344 | forwarded@~0.1.2: 345 | version "0.1.2" 346 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 347 | integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= 348 | 349 | fresh@0.5.2: 350 | version "0.5.2" 351 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 352 | integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= 353 | 354 | fs-minipass@^1.2.5: 355 | version "1.2.7" 356 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" 357 | integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== 358 | dependencies: 359 | minipass "^2.6.0" 360 | 361 | fs-minipass@^2.0.0: 362 | version "2.1.0" 363 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" 364 | integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== 365 | dependencies: 366 | minipass "^3.0.0" 367 | 368 | fs.realpath@^1.0.0: 369 | version "1.0.0" 370 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 371 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 372 | 373 | gauge@~2.7.3: 374 | version "2.7.4" 375 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 376 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= 377 | dependencies: 378 | aproba "^1.0.3" 379 | console-control-strings "^1.0.0" 380 | has-unicode "^2.0.0" 381 | object-assign "^4.1.0" 382 | signal-exit "^3.0.0" 383 | string-width "^1.0.1" 384 | strip-ansi "^3.0.1" 385 | wide-align "^1.1.0" 386 | 387 | glob@^7.1.3: 388 | version "7.1.6" 389 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 390 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 391 | dependencies: 392 | fs.realpath "^1.0.0" 393 | inflight "^1.0.4" 394 | inherits "2" 395 | minimatch "^3.0.4" 396 | once "^1.3.0" 397 | path-is-absolute "^1.0.0" 398 | 399 | has-unicode@^2.0.0: 400 | version "2.0.1" 401 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 402 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 403 | 404 | http-errors@1.7.2: 405 | version "1.7.2" 406 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" 407 | integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== 408 | dependencies: 409 | depd "~1.1.2" 410 | inherits "2.0.3" 411 | setprototypeof "1.1.1" 412 | statuses ">= 1.5.0 < 2" 413 | toidentifier "1.0.0" 414 | 415 | http-errors@~1.7.2: 416 | version "1.7.3" 417 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" 418 | integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== 419 | dependencies: 420 | depd "~1.1.2" 421 | inherits "2.0.4" 422 | setprototypeof "1.1.1" 423 | statuses ">= 1.5.0 < 2" 424 | toidentifier "1.0.0" 425 | 426 | http@^0.0.1-security: 427 | version "0.0.1-security" 428 | resolved "https://registry.yarnpkg.com/http/-/http-0.0.1-security.tgz#3aac09129d12dc2747bbce4157afde20ad1f7995" 429 | integrity sha512-RnDvP10Ty9FxqOtPZuxtebw1j4L/WiqNMDtuc1YMH1XQm5TgDRaR1G9u8upL6KD1bXHSp9eSXo/ED+8Q7FAr+g== 430 | 431 | https-proxy-agent@^5.0.0: 432 | version "5.0.0" 433 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 434 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 435 | dependencies: 436 | agent-base "6" 437 | debug "4" 438 | 439 | iconv-lite@0.4.24, iconv-lite@^0.4.4: 440 | version "0.4.24" 441 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 442 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 443 | dependencies: 444 | safer-buffer ">= 2.1.2 < 3" 445 | 446 | ignore-walk@^3.0.1: 447 | version "3.0.3" 448 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" 449 | integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== 450 | dependencies: 451 | minimatch "^3.0.4" 452 | 453 | inflight@^1.0.4: 454 | version "1.0.6" 455 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 456 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 457 | dependencies: 458 | once "^1.3.0" 459 | wrappy "1" 460 | 461 | inherits@2, inherits@2.0.4, inherits@~2.0.3: 462 | version "2.0.4" 463 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 464 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 465 | 466 | inherits@2.0.3: 467 | version "2.0.3" 468 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 469 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 470 | 471 | ini@~1.3.0: 472 | version "1.3.8" 473 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 474 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 475 | 476 | ipaddr.js@1.9.1: 477 | version "1.9.1" 478 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" 479 | integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== 480 | 481 | is-fullwidth-code-point@^1.0.0: 482 | version "1.0.0" 483 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 484 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 485 | dependencies: 486 | number-is-nan "^1.0.0" 487 | 488 | is-fullwidth-code-point@^2.0.0: 489 | version "2.0.0" 490 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 491 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 492 | 493 | isarray@~1.0.0: 494 | version "1.0.0" 495 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 496 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 497 | 498 | lru-cache@^6.0.0: 499 | version "6.0.0" 500 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 501 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 502 | dependencies: 503 | yallist "^4.0.0" 504 | 505 | make-dir@^3.1.0: 506 | version "3.1.0" 507 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 508 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 509 | dependencies: 510 | semver "^6.0.0" 511 | 512 | media-typer@0.3.0: 513 | version "0.3.0" 514 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 515 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= 516 | 517 | merge-descriptors@1.0.1: 518 | version "1.0.1" 519 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 520 | integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= 521 | 522 | methods@~1.1.2: 523 | version "1.1.2" 524 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 525 | integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= 526 | 527 | mime-db@1.45.0: 528 | version "1.45.0" 529 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea" 530 | integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w== 531 | 532 | mime-types@~2.1.24: 533 | version "2.1.28" 534 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.28.tgz#1160c4757eab2c5363888e005273ecf79d2a0ecd" 535 | integrity sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ== 536 | dependencies: 537 | mime-db "1.45.0" 538 | 539 | mime@1.6.0: 540 | version "1.6.0" 541 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 542 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 543 | 544 | minimatch@^3.0.4: 545 | version "3.0.4" 546 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 547 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 548 | dependencies: 549 | brace-expansion "^1.1.7" 550 | 551 | minimist@^1.2.0, minimist@^1.2.5: 552 | version "1.2.5" 553 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 554 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 555 | 556 | minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: 557 | version "2.9.0" 558 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" 559 | integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== 560 | dependencies: 561 | safe-buffer "^5.1.2" 562 | yallist "^3.0.0" 563 | 564 | minipass@^3.0.0: 565 | version "3.1.5" 566 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.5.tgz#71f6251b0a33a49c01b3cf97ff77eda030dff732" 567 | integrity sha512-+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw== 568 | dependencies: 569 | yallist "^4.0.0" 570 | 571 | minizlib@^1.2.1: 572 | version "1.3.3" 573 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" 574 | integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== 575 | dependencies: 576 | minipass "^2.9.0" 577 | 578 | minizlib@^2.1.1: 579 | version "2.1.2" 580 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" 581 | integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== 582 | dependencies: 583 | minipass "^3.0.0" 584 | yallist "^4.0.0" 585 | 586 | mkdirp@^0.5.0, mkdirp@^0.5.1: 587 | version "0.5.5" 588 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 589 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 590 | dependencies: 591 | minimist "^1.2.5" 592 | 593 | mkdirp@^1.0.3: 594 | version "1.0.4" 595 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 596 | integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== 597 | 598 | ms@2.0.0: 599 | version "2.0.0" 600 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 601 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 602 | 603 | ms@2.1.1: 604 | version "2.1.1" 605 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 606 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 607 | 608 | ms@2.1.2: 609 | version "2.1.2" 610 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 611 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 612 | 613 | ms@^2.1.1: 614 | version "2.1.3" 615 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 616 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 617 | 618 | needle@^2.2.1: 619 | version "2.6.0" 620 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.6.0.tgz#24dbb55f2509e2324b4a99d61f413982013ccdbe" 621 | integrity sha512-KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg== 622 | dependencies: 623 | debug "^3.2.6" 624 | iconv-lite "^0.4.4" 625 | sax "^1.2.4" 626 | 627 | negotiator@0.6.2: 628 | version "0.6.2" 629 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" 630 | integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== 631 | 632 | node-fetch@^2.6.1: 633 | version "2.6.5" 634 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.5.tgz#42735537d7f080a7e5f78b6c549b7146be1742fd" 635 | integrity sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ== 636 | dependencies: 637 | whatwg-url "^5.0.0" 638 | 639 | node-pre-gyp@^0.13.0: 640 | version "0.13.0" 641 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.13.0.tgz#df9ab7b68dd6498137717838e4f92a33fc9daa42" 642 | integrity sha512-Md1D3xnEne8b/HGVQkZZwV27WUi1ZRuZBij24TNaZwUPU3ZAFtvT6xxJGaUVillfmMKnn5oD1HoGsp2Ftik7SQ== 643 | dependencies: 644 | detect-libc "^1.0.2" 645 | mkdirp "^0.5.1" 646 | needle "^2.2.1" 647 | nopt "^4.0.1" 648 | npm-packlist "^1.1.6" 649 | npmlog "^4.0.2" 650 | rc "^1.2.7" 651 | rimraf "^2.6.1" 652 | semver "^5.3.0" 653 | tar "^4" 654 | 655 | nopt@^4.0.1: 656 | version "4.0.3" 657 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" 658 | integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== 659 | dependencies: 660 | abbrev "1" 661 | osenv "^0.1.4" 662 | 663 | nopt@^5.0.0: 664 | version "5.0.0" 665 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" 666 | integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== 667 | dependencies: 668 | abbrev "1" 669 | 670 | npm-bundled@^1.0.1: 671 | version "1.1.1" 672 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b" 673 | integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA== 674 | dependencies: 675 | npm-normalize-package-bin "^1.0.1" 676 | 677 | npm-normalize-package-bin@^1.0.1: 678 | version "1.0.1" 679 | resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" 680 | integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== 681 | 682 | npm-packlist@^1.1.6: 683 | version "1.4.8" 684 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e" 685 | integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A== 686 | dependencies: 687 | ignore-walk "^3.0.1" 688 | npm-bundled "^1.0.1" 689 | npm-normalize-package-bin "^1.0.1" 690 | 691 | npmlog@^4.0.2, npmlog@^4.1.2: 692 | version "4.1.2" 693 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 694 | integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== 695 | dependencies: 696 | are-we-there-yet "~1.1.2" 697 | console-control-strings "~1.1.0" 698 | gauge "~2.7.3" 699 | set-blocking "~2.0.0" 700 | 701 | number-is-nan@^1.0.0: 702 | version "1.0.1" 703 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 704 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 705 | 706 | object-assign@^4, object-assign@^4.1.0: 707 | version "4.1.1" 708 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 709 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 710 | 711 | on-finished@~2.3.0: 712 | version "2.3.0" 713 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 714 | integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= 715 | dependencies: 716 | ee-first "1.1.1" 717 | 718 | once@^1.3.0: 719 | version "1.4.0" 720 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 721 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 722 | dependencies: 723 | wrappy "1" 724 | 725 | os-homedir@^1.0.0: 726 | version "1.0.2" 727 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 728 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 729 | 730 | os-tmpdir@^1.0.0: 731 | version "1.0.2" 732 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 733 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 734 | 735 | osenv@^0.1.4: 736 | version "0.1.5" 737 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 738 | integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== 739 | dependencies: 740 | os-homedir "^1.0.0" 741 | os-tmpdir "^1.0.0" 742 | 743 | parseurl@~1.3.3: 744 | version "1.3.3" 745 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" 746 | integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== 747 | 748 | path-is-absolute@^1.0.0: 749 | version "1.0.1" 750 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 751 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 752 | 753 | path-to-regexp@0.1.7: 754 | version "0.1.7" 755 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 756 | integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= 757 | 758 | process-nextick-args@~2.0.0: 759 | version "2.0.1" 760 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 761 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 762 | 763 | proxy-addr@~2.0.5: 764 | version "2.0.6" 765 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" 766 | integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw== 767 | dependencies: 768 | forwarded "~0.1.2" 769 | ipaddr.js "1.9.1" 770 | 771 | qs@6.7.0: 772 | version "6.7.0" 773 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" 774 | integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== 775 | 776 | range-parser@~1.2.1: 777 | version "1.2.1" 778 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" 779 | integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== 780 | 781 | raw-body@2.4.0: 782 | version "2.4.0" 783 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" 784 | integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== 785 | dependencies: 786 | bytes "3.1.0" 787 | http-errors "1.7.2" 788 | iconv-lite "0.4.24" 789 | unpipe "1.0.0" 790 | 791 | rc@^1.2.7: 792 | version "1.2.8" 793 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 794 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 795 | dependencies: 796 | deep-extend "^0.6.0" 797 | ini "~1.3.0" 798 | minimist "^1.2.0" 799 | strip-json-comments "~2.0.1" 800 | 801 | readable-stream@^2.0.6: 802 | version "2.3.7" 803 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 804 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 805 | dependencies: 806 | core-util-is "~1.0.0" 807 | inherits "~2.0.3" 808 | isarray "~1.0.0" 809 | process-nextick-args "~2.0.0" 810 | safe-buffer "~5.1.1" 811 | string_decoder "~1.1.1" 812 | util-deprecate "~1.0.1" 813 | 814 | rimraf@^2.6.1: 815 | version "2.7.1" 816 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 817 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 818 | dependencies: 819 | glob "^7.1.3" 820 | 821 | rimraf@^3.0.2: 822 | version "3.0.2" 823 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 824 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 825 | dependencies: 826 | glob "^7.1.3" 827 | 828 | safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 829 | version "5.1.2" 830 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 831 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 832 | 833 | safe-buffer@^5.1.2: 834 | version "5.2.1" 835 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 836 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 837 | 838 | "safer-buffer@>= 2.1.2 < 3": 839 | version "2.1.2" 840 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 841 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 842 | 843 | sax@^1.2.4: 844 | version "1.2.4" 845 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 846 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 847 | 848 | semver@^5.3.0: 849 | version "5.7.1" 850 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 851 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 852 | 853 | semver@^6.0.0: 854 | version "6.3.0" 855 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 856 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 857 | 858 | semver@^7.3.4: 859 | version "7.3.5" 860 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 861 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 862 | dependencies: 863 | lru-cache "^6.0.0" 864 | 865 | send@0.17.1: 866 | version "0.17.1" 867 | resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" 868 | integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== 869 | dependencies: 870 | debug "2.6.9" 871 | depd "~1.1.2" 872 | destroy "~1.0.4" 873 | encodeurl "~1.0.2" 874 | escape-html "~1.0.3" 875 | etag "~1.8.1" 876 | fresh "0.5.2" 877 | http-errors "~1.7.2" 878 | mime "1.6.0" 879 | ms "2.1.1" 880 | on-finished "~2.3.0" 881 | range-parser "~1.2.1" 882 | statuses "~1.5.0" 883 | 884 | serve-static@1.14.1: 885 | version "1.14.1" 886 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" 887 | integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== 888 | dependencies: 889 | encodeurl "~1.0.2" 890 | escape-html "~1.0.3" 891 | parseurl "~1.3.3" 892 | send "0.17.1" 893 | 894 | set-blocking@~2.0.0: 895 | version "2.0.0" 896 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 897 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 898 | 899 | setprototypeof@1.1.1: 900 | version "1.1.1" 901 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" 902 | integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== 903 | 904 | signal-exit@^3.0.0: 905 | version "3.0.3" 906 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 907 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 908 | 909 | socket.io-adapter@~2.3.2: 910 | version "2.3.2" 911 | resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-2.3.2.tgz#039cd7c71a52abad984a6d57da2c0b7ecdd3c289" 912 | integrity sha512-PBZpxUPYjmoogY0aoaTmo1643JelsaS1CiAwNjRVdrI0X9Seuc19Y2Wife8k88avW6haG8cznvwbubAZwH4Mtg== 913 | 914 | socket.io-parser@~4.0.4: 915 | version "4.0.4" 916 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-4.0.4.tgz#9ea21b0d61508d18196ef04a2c6b9ab630f4c2b0" 917 | integrity sha512-t+b0SS+IxG7Rxzda2EVvyBZbvFPBCjJoyHuE0P//7OAsN23GItzDRdWa6ALxZI/8R5ygK7jAR6t028/z+7295g== 918 | dependencies: 919 | "@types/component-emitter" "^1.2.10" 920 | component-emitter "~1.3.0" 921 | debug "~4.3.1" 922 | 923 | socket.io@^4.2.0: 924 | version "4.2.0" 925 | resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-4.2.0.tgz#9e1c09d3ea647e24963a2e7ba8ea5c847778e2ed" 926 | integrity sha512-sjlGfMmnaWvTRVxGRGWyhd9ctpg4APxWAxu85O/SxekkxHhfxmePWZbaYCkeX5QQX0z1YEnKOlNt6w82E4Nzug== 927 | dependencies: 928 | "@types/cookie" "^0.4.1" 929 | "@types/cors" "^2.8.12" 930 | "@types/node" ">=10.0.0" 931 | accepts "~1.3.4" 932 | base64id "~2.0.0" 933 | debug "~4.3.2" 934 | engine.io "~5.2.0" 935 | socket.io-adapter "~2.3.2" 936 | socket.io-parser "~4.0.4" 937 | 938 | "statuses@>= 1.5.0 < 2", statuses@~1.5.0: 939 | version "1.5.0" 940 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 941 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 942 | 943 | string-width@^1.0.1: 944 | version "1.0.2" 945 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 946 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 947 | dependencies: 948 | code-point-at "^1.0.0" 949 | is-fullwidth-code-point "^1.0.0" 950 | strip-ansi "^3.0.0" 951 | 952 | "string-width@^1.0.2 || 2": 953 | version "2.1.1" 954 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 955 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 956 | dependencies: 957 | is-fullwidth-code-point "^2.0.0" 958 | strip-ansi "^4.0.0" 959 | 960 | string_decoder@~1.1.1: 961 | version "1.1.1" 962 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 963 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 964 | dependencies: 965 | safe-buffer "~5.1.0" 966 | 967 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 968 | version "3.0.1" 969 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 970 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 971 | dependencies: 972 | ansi-regex "^2.0.0" 973 | 974 | strip-ansi@^4.0.0: 975 | version "4.0.0" 976 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 977 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 978 | dependencies: 979 | ansi-regex "^3.0.0" 980 | 981 | strip-json-comments@~2.0.1: 982 | version "2.0.1" 983 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 984 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 985 | 986 | tar@^4: 987 | version "4.4.13" 988 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" 989 | integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== 990 | dependencies: 991 | chownr "^1.1.1" 992 | fs-minipass "^1.2.5" 993 | minipass "^2.8.6" 994 | minizlib "^1.2.1" 995 | mkdirp "^0.5.0" 996 | safe-buffer "^5.1.2" 997 | yallist "^3.0.3" 998 | 999 | tar@^6.1.0: 1000 | version "6.1.11" 1001 | resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" 1002 | integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== 1003 | dependencies: 1004 | chownr "^2.0.0" 1005 | fs-minipass "^2.0.0" 1006 | minipass "^3.0.0" 1007 | minizlib "^2.1.1" 1008 | mkdirp "^1.0.3" 1009 | yallist "^4.0.0" 1010 | 1011 | toidentifier@1.0.0: 1012 | version "1.0.0" 1013 | resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" 1014 | integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== 1015 | 1016 | tr46@~0.0.3: 1017 | version "0.0.3" 1018 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 1019 | integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= 1020 | 1021 | type-is@~1.6.17, type-is@~1.6.18: 1022 | version "1.6.18" 1023 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" 1024 | integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== 1025 | dependencies: 1026 | media-typer "0.3.0" 1027 | mime-types "~2.1.24" 1028 | 1029 | unpipe@1.0.0, unpipe@~1.0.0: 1030 | version "1.0.0" 1031 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 1032 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= 1033 | 1034 | util-deprecate@~1.0.1: 1035 | version "1.0.2" 1036 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1037 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 1038 | 1039 | utils-merge@1.0.1: 1040 | version "1.0.1" 1041 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 1042 | integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= 1043 | 1044 | vary@^1, vary@~1.1.2: 1045 | version "1.1.2" 1046 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 1047 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 1048 | 1049 | webidl-conversions@^3.0.0: 1050 | version "3.0.1" 1051 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 1052 | integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= 1053 | 1054 | webidl-conversions@^4.0.2: 1055 | version "4.0.2" 1056 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 1057 | integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== 1058 | 1059 | whatwg-url@^5.0.0: 1060 | version "5.0.0" 1061 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" 1062 | integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= 1063 | dependencies: 1064 | tr46 "~0.0.3" 1065 | webidl-conversions "^3.0.0" 1066 | 1067 | wide-align@^1.1.0: 1068 | version "1.1.3" 1069 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 1070 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 1071 | dependencies: 1072 | string-width "^1.0.2 || 2" 1073 | 1074 | wrappy@1: 1075 | version "1.0.2" 1076 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1077 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1078 | 1079 | wrtc@^0.4.7: 1080 | version "0.4.7" 1081 | resolved "https://registry.yarnpkg.com/wrtc/-/wrtc-0.4.7.tgz#c61530cd662713e50bffe64b7a78673ce070426c" 1082 | integrity sha512-P6Hn7VT4lfSH49HxLHcHhDq+aFf/jd9dPY7lDHeFhZ22N3858EKuwm2jmnlPzpsRGEPaoF6XwkcxY5SYnt4f/g== 1083 | dependencies: 1084 | node-pre-gyp "^0.13.0" 1085 | optionalDependencies: 1086 | domexception "^1.0.1" 1087 | 1088 | ws@~7.4.2: 1089 | version "7.4.6" 1090 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" 1091 | integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== 1092 | 1093 | yallist@^3.0.0, yallist@^3.0.3: 1094 | version "3.1.1" 1095 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 1096 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== 1097 | 1098 | yallist@^4.0.0: 1099 | version "4.0.0" 1100 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1101 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1102 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | archive: 5 | dependency: transitive 6 | description: 7 | name: archive 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "3.1.2" 11 | assets_audio_player: 12 | dependency: "direct main" 13 | description: 14 | name: assets_audio_player 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "3.0.3+6" 18 | assets_audio_player_web: 19 | dependency: transitive 20 | description: 21 | name: assets_audio_player_web 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "3.0.3+6" 25 | async: 26 | dependency: transitive 27 | description: 28 | name: async 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "2.6.1" 32 | boolean_selector: 33 | dependency: transitive 34 | description: 35 | name: boolean_selector 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "2.1.0" 39 | characters: 40 | dependency: transitive 41 | description: 42 | name: characters 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.1.0" 46 | charcode: 47 | dependency: transitive 48 | description: 49 | name: charcode 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "1.2.0" 53 | clock: 54 | dependency: transitive 55 | description: 56 | name: clock 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "1.1.0" 60 | collection: 61 | dependency: transitive 62 | description: 63 | name: collection 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "1.15.0" 67 | crypto: 68 | dependency: transitive 69 | description: 70 | name: crypto 71 | url: "https://pub.dartlang.org" 72 | source: hosted 73 | version: "3.0.1" 74 | cupertino_icons: 75 | dependency: "direct main" 76 | description: 77 | name: cupertino_icons 78 | url: "https://pub.dartlang.org" 79 | source: hosted 80 | version: "1.0.3" 81 | fake_async: 82 | dependency: transitive 83 | description: 84 | name: fake_async 85 | url: "https://pub.dartlang.org" 86 | source: hosted 87 | version: "1.2.0" 88 | ffi: 89 | dependency: transitive 90 | description: 91 | name: ffi 92 | url: "https://pub.dartlang.org" 93 | source: hosted 94 | version: "1.1.2" 95 | file: 96 | dependency: transitive 97 | description: 98 | name: file 99 | url: "https://pub.dartlang.org" 100 | source: hosted 101 | version: "6.1.0" 102 | flutter: 103 | dependency: "direct main" 104 | description: flutter 105 | source: sdk 106 | version: "0.0.0" 107 | flutter_driver: 108 | dependency: transitive 109 | description: flutter 110 | source: sdk 111 | version: "0.0.0" 112 | flutter_test: 113 | dependency: "direct dev" 114 | description: flutter 115 | source: sdk 116 | version: "0.0.0" 117 | flutter_web_plugins: 118 | dependency: transitive 119 | description: flutter 120 | source: sdk 121 | version: "0.0.0" 122 | flutter_webrtc: 123 | dependency: "direct main" 124 | description: 125 | name: flutter_webrtc 126 | url: "https://pub.dartlang.org" 127 | source: hosted 128 | version: "0.6.10+hotfix.1" 129 | fuchsia_remote_debug_protocol: 130 | dependency: transitive 131 | description: flutter 132 | source: sdk 133 | version: "0.0.0" 134 | get: 135 | dependency: "direct main" 136 | description: 137 | name: get 138 | url: "https://pub.dartlang.org" 139 | source: hosted 140 | version: "4.3.8" 141 | get_storage: 142 | dependency: "direct main" 143 | description: 144 | name: get_storage 145 | url: "https://pub.dartlang.org" 146 | source: hosted 147 | version: "2.0.3" 148 | http: 149 | dependency: "direct main" 150 | description: 151 | name: http 152 | url: "https://pub.dartlang.org" 153 | source: hosted 154 | version: "0.13.3" 155 | http_parser: 156 | dependency: transitive 157 | description: 158 | name: http_parser 159 | url: "https://pub.dartlang.org" 160 | source: hosted 161 | version: "4.0.0" 162 | integration_test: 163 | dependency: "direct dev" 164 | description: flutter 165 | source: sdk 166 | version: "0.0.0" 167 | js: 168 | dependency: transitive 169 | description: 170 | name: js 171 | url: "https://pub.dartlang.org" 172 | source: hosted 173 | version: "0.6.3" 174 | logging: 175 | dependency: transitive 176 | description: 177 | name: logging 178 | url: "https://pub.dartlang.org" 179 | source: hosted 180 | version: "1.0.2" 181 | matcher: 182 | dependency: transitive 183 | description: 184 | name: matcher 185 | url: "https://pub.dartlang.org" 186 | source: hosted 187 | version: "0.12.10" 188 | meta: 189 | dependency: transitive 190 | description: 191 | name: meta 192 | url: "https://pub.dartlang.org" 193 | source: hosted 194 | version: "1.3.0" 195 | path: 196 | dependency: transitive 197 | description: 198 | name: path 199 | url: "https://pub.dartlang.org" 200 | source: hosted 201 | version: "1.8.0" 202 | path_provider: 203 | dependency: transitive 204 | description: 205 | name: path_provider 206 | url: "https://pub.dartlang.org" 207 | source: hosted 208 | version: "2.0.4" 209 | path_provider_linux: 210 | dependency: transitive 211 | description: 212 | name: path_provider_linux 213 | url: "https://pub.dartlang.org" 214 | source: hosted 215 | version: "2.1.0" 216 | path_provider_macos: 217 | dependency: transitive 218 | description: 219 | name: path_provider_macos 220 | url: "https://pub.dartlang.org" 221 | source: hosted 222 | version: "2.0.2" 223 | path_provider_platform_interface: 224 | dependency: transitive 225 | description: 226 | name: path_provider_platform_interface 227 | url: "https://pub.dartlang.org" 228 | source: hosted 229 | version: "2.0.1" 230 | path_provider_windows: 231 | dependency: transitive 232 | description: 233 | name: path_provider_windows 234 | url: "https://pub.dartlang.org" 235 | source: hosted 236 | version: "2.0.3" 237 | pedantic: 238 | dependency: transitive 239 | description: 240 | name: pedantic 241 | url: "https://pub.dartlang.org" 242 | source: hosted 243 | version: "1.11.1" 244 | platform: 245 | dependency: transitive 246 | description: 247 | name: platform 248 | url: "https://pub.dartlang.org" 249 | source: hosted 250 | version: "3.0.0" 251 | plugin_platform_interface: 252 | dependency: transitive 253 | description: 254 | name: plugin_platform_interface 255 | url: "https://pub.dartlang.org" 256 | source: hosted 257 | version: "2.0.2" 258 | process: 259 | dependency: transitive 260 | description: 261 | name: process 262 | url: "https://pub.dartlang.org" 263 | source: hosted 264 | version: "4.2.1" 265 | rxdart: 266 | dependency: transitive 267 | description: 268 | name: rxdart 269 | url: "https://pub.dartlang.org" 270 | source: hosted 271 | version: "0.27.2" 272 | sdp_transform: 273 | dependency: "direct main" 274 | description: 275 | name: sdp_transform 276 | url: "https://pub.dartlang.org" 277 | source: hosted 278 | version: "0.3.2" 279 | sky_engine: 280 | dependency: transitive 281 | description: flutter 282 | source: sdk 283 | version: "0.0.99" 284 | socket_io_client: 285 | dependency: "direct main" 286 | description: 287 | name: socket_io_client 288 | url: "https://pub.dartlang.org" 289 | source: hosted 290 | version: "2.0.0-beta.4-nullsafety.0" 291 | socket_io_common: 292 | dependency: transitive 293 | description: 294 | name: socket_io_common 295 | url: "https://pub.dartlang.org" 296 | source: hosted 297 | version: "2.0.0-beta.1-nullsafety.1" 298 | source_span: 299 | dependency: transitive 300 | description: 301 | name: source_span 302 | url: "https://pub.dartlang.org" 303 | source: hosted 304 | version: "1.8.1" 305 | stack_trace: 306 | dependency: transitive 307 | description: 308 | name: stack_trace 309 | url: "https://pub.dartlang.org" 310 | source: hosted 311 | version: "1.10.0" 312 | stream_channel: 313 | dependency: transitive 314 | description: 315 | name: stream_channel 316 | url: "https://pub.dartlang.org" 317 | source: hosted 318 | version: "2.1.0" 319 | string_scanner: 320 | dependency: transitive 321 | description: 322 | name: string_scanner 323 | url: "https://pub.dartlang.org" 324 | source: hosted 325 | version: "1.1.0" 326 | sync_http: 327 | dependency: transitive 328 | description: 329 | name: sync_http 330 | url: "https://pub.dartlang.org" 331 | source: hosted 332 | version: "0.3.0" 333 | term_glyph: 334 | dependency: transitive 335 | description: 336 | name: term_glyph 337 | url: "https://pub.dartlang.org" 338 | source: hosted 339 | version: "1.2.0" 340 | test_api: 341 | dependency: transitive 342 | description: 343 | name: test_api 344 | url: "https://pub.dartlang.org" 345 | source: hosted 346 | version: "0.3.0" 347 | typed_data: 348 | dependency: transitive 349 | description: 350 | name: typed_data 351 | url: "https://pub.dartlang.org" 352 | source: hosted 353 | version: "1.3.0" 354 | uuid: 355 | dependency: transitive 356 | description: 357 | name: uuid 358 | url: "https://pub.dartlang.org" 359 | source: hosted 360 | version: "3.0.5" 361 | vector_math: 362 | dependency: transitive 363 | description: 364 | name: vector_math 365 | url: "https://pub.dartlang.org" 366 | source: hosted 367 | version: "2.1.0" 368 | vm_service: 369 | dependency: transitive 370 | description: 371 | name: vm_service 372 | url: "https://pub.dartlang.org" 373 | source: hosted 374 | version: "6.2.0" 375 | webdriver: 376 | dependency: transitive 377 | description: 378 | name: webdriver 379 | url: "https://pub.dartlang.org" 380 | source: hosted 381 | version: "3.0.0" 382 | win32: 383 | dependency: transitive 384 | description: 385 | name: win32 386 | url: "https://pub.dartlang.org" 387 | source: hosted 388 | version: "2.2.9" 389 | xdg_directories: 390 | dependency: transitive 391 | description: 392 | name: xdg_directories 393 | url: "https://pub.dartlang.org" 394 | source: hosted 395 | version: "0.2.0" 396 | sdks: 397 | dart: ">=2.13.0 <3.0.0" 398 | flutter: ">=2.0.0" 399 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: get_boilerplate 2 | description: A new Flutter project. 3 | 4 | # The following line prevents the package from being accidentally published to 5 | # pub.dev using `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.7.0 <3.0.0" 22 | 23 | dependencies: 24 | flutter: 25 | sdk: flutter 26 | 27 | # The following adds the Cupertino Icons font to your application. 28 | # Use with the CupertinoIcons class for iOS style icons. 29 | cupertino_icons: ^1.0.1 30 | get: ^4.3.8 31 | get_storage: ^2.0.3 32 | http: ^0.13.3 33 | flutter_webrtc: ^0.6.10+hotfix.1 34 | sdp_transform: ^0.3.2 35 | assets_audio_player: ^3.0.3+6 36 | socket_io_client: ^2.0.0-beta.4-nullsafety.0 37 | 38 | dev_dependencies: 39 | flutter_test: 40 | sdk: flutter 41 | integration_test: 42 | sdk: flutter 43 | 44 | # For information on the generic Dart part of this file, see the 45 | # following page: https://dart.dev/tools/pub/pubspec 46 | 47 | # The following section is specific to Flutter. 48 | flutter: 49 | # The following line ensures that the Material Icons font is 50 | # included with your application, so that you can use the icons in 51 | # the material Icons class. 52 | uses-material-design: true 53 | 54 | # To add assets to your application, add an assets section, like this: 55 | # assets: 56 | # - images/a_dot_burr.jpeg 57 | # - images/a_dot_ham.jpeg 58 | 59 | # An image asset can refer to one or more resolution-specific "variants", see 60 | # https://flutter.dev/assets-and-images/#resolution-aware. 61 | 62 | # For details regarding adding assets from package dependencies, see 63 | # https://flutter.dev/assets-and-images/#from-packages 64 | 65 | # To add custom fonts to your application, add a fonts section here, 66 | # in this "flutter" section. Each entry in this list should have a 67 | # "family" key with the font family name, and a "fonts" key with a 68 | # list giving the asset and other descriptors for the font. For 69 | # example: 70 | # fonts: 71 | # - family: Schyler 72 | # fonts: 73 | # - asset: fonts/Schyler-Regular.ttf 74 | # - asset: fonts/Schyler-Italic.ttf 75 | # style: italic 76 | # - family: Trajan Pro 77 | # fonts: 78 | # - asset: fonts/TrajanPro.ttf 79 | # - asset: fonts/TrajanPro_Bold.ttf 80 | # weight: 700 81 | # 82 | # For details regarding fonts from package dependencies, 83 | # see https://flutter.dev/custom-fonts/#from-packages 84 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | flutter clean 2 | flutter pub get 3 | flutter run 4 | -------------------------------------------------------------------------------- /screenshots/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/screenshots/result.jpg -------------------------------------------------------------------------------- /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:get_boilerplate/src/app.dart'; 10 | import 'package:flutter_test/flutter_test.dart'; 11 | 12 | void main() { 13 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 14 | // Build our app and trigger a frame. 15 | await tester.pumpWidget(App()); 16 | 17 | // Verify that our counter starts at 0. 18 | expect(find.text('0'), findsOneWidget); 19 | expect(find.text('1'), findsNothing); 20 | 21 | // Tap the '+' icon and trigger a frame. 22 | await tester.tap(find.byIcon(Icons.add)); 23 | await tester.pump(); 24 | 25 | // Verify that our counter has incremented. 26 | expect(find.text('0'), findsNothing); 27 | expect(find.text('1'), findsOneWidget); 28 | }); 29 | } 30 | -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-sfu-video-call-group/e5f86b4b6e2e8d57abea9be38e9d6030d254f267/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | get_boilerplate 30 | 31 | 32 | 33 | 36 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "get_boilerplate", 3 | "short_name": "get_boilerplate", 4 | "start_url": ".", 5 | "display": "standalone", 6 | "background_color": "#0175C2", 7 | "theme_color": "#0175C2", 8 | "description": "A new Flutter project.", 9 | "orientation": "portrait-primary", 10 | "prefer_related_applications": false, 11 | "icons": [ 12 | { 13 | "src": "icons/Icon-192.png", 14 | "sizes": "192x192", 15 | "type": "image/png" 16 | }, 17 | { 18 | "src": "icons/Icon-512.png", 19 | "sizes": "512x512", 20 | "type": "image/png" 21 | } 22 | ] 23 | } 24 | --------------------------------------------------------------------------------