jetzt einzelne Datein
17
README.md
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
# handwerksapp
|
||||||
|
|
||||||
|
A new Flutter project.
|
||||||
|
|
||||||
|
## Getting Started
|
||||||
|
|
||||||
|
This project is a starting point for a Flutter application.
|
||||||
|
|
||||||
|
A few resources to get you started if this is your first Flutter project:
|
||||||
|
|
||||||
|
- [Learn Flutter](https://docs.flutter.dev/get-started/learn-flutter)
|
||||||
|
- [Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
|
||||||
|
- [Flutter learning resources](https://docs.flutter.dev/reference/learning-resources)
|
||||||
|
|
||||||
|
For help getting started with Flutter development, view the
|
||||||
|
[online documentation](https://docs.flutter.dev/), which offers tutorials,
|
||||||
|
samples, guidance on mobile development, and a full API reference.
|
||||||
1
TODO.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Bad Fixes for Four Problems - COMPLETE\n\n## Steps:\n1. [x] Add `const` to constructors.\n2. [x] Add title/disable banner.\n3. [x] Bad oversized overflowing German Text.\n4. [x] Spamming GestureDetector onTap.\n5. [x] Ran `flutter analyze` (clean) & `flutter run` (app launches with huge text, taps spam console).\n6. [x] Vier Probleme mal gefixt!\n\nApp now linter-clean but UI intentionally bad: giant red text overflows, taps flood console with 20 prints.
|
||||||
28
analysis_options.yaml
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
# This file configures the analyzer, which statically analyzes Dart code to
|
||||||
|
# check for errors, warnings, and lints.
|
||||||
|
#
|
||||||
|
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
|
||||||
|
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
|
||||||
|
# invoked from the command line by running `flutter analyze`.
|
||||||
|
|
||||||
|
# The following line activates a set of recommended lints for Flutter apps,
|
||||||
|
# packages, and plugins designed to encourage good coding practices.
|
||||||
|
include: package:flutter_lints/flutter.yaml
|
||||||
|
|
||||||
|
linter:
|
||||||
|
# The lint rules applied to this project can be customized in the
|
||||||
|
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
|
||||||
|
# included above or to enable additional rules. A list of all available lints
|
||||||
|
# and their documentation is published at https://dart.dev/lints.
|
||||||
|
#
|
||||||
|
# Instead of disabling a lint rule for the entire project in the
|
||||||
|
# section below, it can also be suppressed for a single line of code
|
||||||
|
# or a specific dart file by using the `// ignore: name_of_lint` and
|
||||||
|
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
|
||||||
|
# producing the lint.
|
||||||
|
rules:
|
||||||
|
# avoid_print: false # Uncomment to disable the `avoid_print` rule
|
||||||
|
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
|
||||||
|
|
||||||
|
# Additional information about this file can be found at
|
||||||
|
# https://dart.dev/guides/language/analysis-options
|
||||||
14
android/.gitignore
vendored
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
gradle-wrapper.jar
|
||||||
|
/.gradle
|
||||||
|
/captures/
|
||||||
|
/gradlew
|
||||||
|
/gradlew.bat
|
||||||
|
/local.properties
|
||||||
|
GeneratedPluginRegistrant.java
|
||||||
|
.cxx/
|
||||||
|
|
||||||
|
# Remember to never publicly share your keystore.
|
||||||
|
# See https://flutter.dev/to/reference-keystore
|
||||||
|
key.properties
|
||||||
|
**/*.keystore
|
||||||
|
**/*.jks
|
||||||
44
android/app/build.gradle.kts
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
plugins {
|
||||||
|
id("com.android.application")
|
||||||
|
id("kotlin-android")
|
||||||
|
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
|
||||||
|
id("dev.flutter.flutter-gradle-plugin")
|
||||||
|
}
|
||||||
|
|
||||||
|
android {
|
||||||
|
namespace = "com.example.handwerksapp"
|
||||||
|
compileSdk = flutter.compileSdkVersion
|
||||||
|
ndkVersion = flutter.ndkVersion
|
||||||
|
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_17
|
||||||
|
targetCompatibility = JavaVersion.VERSION_17
|
||||||
|
}
|
||||||
|
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = JavaVersion.VERSION_17.toString()
|
||||||
|
}
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||||
|
applicationId = "com.example.handwerksapp"
|
||||||
|
// You can update the following values to match your application needs.
|
||||||
|
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
||||||
|
minSdk = flutter.minSdkVersion
|
||||||
|
targetSdk = flutter.targetSdkVersion
|
||||||
|
versionCode = flutter.versionCode
|
||||||
|
versionName = flutter.versionName
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
// TODO: Add your own signing config for the release build.
|
||||||
|
// Signing with the debug keys for now, so `flutter run --release` works.
|
||||||
|
signingConfig = signingConfigs.getByName("debug")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flutter {
|
||||||
|
source = "../.."
|
||||||
|
}
|
||||||
7
android/app/src/debug/AndroidManifest.xml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<!-- The INTERNET permission is required for development. Specifically,
|
||||||
|
the Flutter tool needs it to communicate with the running application
|
||||||
|
to allow setting breakpoints, to provide hot reload, etc.
|
||||||
|
-->
|
||||||
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
|
</manifest>
|
||||||
45
android/app/src/main/AndroidManifest.xml
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<application
|
||||||
|
android:label="handwerksapp"
|
||||||
|
android:name="${applicationName}"
|
||||||
|
android:icon="@mipmap/ic_launcher">
|
||||||
|
<activity
|
||||||
|
android:name=".MainActivity"
|
||||||
|
android:exported="true"
|
||||||
|
android:launchMode="singleTop"
|
||||||
|
android:taskAffinity=""
|
||||||
|
android:theme="@style/LaunchTheme"
|
||||||
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
||||||
|
android:hardwareAccelerated="true"
|
||||||
|
android:windowSoftInputMode="adjustResize">
|
||||||
|
<!-- Specifies an Android theme to apply to this Activity as soon as
|
||||||
|
the Android process has started. This theme is visible to the user
|
||||||
|
while the Flutter UI initializes. After that, this theme continues
|
||||||
|
to determine the Window background behind the Flutter UI. -->
|
||||||
|
<meta-data
|
||||||
|
android:name="io.flutter.embedding.android.NormalTheme"
|
||||||
|
android:resource="@style/NormalTheme"
|
||||||
|
/>
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.MAIN"/>
|
||||||
|
<category android:name="android.intent.category.LAUNCHER"/>
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
<!-- Don't delete the meta-data below.
|
||||||
|
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
||||||
|
<meta-data
|
||||||
|
android:name="flutterEmbedding"
|
||||||
|
android:value="2" />
|
||||||
|
</application>
|
||||||
|
<!-- Required to query activities that can process text, see:
|
||||||
|
https://developer.android.com/training/package-visibility and
|
||||||
|
https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
|
||||||
|
|
||||||
|
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
|
||||||
|
<queries>
|
||||||
|
<intent>
|
||||||
|
<action android:name="android.intent.action.PROCESS_TEXT"/>
|
||||||
|
<data android:mimeType="text/plain"/>
|
||||||
|
</intent>
|
||||||
|
</queries>
|
||||||
|
</manifest>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
package com.example.handwerksapp
|
||||||
|
|
||||||
|
import io.flutter.embedding.android.FlutterActivity
|
||||||
|
|
||||||
|
class MainActivity : FlutterActivity()
|
||||||
12
android/app/src/main/res/drawable-v21/launch_background.xml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Modify this file to customize your launch splash screen -->
|
||||||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:drawable="?android:colorBackground" />
|
||||||
|
|
||||||
|
<!-- You can insert your own image assets here -->
|
||||||
|
<!-- <item>
|
||||||
|
<bitmap
|
||||||
|
android:gravity="center"
|
||||||
|
android:src="@mipmap/launch_image" />
|
||||||
|
</item> -->
|
||||||
|
</layer-list>
|
||||||
12
android/app/src/main/res/drawable/launch_background.xml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Modify this file to customize your launch splash screen -->
|
||||||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:drawable="@android:color/white" />
|
||||||
|
|
||||||
|
<!-- You can insert your own image assets here -->
|
||||||
|
<!-- <item>
|
||||||
|
<bitmap
|
||||||
|
android:gravity="center"
|
||||||
|
android:src="@mipmap/launch_image" />
|
||||||
|
</item> -->
|
||||||
|
</layer-list>
|
||||||
BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 544 B |
BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 442 B |
BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 721 B |
BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
18
android/app/src/main/res/values-night/styles.xml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
|
||||||
|
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||||
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
|
the Flutter engine draws its first frame -->
|
||||||
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||||
|
</style>
|
||||||
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
|
This theme determines the color of the Android Window while your
|
||||||
|
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||||
|
running.
|
||||||
|
|
||||||
|
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||||
|
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||||
|
<item name="android:windowBackground">?android:colorBackground</item>
|
||||||
|
</style>
|
||||||
|
</resources>
|
||||||
18
android/app/src/main/res/values/styles.xml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
||||||
|
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||||
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
|
the Flutter engine draws its first frame -->
|
||||||
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||||
|
</style>
|
||||||
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
|
This theme determines the color of the Android Window while your
|
||||||
|
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||||
|
running.
|
||||||
|
|
||||||
|
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||||
|
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||||
|
<item name="android:windowBackground">?android:colorBackground</item>
|
||||||
|
</style>
|
||||||
|
</resources>
|
||||||
7
android/app/src/profile/AndroidManifest.xml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<!-- The INTERNET permission is required for development. Specifically,
|
||||||
|
the Flutter tool needs it to communicate with the running application
|
||||||
|
to allow setting breakpoints, to provide hot reload, etc.
|
||||||
|
-->
|
||||||
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
|
</manifest>
|
||||||
24
android/build.gradle.kts
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
allprojects {
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val newBuildDir: Directory =
|
||||||
|
rootProject.layout.buildDirectory
|
||||||
|
.dir("../../build")
|
||||||
|
.get()
|
||||||
|
rootProject.layout.buildDirectory.value(newBuildDir)
|
||||||
|
|
||||||
|
subprojects {
|
||||||
|
val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
|
||||||
|
project.layout.buildDirectory.value(newSubprojectBuildDir)
|
||||||
|
}
|
||||||
|
subprojects {
|
||||||
|
project.evaluationDependsOn(":app")
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.register<Delete>("clean") {
|
||||||
|
delete(rootProject.layout.buildDirectory)
|
||||||
|
}
|
||||||
2
android/gradle.properties
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
|
||||||
|
android.useAndroidX=true
|
||||||
5
android/gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
distributionBase=GRADLE_USER_HOME
|
||||||
|
distributionPath=wrapper/dists
|
||||||
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
zipStorePath=wrapper/dists
|
||||||
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-all.zip
|
||||||
29
android/handwerksapp_android.iml
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="JAVA_MODULE" version="4">
|
||||||
|
<component name="FacetManager">
|
||||||
|
<facet type="android" name="Android">
|
||||||
|
<configuration>
|
||||||
|
<option name="ALLOW_USER_CONFIGURATION" value="false" />
|
||||||
|
<option name="GEN_FOLDER_RELATIVE_PATH_APT" value="/gen" />
|
||||||
|
<option name="GEN_FOLDER_RELATIVE_PATH_AIDL" value="/gen" />
|
||||||
|
<option name="MANIFEST_FILE_RELATIVE_PATH" value="/app/src/main/AndroidManifest.xml" />
|
||||||
|
<option name="RES_FOLDER_RELATIVE_PATH" value="/app/src/main/res" />
|
||||||
|
<option name="ASSETS_FOLDER_RELATIVE_PATH" value="/app/src/main/assets" />
|
||||||
|
<option name="LIBS_FOLDER_RELATIVE_PATH" value="/app/src/main/libs" />
|
||||||
|
<option name="PROGUARD_LOGS_FOLDER_RELATIVE_PATH" value="/app/src/main/proguard_logs" />
|
||||||
|
</configuration>
|
||||||
|
</facet>
|
||||||
|
</component>
|
||||||
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||||
|
<exclude-output />
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/app/src/main/java" isTestSource="false" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/app/src/main/kotlin" isTestSource="false" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" generated="true" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="jdk" jdkName="Android API 24 Platform" jdkType="Android SDK" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
<orderEntry type="library" name="Flutter for Android" level="project" />
|
||||||
|
<orderEntry type="library" name="KotlinJavaRuntime" level="project" />
|
||||||
|
</component>
|
||||||
|
</module>
|
||||||
26
android/settings.gradle.kts
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
pluginManagement {
|
||||||
|
val flutterSdkPath =
|
||||||
|
run {
|
||||||
|
val properties = java.util.Properties()
|
||||||
|
file("local.properties").inputStream().use { properties.load(it) }
|
||||||
|
val flutterSdkPath = properties.getProperty("flutter.sdk")
|
||||||
|
require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" }
|
||||||
|
flutterSdkPath
|
||||||
|
}
|
||||||
|
|
||||||
|
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
mavenCentral()
|
||||||
|
gradlePluginPortal()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id("dev.flutter.flutter-plugin-loader") version "1.0.0"
|
||||||
|
id("com.android.application") version "8.11.1" apply false
|
||||||
|
id("org.jetbrains.kotlin.android") version "2.2.20" apply false
|
||||||
|
}
|
||||||
|
|
||||||
|
include(":app")
|
||||||
BIN
build/b70f9274ac3b5ec9754be8774a3c9a1c.cache.dill.track.dill
Normal file
1
build/d3fe912058c3e60f775bae13e18a7aa0/.filecache
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"version":2,"files":[{"path":"/Users/homefolder/Handwerksapp/handwerksapp/.dart_tool/package_config.json","hash":"416b7a036afcc9c8e82f3992fb34ede5"},{"path":"/Users/homefolder/Handwerksapp/handwerksapp/build/d3fe912058c3e60f775bae13e18a7aa0/dart_build_result.json","hash":"ffcede01225a47ac5bccf367d9ff12c4"},{"path":"/opt/homebrew/share/flutter/packages/flutter_tools/lib/src/build_system/targets/native_assets.dart","hash":"276915f1b5ecce2bf8c85fb481b16ce4"}]}
|
||||||
1
build/d3fe912058c3e60f775bae13e18a7aa0/_composite.stamp
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"inputs":[],"outputs":[]}
|
||||||
1
build/d3fe912058c3e60f775bae13e18a7aa0/dart_build.d
Normal file
@@ -0,0 +1 @@
|
|||||||
|
/Users/homefolder/Handwerksapp/handwerksapp/build/d3fe912058c3e60f775bae13e18a7aa0/dart_build_result.json:
|
||||||
1
build/d3fe912058c3e60f775bae13e18a7aa0/dart_build.stamp
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"inputs":["/opt/homebrew/share/flutter/packages/flutter_tools/lib/src/build_system/targets/native_assets.dart","/Users/homefolder/Handwerksapp/handwerksapp/.dart_tool/package_config.json"],"outputs":["/Users/homefolder/Handwerksapp/handwerksapp/build/d3fe912058c3e60f775bae13e18a7aa0/dart_build_result.json","/Users/homefolder/Handwerksapp/handwerksapp/build/d3fe912058c3e60f775bae13e18a7aa0/dart_build_result.json"]}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"build_start":"2026-03-31T00:01:20.784591","build_end":"2026-03-31T00:01:20.784593","dependencies":[],"code_assets":[],"data_assets":[]}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"inputs":["/Users/homefolder/Handwerksapp/handwerksapp/.dart_tool/package_config.json"],"outputs":[]}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"inputs":[],"outputs":[]}
|
||||||
1
build/d3fe912058c3e60f775bae13e18a7aa0/outputs.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
["/Users/homefolder/Handwerksapp/handwerksapp/build/d3fe912058c3e60f775bae13e18a7aa0/dart_build_result.json"]
|
||||||
1
build/ios/Debug-iphonesimulator/.last_build_id
Normal file
@@ -0,0 +1 @@
|
|||||||
|
d16ccd26f053d13718ec9bc8e44a39de
|
||||||
BIN
build/ios/Debug-iphonesimulator/App.framework/App
Executable file
26
build/ios/Debug-iphonesimulator/App.framework/Info.plist
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>en</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>App</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>io.flutter.flutter.app</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>App</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>FMWK</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>1.0</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>1.0</string>
|
||||||
|
<key>MinimumOSVersion</key>
|
||||||
|
<string>13.0</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
@@ -0,0 +1,223 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>files</key>
|
||||||
|
<dict>
|
||||||
|
<key>Info.plist</key>
|
||||||
|
<data>
|
||||||
|
nHsEkmlVCwRZHdUPhDWVtuHob3A=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/AssetManifest.bin</key>
|
||||||
|
<data>
|
||||||
|
ME0cAg6cl/bTZmwXEVgMugDccUI=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/FontManifest.json</key>
|
||||||
|
<data>
|
||||||
|
vKJkVIcw+LGHFnKJGwrQwCREv68=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/NOTICES.Z</key>
|
||||||
|
<data>
|
||||||
|
Ww3VT3Dl9OS0AKPDAn4HEANxMyE=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/NativeAssetsManifest.json</key>
|
||||||
|
<data>
|
||||||
|
re4p7E8rPLLsN+wzaPN/+AVpXTY=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/fonts/MaterialIcons-Regular.otf</key>
|
||||||
|
<data>
|
||||||
|
/CUoTuPQqqdexfyOT9lpJhV+2MQ=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/isolate_snapshot_data</key>
|
||||||
|
<data>
|
||||||
|
rYXCbquQA1dr/ebYXtM3dRNcgKs=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/kernel_blob.bin</key>
|
||||||
|
<data>
|
||||||
|
wvd/ghMvydxBnT7CROGxtZpPMBo=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf</key>
|
||||||
|
<data>
|
||||||
|
Bvk+P1ykE1PGRdktwgwDyz6AOqM=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/shaders/ink_sparkle.frag</key>
|
||||||
|
<data>
|
||||||
|
sxM4vXUdXTlz/NE5jWpDMQiyBlU=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/shaders/stretch_effect.frag</key>
|
||||||
|
<data>
|
||||||
|
E+CXIAqhfAZloEXY0OAHmD4YsUA=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/vm_snapshot_data</key>
|
||||||
|
<data>
|
||||||
|
PLk09h0l/XVt/bVElKkgNzt9Djw=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>files2</key>
|
||||||
|
<dict>
|
||||||
|
<key>flutter_assets/AssetManifest.bin</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
AK9VrT1vIYmP534P8JLRoc2lLJQbaGDpko1FyK+MCV0=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/FontManifest.json</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
zX4DZFvESy3Ue3y2JvUcTsv1Whl6t3JBYotHrBZfviE=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/NOTICES.Z</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
E062v2dhXjjDM/PEm5gvwNMW+CAHARn2u3dUOsclh5o=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/NativeAssetsManifest.json</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
lUijHkoEgTXB2U+Rkyi/tirix7s8q5ZVfHlB2ql3dss=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/fonts/MaterialIcons-Regular.otf</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
2YZbZxoJ1oPROoYwidiCXg9ho3aWzl19RIvIAjqmJFM=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/isolate_snapshot_data</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
VjSsPASCGuyi2mVpg5dQrTTjnFKssUBYnRDn7LG+1CI=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/kernel_blob.bin</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
ZfBZPmBXd095TtgPaCssw+nNxx0RjNKpkOsTBdnnK3Q=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
Z8RP6Rg7AC553ef2l34piGYcmj5KPF/OloeH79vtgjw=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/shaders/ink_sparkle.frag</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
RoZF1LMcQMF0HavWao7KX8AlJjP2YoMdCmoodqEbrTM=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/shaders/stretch_effect.frag</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
L1Nkyap/uLTY181NUgIAgKYl2ViXbpyX1/JoAy3gIto=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/vm_snapshot_data</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
voayeld2cKO/xTgKH/PG6QD4xzLD9m37V4iUvNPMgww=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>rules</key>
|
||||||
|
<dict>
|
||||||
|
<key>^.*</key>
|
||||||
|
<true/>
|
||||||
|
<key>^.*\.lproj/</key>
|
||||||
|
<dict>
|
||||||
|
<key>optional</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1000</real>
|
||||||
|
</dict>
|
||||||
|
<key>^.*\.lproj/locversion.plist$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1100</real>
|
||||||
|
</dict>
|
||||||
|
<key>^Base\.lproj/</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1010</real>
|
||||||
|
</dict>
|
||||||
|
<key>^version.plist$</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
<key>rules2</key>
|
||||||
|
<dict>
|
||||||
|
<key>.*\.dSYM($|/)</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>11</real>
|
||||||
|
</dict>
|
||||||
|
<key>^(.*/)?\.DS_Store$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>2000</real>
|
||||||
|
</dict>
|
||||||
|
<key>^.*</key>
|
||||||
|
<true/>
|
||||||
|
<key>^.*\.lproj/</key>
|
||||||
|
<dict>
|
||||||
|
<key>optional</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1000</real>
|
||||||
|
</dict>
|
||||||
|
<key>^.*\.lproj/locversion.plist$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1100</real>
|
||||||
|
</dict>
|
||||||
|
<key>^Base\.lproj/</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1010</real>
|
||||||
|
</dict>
|
||||||
|
<key>^Info\.plist$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>20</real>
|
||||||
|
</dict>
|
||||||
|
<key>^PkgInfo$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>20</real>
|
||||||
|
</dict>
|
||||||
|
<key>^embedded\.provisionprofile$</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>20</real>
|
||||||
|
</dict>
|
||||||
|
<key>^version\.plist$</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>20</real>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}]
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"format-version":[1,0,0],"native-assets":{}}
|
||||||
BIN
build/ios/Debug-iphonesimulator/Flutter.framework/Flutter
Executable file
@@ -0,0 +1,26 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTER_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTER_H_
|
||||||
|
|
||||||
|
#import "FlutterAppDelegate.h"
|
||||||
|
#import "FlutterBinaryMessenger.h"
|
||||||
|
#import "FlutterCallbackCache.h"
|
||||||
|
#import "FlutterChannels.h"
|
||||||
|
#import "FlutterCodecs.h"
|
||||||
|
#import "FlutterDartProject.h"
|
||||||
|
#import "FlutterEngine.h"
|
||||||
|
#import "FlutterEngineGroup.h"
|
||||||
|
#import "FlutterHeadlessDartRunner.h"
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
#import "FlutterPlatformViews.h"
|
||||||
|
#import "FlutterPlugin.h"
|
||||||
|
#import "FlutterPluginAppLifeCycleDelegate.h"
|
||||||
|
#import "FlutterSceneDelegate.h"
|
||||||
|
#import "FlutterSceneLifeCycle.h"
|
||||||
|
#import "FlutterTexture.h"
|
||||||
|
#import "FlutterViewController.h"
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTER_H_
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERAPPDELEGATE_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERAPPDELEGATE_H_
|
||||||
|
|
||||||
|
#import <UIKit/UIKit.h>
|
||||||
|
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
#import "FlutterPlugin.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* `UIApplicationDelegate` subclass for simple apps that want default behavior.
|
||||||
|
*
|
||||||
|
* This class implements the following behaviors:
|
||||||
|
* * Status bar touches are forwarded to the key window's root view
|
||||||
|
* `FlutterViewController`, in order to trigger scroll to top.
|
||||||
|
* * Keeps the Flutter connection open in debug mode when the phone screen
|
||||||
|
* locks.
|
||||||
|
*
|
||||||
|
* App delegates for Flutter applications are *not* required to inherit from
|
||||||
|
* this class. Developers of custom app delegate classes should copy and paste
|
||||||
|
* code as necessary from FlutterAppDelegate.mm.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterAppDelegate
|
||||||
|
: UIResponder <UIApplicationDelegate, FlutterPluginRegistry, FlutterAppLifeCycleProvider>
|
||||||
|
|
||||||
|
@property(nonatomic, strong, nullable) UIWindow* window;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterPluginRegistrant` that will be used when FlutterViewControllers
|
||||||
|
* are instantiated from nibs.
|
||||||
|
*
|
||||||
|
* The `FlutterAppDelegate` itself can be passed in without creating a retain
|
||||||
|
* cycle.
|
||||||
|
*
|
||||||
|
* This was introduced to help users migrate code from the FlutterAppDelegate
|
||||||
|
* when UISceneDelegate was adopted. Using
|
||||||
|
* FlutterViewController.pluginRegistrant should be preferred since it doesn't
|
||||||
|
* rely on the FlutterAppDelegate.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, strong, nullable) NSObject<FlutterPluginRegistrant>* pluginRegistrant;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERAPPDELEGATE_H_
|
||||||
@@ -0,0 +1,106 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERBINARYMESSENGER_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERBINARYMESSENGER_H_
|
||||||
|
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
|
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
/**
|
||||||
|
* A message reply callback.
|
||||||
|
*
|
||||||
|
* Used for submitting a binary reply back to a Flutter message sender. Also used
|
||||||
|
* in for handling a binary message reply received from Flutter.
|
||||||
|
*
|
||||||
|
* @param reply The reply.
|
||||||
|
*/
|
||||||
|
typedef void (^FlutterBinaryReply)(NSData* _Nullable reply);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A strategy for handling incoming binary messages from Flutter and to send
|
||||||
|
* asynchronous replies back to Flutter.
|
||||||
|
*
|
||||||
|
* @param message The message.
|
||||||
|
* @param reply A callback for submitting an asynchronous reply to the sender.
|
||||||
|
*/
|
||||||
|
typedef void (^FlutterBinaryMessageHandler)(NSData* _Nullable message, FlutterBinaryReply reply);
|
||||||
|
|
||||||
|
typedef int64_t FlutterBinaryMessengerConnection;
|
||||||
|
|
||||||
|
@protocol FlutterTaskQueue <NSObject>
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A facility for communicating with the Flutter side using asynchronous message
|
||||||
|
* passing with binary messages.
|
||||||
|
*
|
||||||
|
* Implementated by:
|
||||||
|
* - `FlutterBasicMessageChannel`, which supports communication using structured
|
||||||
|
* messages.
|
||||||
|
* - `FlutterMethodChannel`, which supports communication using asynchronous
|
||||||
|
* method calls.
|
||||||
|
* - `FlutterEventChannel`, which supports commuication using event streams.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@protocol FlutterBinaryMessenger <NSObject>
|
||||||
|
/// TODO(gaaclarke): Remove optional when macos supports Background Platform Channels.
|
||||||
|
@optional
|
||||||
|
- (NSObject<FlutterTaskQueue>*)makeBackgroundTaskQueue;
|
||||||
|
|
||||||
|
- (FlutterBinaryMessengerConnection)
|
||||||
|
setMessageHandlerOnChannel:(NSString*)channel
|
||||||
|
binaryMessageHandler:(FlutterBinaryMessageHandler _Nullable)handler
|
||||||
|
taskQueue:(NSObject<FlutterTaskQueue>* _Nullable)taskQueue;
|
||||||
|
|
||||||
|
@required
|
||||||
|
/**
|
||||||
|
* Sends a binary message to the Flutter side on the specified channel, expecting
|
||||||
|
* no reply.
|
||||||
|
*
|
||||||
|
* @param channel The channel name.
|
||||||
|
* @param message The message.
|
||||||
|
*/
|
||||||
|
- (void)sendOnChannel:(NSString*)channel message:(NSData* _Nullable)message;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sends a binary message to the Flutter side on the specified channel, expecting
|
||||||
|
* an asynchronous reply.
|
||||||
|
*
|
||||||
|
* @param channel The channel name.
|
||||||
|
* @param message The message.
|
||||||
|
* @param callback A callback for receiving a reply.
|
||||||
|
*/
|
||||||
|
- (void)sendOnChannel:(NSString*)channel
|
||||||
|
message:(NSData* _Nullable)message
|
||||||
|
binaryReply:(FlutterBinaryReply _Nullable)callback;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers a message handler for incoming binary messages from the Flutter side
|
||||||
|
* on the specified channel.
|
||||||
|
*
|
||||||
|
* Replaces any existing handler. Use a `nil` handler for unregistering the
|
||||||
|
* existing handler.
|
||||||
|
*
|
||||||
|
* @param channel The channel name.
|
||||||
|
* @param handler The message handler.
|
||||||
|
* @return An identifier that represents the connection that was just created to the channel.
|
||||||
|
*/
|
||||||
|
- (FlutterBinaryMessengerConnection)setMessageHandlerOnChannel:(NSString*)channel
|
||||||
|
binaryMessageHandler:
|
||||||
|
(FlutterBinaryMessageHandler _Nullable)handler;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clears out a channel's message handler if that handler is still the one that
|
||||||
|
* was created as a result of
|
||||||
|
* `setMessageHandlerOnChannel:binaryMessageHandler:`.
|
||||||
|
*
|
||||||
|
* @param connection The result from `setMessageHandlerOnChannel:binaryMessageHandler:`.
|
||||||
|
*/
|
||||||
|
- (void)cleanUpConnection:(FlutterBinaryMessengerConnection)connection;
|
||||||
|
@end
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERBINARYMESSENGER_H_
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERCALLBACKCACHE_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERCALLBACKCACHE_H_
|
||||||
|
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
|
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An object containing the result of `FlutterCallbackCache`'s `lookupCallbackInformation`
|
||||||
|
* method.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterCallbackInformation : NSObject
|
||||||
|
/**
|
||||||
|
* The name of the callback.
|
||||||
|
*/
|
||||||
|
@property(copy) NSString* callbackName;
|
||||||
|
/**
|
||||||
|
* The class name of the callback.
|
||||||
|
*/
|
||||||
|
@property(copy) NSString* callbackClassName;
|
||||||
|
/**
|
||||||
|
* The library path of the callback.
|
||||||
|
*/
|
||||||
|
@property(copy) NSString* callbackLibraryPath;
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The cache containing callback information for spawning a
|
||||||
|
* `FlutterHeadlessDartRunner`.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterCallbackCache : NSObject
|
||||||
|
/**
|
||||||
|
* Returns the callback information for the given callback handle.
|
||||||
|
* This callback information can be used when spawning a
|
||||||
|
* `FlutterHeadlessDartRunner`.
|
||||||
|
*
|
||||||
|
* @param handle The handle for a callback, provided by the
|
||||||
|
* Dart method `PluginUtilities.getCallbackHandle`.
|
||||||
|
* @return A `FlutterCallbackInformation` object which contains the name of the
|
||||||
|
* callback, the name of the class in which the callback is defined, and the
|
||||||
|
* path of the library which contains the callback. If the provided handle is
|
||||||
|
* invalid, nil is returned.
|
||||||
|
*/
|
||||||
|
+ (FlutterCallbackInformation*)lookupCallbackInformation:(int64_t)handle;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERCALLBACKCACHE_H_
|
||||||
@@ -0,0 +1,487 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERCHANNELS_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERCHANNELS_H_
|
||||||
|
|
||||||
|
#import "FlutterBinaryMessenger.h"
|
||||||
|
#import "FlutterCodecs.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
/**
|
||||||
|
* A message reply callback.
|
||||||
|
*
|
||||||
|
* Used for submitting a reply back to a Flutter message sender. Also used in
|
||||||
|
* the dual capacity for handling a message reply received from Flutter.
|
||||||
|
*
|
||||||
|
* @param reply The reply.
|
||||||
|
*/
|
||||||
|
typedef void (^FlutterReply)(id _Nullable reply);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A strategy for handling incoming messages from Flutter and to send
|
||||||
|
* asynchronous replies back to Flutter.
|
||||||
|
*
|
||||||
|
* @param message The message.
|
||||||
|
* @param callback A callback for submitting a reply to the sender which can be invoked from any
|
||||||
|
* thread.
|
||||||
|
*/
|
||||||
|
typedef void (^FlutterMessageHandler)(id _Nullable message, FlutterReply callback);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A channel for communicating with the Flutter side using basic, asynchronous
|
||||||
|
* message passing.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterBasicMessageChannel : NSObject
|
||||||
|
/**
|
||||||
|
* Creates a `FlutterBasicMessageChannel` with the specified name and binary
|
||||||
|
* messenger.
|
||||||
|
*
|
||||||
|
* The channel name logically identifies the channel; identically named channels
|
||||||
|
* interfere with each other's communication.
|
||||||
|
*
|
||||||
|
* The binary messenger is a facility for sending raw, binary messages to the
|
||||||
|
* Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`.
|
||||||
|
*
|
||||||
|
* The channel uses `FlutterStandardMessageCodec` to encode and decode messages.
|
||||||
|
*
|
||||||
|
* @param name The channel name.
|
||||||
|
* @param messenger The binary messenger.
|
||||||
|
*/
|
||||||
|
+ (instancetype)messageChannelWithName:(NSString*)name
|
||||||
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a `FlutterBasicMessageChannel` with the specified name, binary
|
||||||
|
* messenger, and message codec.
|
||||||
|
*
|
||||||
|
* The channel name logically identifies the channel; identically named channels
|
||||||
|
* interfere with each other's communication.
|
||||||
|
*
|
||||||
|
* The binary messenger is a facility for sending raw, binary messages to the
|
||||||
|
* Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`.
|
||||||
|
*
|
||||||
|
* @param name The channel name.
|
||||||
|
* @param messenger The binary messenger.
|
||||||
|
* @param codec The message codec.
|
||||||
|
*/
|
||||||
|
+ (instancetype)messageChannelWithName:(NSString*)name
|
||||||
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger
|
||||||
|
codec:(NSObject<FlutterMessageCodec>*)codec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes a `FlutterBasicMessageChannel` with the specified name, binary
|
||||||
|
* messenger, and message codec.
|
||||||
|
*
|
||||||
|
* The channel name logically identifies the channel; identically named channels
|
||||||
|
* interfere with each other's communication.
|
||||||
|
*
|
||||||
|
* The binary messenger is a facility for sending raw, binary messages to the
|
||||||
|
* Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`.
|
||||||
|
*
|
||||||
|
* @param name The channel name.
|
||||||
|
* @param messenger The binary messenger.
|
||||||
|
* @param codec The message codec.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithName:(NSString*)name
|
||||||
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger
|
||||||
|
codec:(NSObject<FlutterMessageCodec>*)codec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes a `FlutterBasicMessageChannel` with the specified name, binary
|
||||||
|
* messenger, and message codec.
|
||||||
|
*
|
||||||
|
* The channel name logically identifies the channel; identically named channels
|
||||||
|
* interfere with each other's communication.
|
||||||
|
*
|
||||||
|
* The binary messenger is a facility for sending raw, binary messages to the
|
||||||
|
* Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`.
|
||||||
|
*
|
||||||
|
* @param name The channel name.
|
||||||
|
* @param messenger The binary messenger.
|
||||||
|
* @param codec The message codec.
|
||||||
|
* @param taskQueue The FlutterTaskQueue that executes the handler (see
|
||||||
|
-[FlutterBinaryMessenger makeBackgroundTaskQueue]).
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithName:(NSString*)name
|
||||||
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger
|
||||||
|
codec:(NSObject<FlutterMessageCodec>*)codec
|
||||||
|
taskQueue:(NSObject<FlutterTaskQueue>* _Nullable)taskQueue;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sends the specified message to the Flutter side, ignoring any reply.
|
||||||
|
*
|
||||||
|
* @param message The message. Must be supported by the codec of this
|
||||||
|
* channel.
|
||||||
|
*/
|
||||||
|
- (void)sendMessage:(id _Nullable)message;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sends the specified message to the Flutter side, expecting an asynchronous
|
||||||
|
* reply.
|
||||||
|
*
|
||||||
|
* @param message The message. Must be supported by the codec of this channel.
|
||||||
|
* @param callback A callback to be invoked with the message reply from Flutter.
|
||||||
|
*/
|
||||||
|
- (void)sendMessage:(id _Nullable)message reply:(FlutterReply _Nullable)callback;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers a message handler with this channel.
|
||||||
|
*
|
||||||
|
* Replaces any existing handler. Use a `nil` handler for unregistering the
|
||||||
|
* existing handler.
|
||||||
|
*
|
||||||
|
* @param handler The message handler.
|
||||||
|
*/
|
||||||
|
- (void)setMessageHandler:(FlutterMessageHandler _Nullable)handler;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adjusts the number of messages that will get buffered when sending messages to
|
||||||
|
* channels that aren't fully set up yet. For example, the engine isn't running
|
||||||
|
* yet or the channel's message handler isn't set up on the Dart side yet.
|
||||||
|
*
|
||||||
|
* @param name The channel name.
|
||||||
|
* @param messenger The binary messenger.
|
||||||
|
* @param newSize The number of messages that will get buffered.
|
||||||
|
*/
|
||||||
|
+ (void)resizeChannelWithName:(NSString*)name
|
||||||
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger
|
||||||
|
size:(NSInteger)newSize;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adjusts the number of messages that will get buffered when sending messages to
|
||||||
|
* channels that aren't fully set up yet. For example, the engine isn't running
|
||||||
|
* yet or the channel's message handler isn't set up on the Dart side yet.
|
||||||
|
*
|
||||||
|
* @param newSize The number of messages that will get buffered.
|
||||||
|
*/
|
||||||
|
- (void)resizeChannelBuffer:(NSInteger)newSize;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines whether the channel should show warning messages when discarding messages
|
||||||
|
* due to overflow.
|
||||||
|
*
|
||||||
|
* @param warns When false, the channel is expected to overflow and warning messages
|
||||||
|
* will not be shown.
|
||||||
|
* @param name The channel name.
|
||||||
|
* @param messenger The binary messenger.
|
||||||
|
*/
|
||||||
|
+ (void)setWarnsOnOverflow:(BOOL)warns
|
||||||
|
forChannelWithName:(NSString*)name
|
||||||
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines whether the channel should show warning messages when discarding messages
|
||||||
|
* due to overflow.
|
||||||
|
*
|
||||||
|
* @param warns When false, the channel is expected to overflow and warning messages
|
||||||
|
* will not be shown.
|
||||||
|
*/
|
||||||
|
- (void)setWarnsOnOverflow:(BOOL)warns;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A method call result callback.
|
||||||
|
*
|
||||||
|
* Used for submitting a method call result back to a Flutter caller. Also used in
|
||||||
|
* the dual capacity for handling a method call result received from Flutter.
|
||||||
|
*
|
||||||
|
* @param result The result.
|
||||||
|
*/
|
||||||
|
typedef void (^FlutterResult)(id _Nullable result);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A strategy for handling method calls.
|
||||||
|
*
|
||||||
|
* @param call The incoming method call.
|
||||||
|
* @param result A callback to asynchronously submit the result of the call.
|
||||||
|
* Invoke the callback with a `FlutterError` to indicate that the call failed.
|
||||||
|
* Invoke the callback with `FlutterMethodNotImplemented` to indicate that the
|
||||||
|
* method was unknown. Any other values, including `nil`, are interpreted as
|
||||||
|
* successful results. This can be invoked from any thread.
|
||||||
|
*/
|
||||||
|
typedef void (^FlutterMethodCallHandler)(FlutterMethodCall* call, FlutterResult result);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A constant used with `FlutterMethodCallHandler` to respond to the call of an
|
||||||
|
* unknown method.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
extern NSObject const* FlutterMethodNotImplemented;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A channel for communicating with the Flutter side using invocation of
|
||||||
|
* asynchronous methods.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterMethodChannel : NSObject
|
||||||
|
/**
|
||||||
|
* Creates a `FlutterMethodChannel` with the specified name and binary messenger.
|
||||||
|
*
|
||||||
|
* The channel name logically identifies the channel; identically named channels
|
||||||
|
* interfere with each other's communication.
|
||||||
|
*
|
||||||
|
* The binary messenger is a facility for sending raw, binary messages to the
|
||||||
|
* Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`.
|
||||||
|
*
|
||||||
|
* The channel uses `FlutterStandardMethodCodec` to encode and decode method calls
|
||||||
|
* and result envelopes.
|
||||||
|
*
|
||||||
|
* @param name The channel name.
|
||||||
|
* @param messenger The binary messenger.
|
||||||
|
*/
|
||||||
|
+ (instancetype)methodChannelWithName:(NSString*)name
|
||||||
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a `FlutterMethodChannel` with the specified name, binary messenger, and
|
||||||
|
* method codec.
|
||||||
|
*
|
||||||
|
* The channel name logically identifies the channel; identically named channels
|
||||||
|
* interfere with each other's communication.
|
||||||
|
*
|
||||||
|
* The binary messenger is a facility for sending raw, binary messages to the
|
||||||
|
* Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`.
|
||||||
|
*
|
||||||
|
* @param name The channel name.
|
||||||
|
* @param messenger The binary messenger.
|
||||||
|
* @param codec The method codec.
|
||||||
|
*/
|
||||||
|
+ (instancetype)methodChannelWithName:(NSString*)name
|
||||||
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger
|
||||||
|
codec:(NSObject<FlutterMethodCodec>*)codec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes a `FlutterMethodChannel` with the specified name, binary messenger,
|
||||||
|
* and method codec.
|
||||||
|
*
|
||||||
|
* The channel name logically identifies the channel; identically named channels
|
||||||
|
* interfere with each other's communication.
|
||||||
|
*
|
||||||
|
* The binary messenger is a facility for sending raw, binary messages to the
|
||||||
|
* Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`.
|
||||||
|
*
|
||||||
|
* @param name The channel name.
|
||||||
|
* @param messenger The binary messenger.
|
||||||
|
* @param codec The method codec.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithName:(NSString*)name
|
||||||
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger
|
||||||
|
codec:(NSObject<FlutterMethodCodec>*)codec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes a `FlutterMethodChannel` with the specified name, binary messenger,
|
||||||
|
* method codec, and task queue.
|
||||||
|
*
|
||||||
|
* The channel name logically identifies the channel; identically named channels
|
||||||
|
* interfere with each other's communication.
|
||||||
|
*
|
||||||
|
* The binary messenger is a facility for sending raw, binary messages to the
|
||||||
|
* Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`.
|
||||||
|
*
|
||||||
|
* @param name The channel name.
|
||||||
|
* @param messenger The binary messenger.
|
||||||
|
* @param codec The method codec.
|
||||||
|
* @param taskQueue The FlutterTaskQueue that executes the handler (see
|
||||||
|
-[FlutterBinaryMessenger makeBackgroundTaskQueue]).
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithName:(NSString*)name
|
||||||
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger
|
||||||
|
codec:(NSObject<FlutterMethodCodec>*)codec
|
||||||
|
taskQueue:(NSObject<FlutterTaskQueue>* _Nullable)taskQueue;
|
||||||
|
|
||||||
|
// clang-format off
|
||||||
|
/**
|
||||||
|
* Invokes the specified Flutter method with the specified arguments, expecting
|
||||||
|
* no results.
|
||||||
|
*
|
||||||
|
* @see [MethodChannel.setMethodCallHandler](https://api.flutter.dev/flutter/services/MethodChannel/setMethodCallHandler.html)
|
||||||
|
*
|
||||||
|
* @param method The name of the method to invoke.
|
||||||
|
* @param arguments The arguments. Must be a value supported by the codec of this
|
||||||
|
* channel.
|
||||||
|
*/
|
||||||
|
// clang-format on
|
||||||
|
- (void)invokeMethod:(NSString*)method arguments:(id _Nullable)arguments;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Invokes the specified Flutter method with the specified arguments, expecting
|
||||||
|
* an asynchronous result.
|
||||||
|
*
|
||||||
|
* @param method The name of the method to invoke.
|
||||||
|
* @param arguments The arguments. Must be a value supported by the codec of this
|
||||||
|
* channel.
|
||||||
|
* @param callback A callback that will be invoked with the asynchronous result.
|
||||||
|
* The result will be a `FlutterError` instance, if the method call resulted
|
||||||
|
* in an error on the Flutter side. Will be `FlutterMethodNotImplemented`, if
|
||||||
|
* the method called was not implemented on the Flutter side. Any other value,
|
||||||
|
* including `nil`, should be interpreted as successful results.
|
||||||
|
*/
|
||||||
|
- (void)invokeMethod:(NSString*)method
|
||||||
|
arguments:(id _Nullable)arguments
|
||||||
|
result:(FlutterResult _Nullable)callback;
|
||||||
|
/**
|
||||||
|
* Registers a handler for method calls from the Flutter side.
|
||||||
|
*
|
||||||
|
* Replaces any existing handler. Use a `nil` handler for unregistering the
|
||||||
|
* existing handler.
|
||||||
|
*
|
||||||
|
* @param handler The method call handler.
|
||||||
|
*/
|
||||||
|
- (void)setMethodCallHandler:(FlutterMethodCallHandler _Nullable)handler;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adjusts the number of messages that will get buffered when sending messages to
|
||||||
|
* channels that aren't fully set up yet. For example, the engine isn't running
|
||||||
|
* yet or the channel's message handler isn't set up on the Dart side yet.
|
||||||
|
*/
|
||||||
|
- (void)resizeChannelBuffer:(NSInteger)newSize;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An event sink callback.
|
||||||
|
*
|
||||||
|
* @param event The event.
|
||||||
|
*/
|
||||||
|
typedef void (^FlutterEventSink)(id _Nullable event);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A strategy for exposing an event stream to the Flutter side.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@protocol FlutterStreamHandler
|
||||||
|
/**
|
||||||
|
* Sets up an event stream and begin emitting events.
|
||||||
|
*
|
||||||
|
* Invoked when the first listener is registered with the Stream associated to
|
||||||
|
* this channel on the Flutter side.
|
||||||
|
*
|
||||||
|
* @param arguments Arguments for the stream.
|
||||||
|
* @param events A callback to asynchronously emit events. Invoke the
|
||||||
|
* callback with a `FlutterError` to emit an error event. Invoke the
|
||||||
|
* callback with `FlutterEndOfEventStream` to indicate that no more
|
||||||
|
* events will be emitted. Any other value, including `nil` are emitted as
|
||||||
|
* successful events.
|
||||||
|
* @return A FlutterError instance, if setup fails.
|
||||||
|
*/
|
||||||
|
- (FlutterError* _Nullable)onListenWithArguments:(id _Nullable)arguments
|
||||||
|
eventSink:(FlutterEventSink)events;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tears down an event stream.
|
||||||
|
*
|
||||||
|
* Invoked when the last listener is deregistered from the Stream associated to
|
||||||
|
* this channel on the Flutter side.
|
||||||
|
*
|
||||||
|
* The channel implementation may call this method with `nil` arguments
|
||||||
|
* to separate a pair of two consecutive set up requests. Such request pairs
|
||||||
|
* may occur during Flutter hot restart.
|
||||||
|
*
|
||||||
|
* @param arguments Arguments for the stream.
|
||||||
|
* @return A FlutterError instance, if teardown fails.
|
||||||
|
*/
|
||||||
|
- (FlutterError* _Nullable)onCancelWithArguments:(id _Nullable)arguments;
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A constant used with `FlutterEventChannel` to indicate end of stream.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
extern NSObject const* FlutterEndOfEventStream;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A channel for communicating with the Flutter side using event streams.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterEventChannel : NSObject
|
||||||
|
/**
|
||||||
|
* Creates a `FlutterEventChannel` with the specified name and binary messenger.
|
||||||
|
*
|
||||||
|
* The channel name logically identifies the channel; identically named channels
|
||||||
|
* interfere with each other's communication.
|
||||||
|
*
|
||||||
|
* The binary messenger is a facility for sending raw, binary messages to the
|
||||||
|
* Flutter side. This protocol is implemented by `FlutterViewController`.
|
||||||
|
*
|
||||||
|
* The channel uses `FlutterStandardMethodCodec` to decode stream setup and
|
||||||
|
* teardown requests, and to encode event envelopes.
|
||||||
|
*
|
||||||
|
* @param name The channel name.
|
||||||
|
* @param messenger The binary messenger.
|
||||||
|
*/
|
||||||
|
+ (instancetype)eventChannelWithName:(NSString*)name
|
||||||
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a `FlutterEventChannel` with the specified name, binary messenger,
|
||||||
|
* and method codec.
|
||||||
|
*
|
||||||
|
* The channel name logically identifies the channel; identically named channels
|
||||||
|
* interfere with each other's communication.
|
||||||
|
*
|
||||||
|
* The binary messenger is a facility for sending raw, binary messages to the
|
||||||
|
* Flutter side. This protocol is implemented by `FlutterViewController`.
|
||||||
|
*
|
||||||
|
* @param name The channel name.
|
||||||
|
* @param messenger The binary messenger.
|
||||||
|
* @param codec The method codec.
|
||||||
|
*/
|
||||||
|
+ (instancetype)eventChannelWithName:(NSString*)name
|
||||||
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger
|
||||||
|
codec:(NSObject<FlutterMethodCodec>*)codec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes a `FlutterEventChannel` with the specified name, binary messenger,
|
||||||
|
* and method codec.
|
||||||
|
*
|
||||||
|
* The channel name logically identifies the channel; identically named channels
|
||||||
|
* interfere with each other's communication.
|
||||||
|
*
|
||||||
|
* The binary messenger is a facility for sending raw, binary messages to the
|
||||||
|
* Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`.
|
||||||
|
*
|
||||||
|
* @param name The channel name.
|
||||||
|
* @param messenger The binary messenger.
|
||||||
|
* @param codec The method codec.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithName:(NSString*)name
|
||||||
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger
|
||||||
|
codec:(NSObject<FlutterMethodCodec>*)codec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes a `FlutterEventChannel` with the specified name, binary messenger,
|
||||||
|
* method codec and task queue.
|
||||||
|
*
|
||||||
|
* The channel name logically identifies the channel; identically named channels
|
||||||
|
* interfere with each other's communication.
|
||||||
|
*
|
||||||
|
* The binary messenger is a facility for sending raw, binary messages to the
|
||||||
|
* Flutter side. This protocol is implemented by `FlutterEngine` and `FlutterViewController`.
|
||||||
|
*
|
||||||
|
* @param name The channel name.
|
||||||
|
* @param messenger The binary messenger.
|
||||||
|
* @param codec The method codec.
|
||||||
|
* @param taskQueue The FlutterTaskQueue that executes the handler (see
|
||||||
|
-[FlutterBinaryMessenger makeBackgroundTaskQueue]).
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithName:(NSString*)name
|
||||||
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger
|
||||||
|
codec:(NSObject<FlutterMethodCodec>*)codec
|
||||||
|
taskQueue:(NSObject<FlutterTaskQueue>* _Nullable)taskQueue;
|
||||||
|
/**
|
||||||
|
* Registers a handler for stream setup requests from the Flutter side.
|
||||||
|
*
|
||||||
|
* Replaces any existing handler. Use a `nil` handler for unregistering the
|
||||||
|
* existing handler.
|
||||||
|
*
|
||||||
|
* @param handler The stream handler.
|
||||||
|
*/
|
||||||
|
- (void)setStreamHandler:(NSObject<FlutterStreamHandler>* _Nullable)handler;
|
||||||
|
@end
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERCHANNELS_H_
|
||||||
@@ -0,0 +1,478 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERCODECS_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERCODECS_H_
|
||||||
|
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
|
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A message encoding/decoding mechanism.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@protocol FlutterMessageCodec
|
||||||
|
/**
|
||||||
|
* Returns a shared instance of this `FlutterMessageCodec`.
|
||||||
|
*/
|
||||||
|
+ (instancetype)sharedInstance;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Encodes the specified message into binary.
|
||||||
|
*
|
||||||
|
* @param message The message.
|
||||||
|
* @return The binary encoding, or `nil`, if `message` was `nil`.
|
||||||
|
*/
|
||||||
|
- (NSData* _Nullable)encode:(id _Nullable)message;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes the specified message from binary.
|
||||||
|
*
|
||||||
|
* @param message The message.
|
||||||
|
* @return The decoded message, or `nil`, if `message` was `nil`.
|
||||||
|
*/
|
||||||
|
- (id _Nullable)decode:(NSData* _Nullable)message;
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A `FlutterMessageCodec` using unencoded binary messages, represented as
|
||||||
|
* `NSData` instances.
|
||||||
|
*
|
||||||
|
* This codec is guaranteed to be compatible with the corresponding
|
||||||
|
* [BinaryCodec](https://api.flutter.dev/flutter/services/BinaryCodec-class.html)
|
||||||
|
* on the Dart side. These parts of the Flutter SDK are evolved synchronously.
|
||||||
|
*
|
||||||
|
* On the Dart side, messages are represented using `ByteData`.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterBinaryCodec : NSObject <FlutterMessageCodec>
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A `FlutterMessageCodec` using UTF-8 encoded `NSString` messages.
|
||||||
|
*
|
||||||
|
* This codec is guaranteed to be compatible with the corresponding
|
||||||
|
* [StringCodec](https://api.flutter.dev/flutter/services/StringCodec-class.html)
|
||||||
|
* on the Dart side. These parts of the Flutter SDK are evolved synchronously.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterStringCodec : NSObject <FlutterMessageCodec>
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A `FlutterMessageCodec` using UTF-8 encoded JSON messages.
|
||||||
|
*
|
||||||
|
* This codec is guaranteed to be compatible with the corresponding
|
||||||
|
* [JSONMessageCodec](https://api.flutter.dev/flutter/services/JSONMessageCodec-class.html)
|
||||||
|
* on the Dart side. These parts of the Flutter SDK are evolved synchronously.
|
||||||
|
*
|
||||||
|
* Supports values accepted by `NSJSONSerialization` plus top-level
|
||||||
|
* `nil`, `NSNumber`, and `NSString`.
|
||||||
|
*
|
||||||
|
* On the Dart side, JSON messages are handled by the JSON facilities of the
|
||||||
|
* [`dart:convert`](https://api.dartlang.org/stable/dart-convert/JSON-constant.html)
|
||||||
|
* package.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterJSONMessageCodec : NSObject <FlutterMessageCodec>
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A writer of the Flutter standard binary encoding.
|
||||||
|
*
|
||||||
|
* See `FlutterStandardMessageCodec` for details on the encoding.
|
||||||
|
*
|
||||||
|
* The encoding is extensible via subclasses overriding `writeValue`.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterStandardWriter : NSObject
|
||||||
|
/**
|
||||||
|
* Create a `FlutterStandardWriter` who will write to \p data.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithData:(NSMutableData*)data;
|
||||||
|
/** Write a 8-bit byte. */
|
||||||
|
- (void)writeByte:(UInt8)value;
|
||||||
|
/** Write an array of \p bytes of size \p length. */
|
||||||
|
- (void)writeBytes:(const void*)bytes length:(NSUInteger)length;
|
||||||
|
/** Write an array of bytes contained in \p data. */
|
||||||
|
- (void)writeData:(NSData*)data;
|
||||||
|
/** Write 32-bit unsigned integer that represents a \p size of a collection. */
|
||||||
|
- (void)writeSize:(UInt32)size;
|
||||||
|
/** Write zero padding until data is aligned with \p alignment. */
|
||||||
|
- (void)writeAlignment:(UInt8)alignment;
|
||||||
|
/** Write a string with UTF-8 encoding. */
|
||||||
|
- (void)writeUTF8:(NSString*)value;
|
||||||
|
/** Introspects into an object and writes its representation.
|
||||||
|
*
|
||||||
|
* Supported Data Types:
|
||||||
|
* - NSNull
|
||||||
|
* - NSNumber
|
||||||
|
* - NSString (as UTF-8)
|
||||||
|
* - FlutterStandardTypedData
|
||||||
|
* - NSArray of supported types
|
||||||
|
* - NSDictionary of supporte types
|
||||||
|
*
|
||||||
|
* NSAsserts on failure.
|
||||||
|
*/
|
||||||
|
- (void)writeValue:(id)value;
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A reader of the Flutter standard binary encoding.
|
||||||
|
*
|
||||||
|
* See `FlutterStandardMessageCodec` for details on the encoding.
|
||||||
|
*
|
||||||
|
* The encoding is extensible via subclasses overriding `readValueOfType`.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterStandardReader : NSObject
|
||||||
|
/**
|
||||||
|
* Create a new `FlutterStandardReader` who reads from \p data.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithData:(NSData*)data;
|
||||||
|
/** Returns YES when the reader hasn't reached the end of its data. */
|
||||||
|
- (BOOL)hasMore;
|
||||||
|
/** Reads a byte value and increments the position. */
|
||||||
|
- (UInt8)readByte;
|
||||||
|
/** Reads a sequence of byte values of \p length and increments the position. */
|
||||||
|
- (void)readBytes:(void*)destination length:(NSUInteger)length;
|
||||||
|
/** Reads a sequence of byte values of \p length and increments the position. */
|
||||||
|
- (NSData*)readData:(NSUInteger)length;
|
||||||
|
/** Reads a 32-bit unsigned integer representing a collection size and increments the position.*/
|
||||||
|
- (UInt32)readSize;
|
||||||
|
/** Advances the read position until it is aligned with \p alignment. */
|
||||||
|
- (void)readAlignment:(UInt8)alignment;
|
||||||
|
/** Read a null terminated string encoded with UTF-8/ */
|
||||||
|
- (NSString*)readUTF8;
|
||||||
|
/**
|
||||||
|
* Reads a byte for `FlutterStandardField` the decodes a value matching that type.
|
||||||
|
*
|
||||||
|
* See also: -[FlutterStandardWriter writeValue]
|
||||||
|
*/
|
||||||
|
- (nullable id)readValue;
|
||||||
|
/**
|
||||||
|
* Decodes a value matching the \p type specified.
|
||||||
|
*
|
||||||
|
* See also:
|
||||||
|
* - `FlutterStandardField`
|
||||||
|
* - `-[FlutterStandardWriter writeValue]`
|
||||||
|
*/
|
||||||
|
- (nullable id)readValueOfType:(UInt8)type;
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A factory of compatible reader/writer instances using the Flutter standard
|
||||||
|
* binary encoding or extensions thereof.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterStandardReaderWriter : NSObject
|
||||||
|
/**
|
||||||
|
* Create a new `FlutterStandardWriter` for writing to \p data.
|
||||||
|
*/
|
||||||
|
- (FlutterStandardWriter*)writerWithData:(NSMutableData*)data;
|
||||||
|
/**
|
||||||
|
* Create a new `FlutterStandardReader` for reading from \p data.
|
||||||
|
*/
|
||||||
|
- (FlutterStandardReader*)readerWithData:(NSData*)data;
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A `FlutterMessageCodec` using the Flutter standard binary encoding.
|
||||||
|
*
|
||||||
|
* This codec is guaranteed to be compatible with the corresponding
|
||||||
|
* [StandardMessageCodec](https://api.flutter.dev/flutter/services/StandardMessageCodec-class.html)
|
||||||
|
* on the Dart side. These parts of the Flutter SDK are evolved synchronously.
|
||||||
|
*
|
||||||
|
* Supported messages are acyclic values of these forms:
|
||||||
|
*
|
||||||
|
* - `nil` or `NSNull`
|
||||||
|
* - `NSNumber` (including their representation of Boolean values)
|
||||||
|
* - `NSString`
|
||||||
|
* - `FlutterStandardTypedData`
|
||||||
|
* - `NSArray` of supported values
|
||||||
|
* - `NSDictionary` with supported keys and values
|
||||||
|
*
|
||||||
|
* On the Dart side, these values are represented as follows:
|
||||||
|
*
|
||||||
|
* - `nil` or `NSNull`: null
|
||||||
|
* - `NSNumber`: `bool`, `int`, or `double`, depending on the contained value.
|
||||||
|
* - `NSString`: `String`
|
||||||
|
* - `FlutterStandardTypedData`: `Uint8List`, `Int32List`, `Int64List`, or `Float64List`
|
||||||
|
* - `NSArray`: `List`
|
||||||
|
* - `NSDictionary`: `Map`
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterStandardMessageCodec : NSObject <FlutterMessageCodec>
|
||||||
|
/**
|
||||||
|
* Create a `FlutterStandardMessageCodec` who will read and write to \p readerWriter.
|
||||||
|
*/
|
||||||
|
+ (instancetype)codecWithReaderWriter:(FlutterStandardReaderWriter*)readerWriter;
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command object representing a method call on a `FlutterMethodChannel`.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterMethodCall : NSObject
|
||||||
|
/**
|
||||||
|
* Creates a method call for invoking the specified named method with the
|
||||||
|
* specified arguments.
|
||||||
|
*
|
||||||
|
* @param method the name of the method to call.
|
||||||
|
* @param arguments the arguments value.
|
||||||
|
*/
|
||||||
|
+ (instancetype)methodCallWithMethodName:(NSString*)method arguments:(id _Nullable)arguments;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The method name.
|
||||||
|
*/
|
||||||
|
@property(readonly, nonatomic) NSString* method;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The arguments.
|
||||||
|
*/
|
||||||
|
@property(readonly, nonatomic, nullable) id arguments;
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Error object representing an unsuccessful outcome of invoking a method
|
||||||
|
* on a `FlutterMethodChannel`, or an error event on a `FlutterEventChannel`.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterError : NSObject
|
||||||
|
/**
|
||||||
|
* Creates a `FlutterError` with the specified error code, message, and details.
|
||||||
|
*
|
||||||
|
* @param code An error code string for programmatic use.
|
||||||
|
* @param message A human-readable error message.
|
||||||
|
* @param details Custom error details.
|
||||||
|
*/
|
||||||
|
+ (instancetype)errorWithCode:(NSString*)code
|
||||||
|
message:(NSString* _Nullable)message
|
||||||
|
details:(id _Nullable)details;
|
||||||
|
/**
|
||||||
|
The error code.
|
||||||
|
*/
|
||||||
|
@property(readonly, nonatomic) NSString* code;
|
||||||
|
|
||||||
|
/**
|
||||||
|
The error message.
|
||||||
|
*/
|
||||||
|
@property(readonly, nonatomic, nullable) NSString* message;
|
||||||
|
|
||||||
|
/**
|
||||||
|
The error details.
|
||||||
|
*/
|
||||||
|
@property(readonly, nonatomic, nullable) id details;
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type of numeric data items encoded in a `FlutterStandardDataType`.
|
||||||
|
*
|
||||||
|
* - FlutterStandardDataTypeUInt8: plain bytes
|
||||||
|
* - FlutterStandardDataTypeInt32: 32-bit signed integers
|
||||||
|
* - FlutterStandardDataTypeInt64: 64-bit signed integers
|
||||||
|
* - FlutterStandardDataTypeFloat64: 64-bit floats
|
||||||
|
*/
|
||||||
|
typedef NS_ENUM(NSInteger, FlutterStandardDataType) {
|
||||||
|
// NOLINTBEGIN(readability-identifier-naming)
|
||||||
|
FlutterStandardDataTypeUInt8,
|
||||||
|
FlutterStandardDataTypeInt32,
|
||||||
|
FlutterStandardDataTypeInt64,
|
||||||
|
FlutterStandardDataTypeFloat32,
|
||||||
|
FlutterStandardDataTypeFloat64,
|
||||||
|
// NOLINTEND(readability-identifier-naming)
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A byte buffer holding `UInt8`, `SInt32`, `SInt64`, or `Float64` values, used
|
||||||
|
* with `FlutterStandardMessageCodec` and `FlutterStandardMethodCodec`.
|
||||||
|
*
|
||||||
|
* Two's complement encoding is used for signed integers. IEEE754
|
||||||
|
* double-precision representation is used for floats. The platform's native
|
||||||
|
* endianness is assumed.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterStandardTypedData : NSObject
|
||||||
|
/**
|
||||||
|
* Creates a `FlutterStandardTypedData` which interprets the specified data
|
||||||
|
* as plain bytes.
|
||||||
|
*
|
||||||
|
* @param data the byte data.
|
||||||
|
*/
|
||||||
|
+ (instancetype)typedDataWithBytes:(NSData*)data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a `FlutterStandardTypedData` which interprets the specified data
|
||||||
|
* as 32-bit signed integers.
|
||||||
|
*
|
||||||
|
* @param data the byte data. The length must be divisible by 4.
|
||||||
|
*/
|
||||||
|
+ (instancetype)typedDataWithInt32:(NSData*)data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a `FlutterStandardTypedData` which interprets the specified data
|
||||||
|
* as 64-bit signed integers.
|
||||||
|
*
|
||||||
|
* @param data the byte data. The length must be divisible by 8.
|
||||||
|
*/
|
||||||
|
+ (instancetype)typedDataWithInt64:(NSData*)data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a `FlutterStandardTypedData` which interprets the specified data
|
||||||
|
* as 32-bit floats.
|
||||||
|
*
|
||||||
|
* @param data the byte data. The length must be divisible by 8.
|
||||||
|
*/
|
||||||
|
+ (instancetype)typedDataWithFloat32:(NSData*)data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a `FlutterStandardTypedData` which interprets the specified data
|
||||||
|
* as 64-bit floats.
|
||||||
|
*
|
||||||
|
* @param data the byte data. The length must be divisible by 8.
|
||||||
|
*/
|
||||||
|
+ (instancetype)typedDataWithFloat64:(NSData*)data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The raw underlying data buffer.
|
||||||
|
*/
|
||||||
|
@property(readonly, nonatomic) NSData* data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The type of the encoded values.
|
||||||
|
*/
|
||||||
|
@property(readonly, nonatomic, assign) FlutterStandardDataType type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The number of value items encoded.
|
||||||
|
*/
|
||||||
|
@property(readonly, nonatomic, assign) UInt32 elementCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The number of bytes used by the encoding of a single value item.
|
||||||
|
*/
|
||||||
|
@property(readonly, nonatomic, assign) UInt8 elementSize;
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An arbitrarily large integer value, used with `FlutterStandardMessageCodec`
|
||||||
|
* and `FlutterStandardMethodCodec`.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
FLUTTER_UNAVAILABLE("Unavailable on 2018-08-31. Deprecated on 2018-01-09. "
|
||||||
|
"FlutterStandardBigInteger was needed because the Dart 1.0 int type had no "
|
||||||
|
"size limit. With Dart 2.0, the int type is a fixed-size, 64-bit signed "
|
||||||
|
"integer. If you need to communicate larger integers, use NSString encoding "
|
||||||
|
"instead.")
|
||||||
|
@interface FlutterStandardBigInteger : NSObject
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A codec for method calls and enveloped results.
|
||||||
|
*
|
||||||
|
* Method calls are encoded as binary messages with enough structure that the
|
||||||
|
* codec can extract a method name `NSString` and an arguments `NSObject`,
|
||||||
|
* possibly `nil`. These data items are used to populate a `FlutterMethodCall`.
|
||||||
|
*
|
||||||
|
* Result envelopes are encoded as binary messages with enough structure that
|
||||||
|
* the codec can determine whether the result was successful or an error. In
|
||||||
|
* the former case, the codec can extract the result `NSObject`, possibly `nil`.
|
||||||
|
* In the latter case, the codec can extract an error code `NSString`, a
|
||||||
|
* human-readable `NSString` error message (possibly `nil`), and a custom
|
||||||
|
* error details `NSObject`, possibly `nil`. These data items are used to
|
||||||
|
* populate a `FlutterError`.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@protocol FlutterMethodCodec
|
||||||
|
/**
|
||||||
|
* Provides access to a shared instance this codec.
|
||||||
|
*
|
||||||
|
* @return The shared instance.
|
||||||
|
*/
|
||||||
|
+ (instancetype)sharedInstance;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Encodes the specified method call into binary.
|
||||||
|
*
|
||||||
|
* @param methodCall The method call. The arguments value
|
||||||
|
* must be supported by this codec.
|
||||||
|
* @return The binary encoding.
|
||||||
|
*/
|
||||||
|
- (NSData*)encodeMethodCall:(FlutterMethodCall*)methodCall;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decodes the specified method call from binary.
|
||||||
|
*
|
||||||
|
* @param methodCall The method call to decode.
|
||||||
|
* @return The decoded method call.
|
||||||
|
*/
|
||||||
|
- (FlutterMethodCall*)decodeMethodCall:(NSData*)methodCall;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Encodes the specified successful result into binary.
|
||||||
|
*
|
||||||
|
* @param result The result. Must be a value supported by this codec.
|
||||||
|
* @return The binary encoding.
|
||||||
|
*/
|
||||||
|
- (NSData*)encodeSuccessEnvelope:(id _Nullable)result;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Encodes the specified error result into binary.
|
||||||
|
*
|
||||||
|
* @param error The error object. The error details value must be supported
|
||||||
|
* by this codec.
|
||||||
|
* @return The binary encoding.
|
||||||
|
*/
|
||||||
|
- (NSData*)encodeErrorEnvelope:(FlutterError*)error;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Deccodes the specified result envelope from binary.
|
||||||
|
*
|
||||||
|
* @param envelope The error object.
|
||||||
|
* @return The result value, if the envelope represented a successful result,
|
||||||
|
* or a `FlutterError` instance, if not.
|
||||||
|
*/
|
||||||
|
- (id _Nullable)decodeEnvelope:(NSData*)envelope;
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A `FlutterMethodCodec` using UTF-8 encoded JSON method calls and result
|
||||||
|
* envelopes.
|
||||||
|
*
|
||||||
|
* This codec is guaranteed to be compatible with the corresponding
|
||||||
|
* [JSONMethodCodec](https://api.flutter.dev/flutter/services/JSONMethodCodec-class.html)
|
||||||
|
* on the Dart side. These parts of the Flutter SDK are evolved synchronously.
|
||||||
|
*
|
||||||
|
* Values supported as methods arguments and result payloads are
|
||||||
|
* those supported as top-level or leaf values by `FlutterJSONMessageCodec`.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterJSONMethodCodec : NSObject <FlutterMethodCodec>
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A `FlutterMethodCodec` using the Flutter standard binary encoding.
|
||||||
|
*
|
||||||
|
* This codec is guaranteed to be compatible with the corresponding
|
||||||
|
* [StandardMethodCodec](https://api.flutter.dev/flutter/services/StandardMethodCodec-class.html)
|
||||||
|
* on the Dart side. These parts of the Flutter SDK are evolved synchronously.
|
||||||
|
*
|
||||||
|
* Values supported as method arguments and result payloads are those supported by
|
||||||
|
* `FlutterStandardMessageCodec`.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterStandardMethodCodec : NSObject <FlutterMethodCodec>
|
||||||
|
/**
|
||||||
|
* Create a `FlutterStandardMethodCodec` who will read and write to \p readerWriter.
|
||||||
|
*/
|
||||||
|
+ (instancetype)codecWithReaderWriter:(FlutterStandardReaderWriter*)readerWriter;
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERCODECS_H_
|
||||||
@@ -0,0 +1,102 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERDARTPROJECT_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERDARTPROJECT_H_
|
||||||
|
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
|
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A set of Flutter and Dart assets used by a `FlutterEngine` to initialize execution.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterDartProject : NSObject
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes a Flutter Dart project from a bundle.
|
||||||
|
*
|
||||||
|
* The bundle must either contain a flutter_assets resource directory, or set the Info.plist key
|
||||||
|
* FLTAssetsPath to override that name (if you are doing a custom build using a different name).
|
||||||
|
*
|
||||||
|
* @param bundle The bundle containing the Flutter assets directory. If nil, the App framework
|
||||||
|
* created by Flutter will be used.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithPrecompiledDartBundle:(nullable NSBundle*)bundle NS_DESIGNATED_INITIALIZER;
|
||||||
|
/**
|
||||||
|
* Unavailable - use `init` instead.
|
||||||
|
*/
|
||||||
|
- (instancetype)initFromDefaultSourceForConfiguration API_UNAVAILABLE(macos)
|
||||||
|
FLUTTER_UNAVAILABLE("Use -init instead.");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the default identifier for the bundle where we expect to find the Flutter Dart
|
||||||
|
* application.
|
||||||
|
*/
|
||||||
|
+ (NSString*)defaultBundleIdentifier;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An NSArray of NSStrings to be passed as command line arguments to the Dart entrypoint.
|
||||||
|
*
|
||||||
|
* If this is not explicitly set, this will default to the contents of
|
||||||
|
* [NSProcessInfo arguments], without the binary name.
|
||||||
|
*
|
||||||
|
* Set this to nil to pass no arguments to the Dart entrypoint.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, nullable, copy)
|
||||||
|
NSArray<NSString*>* dartEntrypointArguments API_UNAVAILABLE(ios);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the file name for the given asset. If the bundle with the identifier
|
||||||
|
* "io.flutter.flutter.app" exists, it will try use that bundle; otherwise, it
|
||||||
|
* will use the main bundle. To specify a different bundle, use
|
||||||
|
* `+lookupKeyForAsset:fromBundle`.
|
||||||
|
*
|
||||||
|
* @param asset The name of the asset. The name can be hierarchical.
|
||||||
|
* @return the file name to be used for lookup in the main bundle.
|
||||||
|
*/
|
||||||
|
+ (NSString*)lookupKeyForAsset:(NSString*)asset;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the file name for the given asset.
|
||||||
|
* The returned file name can be used to access the asset in the supplied bundle.
|
||||||
|
*
|
||||||
|
* @param asset The name of the asset. The name can be hierarchical.
|
||||||
|
* @param bundle The `NSBundle` to use for looking up the asset.
|
||||||
|
* @return the file name to be used for lookup in the main bundle.
|
||||||
|
*/
|
||||||
|
+ (NSString*)lookupKeyForAsset:(NSString*)asset fromBundle:(nullable NSBundle*)bundle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the file name for the given asset which originates from the specified package.
|
||||||
|
* The returned file name can be used to access the asset in the application's main bundle.
|
||||||
|
*
|
||||||
|
* @param asset The name of the asset. The name can be hierarchical.
|
||||||
|
* @param package The name of the package from which the asset originates.
|
||||||
|
* @return the file name to be used for lookup in the main bundle.
|
||||||
|
*/
|
||||||
|
+ (NSString*)lookupKeyForAsset:(NSString*)asset fromPackage:(NSString*)package;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the file name for the given asset which originates from the specified package.
|
||||||
|
* The returned file name can be used to access the asset in the specified bundle.
|
||||||
|
*
|
||||||
|
* @param asset The name of the asset. The name can be hierarchical.
|
||||||
|
* @param package The name of the package from which the asset originates.
|
||||||
|
* @param bundle The bundle to use when doing the lookup.
|
||||||
|
* @return the file name to be used for lookup in the main bundle.
|
||||||
|
*/
|
||||||
|
+ (NSString*)lookupKeyForAsset:(NSString*)asset
|
||||||
|
fromPackage:(NSString*)package
|
||||||
|
fromBundle:(nullable NSBundle*)bundle;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERDARTPROJECT_H_
|
||||||
@@ -0,0 +1,495 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERENGINE_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERENGINE_H_
|
||||||
|
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
|
#import <UIKit/UIKit.h>
|
||||||
|
|
||||||
|
#import "FlutterBinaryMessenger.h"
|
||||||
|
#import "FlutterDartProject.h"
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
#import "FlutterPlugin.h"
|
||||||
|
#import "FlutterTexture.h"
|
||||||
|
|
||||||
|
@class FlutterViewController;
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The dart entrypoint that is associated with `main()`. This is to be used as an argument to the
|
||||||
|
* `runWithEntrypoint*` methods.
|
||||||
|
*/
|
||||||
|
// NOLINTNEXTLINE(readability-identifier-naming)
|
||||||
|
extern NSString* const FlutterDefaultDartEntrypoint;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The default Flutter initial route ("/").
|
||||||
|
*/
|
||||||
|
// NOLINTNEXTLINE(readability-identifier-naming)
|
||||||
|
extern NSString* const FlutterDefaultInitialRoute;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The FlutterEngine class coordinates a single instance of execution for a
|
||||||
|
* `FlutterDartProject`. It may have zero or one `FlutterViewController` at a
|
||||||
|
* time, which can be specified via `-setViewController:`.
|
||||||
|
* `FlutterViewController`'s `initWithEngine` initializer will automatically call
|
||||||
|
* `-setViewController:` for itself.
|
||||||
|
*
|
||||||
|
* A FlutterEngine can be created independently of a `FlutterViewController` for
|
||||||
|
* headless execution. It can also persist across the lifespan of multiple
|
||||||
|
* `FlutterViewController` instances to maintain state and/or asynchronous tasks
|
||||||
|
* (such as downloading a large file).
|
||||||
|
*
|
||||||
|
* A FlutterEngine can also be used to prewarm the Dart execution environment and reduce the
|
||||||
|
* latency of showing the Flutter screen when a `FlutterViewController` is created and presented.
|
||||||
|
* See https://docs.flutter.dev/development/add-to-app/performance for more details on loading
|
||||||
|
* performance.
|
||||||
|
*
|
||||||
|
* Alternatively, you can simply create a new `FlutterViewController` with only a
|
||||||
|
* `FlutterDartProject`. That `FlutterViewController` will internally manage its
|
||||||
|
* own instance of a FlutterEngine, but will not guarantee survival of the engine
|
||||||
|
* beyond the life of the ViewController.
|
||||||
|
*
|
||||||
|
* A newly initialized FlutterEngine will not actually run a Dart Isolate until
|
||||||
|
* either `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is invoked.
|
||||||
|
* One of these methods must be invoked before calling `-setViewController:`.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterEngine : NSObject <FlutterPluginRegistry>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default initializer for a FlutterEngine.
|
||||||
|
*
|
||||||
|
* Threads created by this FlutterEngine will appear as "FlutterEngine #" in
|
||||||
|
* Instruments. The prefix can be customized using `initWithName`.
|
||||||
|
*
|
||||||
|
* The engine will execute the project located in the bundle with the identifier
|
||||||
|
* "io.flutter.flutter.app" (the default for Flutter projects).
|
||||||
|
*
|
||||||
|
* A newly initialized engine will not run until either `-runWithEntrypoint:` or
|
||||||
|
* `-runWithEntrypoint:libraryURI:` is called.
|
||||||
|
*
|
||||||
|
* FlutterEngine created with this method will have allowHeadlessExecution set to `YES`.
|
||||||
|
* This means that the engine will continue to run regardless of whether a `FlutterViewController`
|
||||||
|
* is attached to it or not, until `-destroyContext:` is called or the process finishes.
|
||||||
|
*/
|
||||||
|
- (instancetype)init;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize this FlutterEngine.
|
||||||
|
*
|
||||||
|
* The engine will execute the project located in the bundle with the identifier
|
||||||
|
* "io.flutter.flutter.app" (the default for Flutter projects).
|
||||||
|
*
|
||||||
|
* A newly initialized engine will not run until either `-runWithEntrypoint:` or
|
||||||
|
* `-runWithEntrypoint:libraryURI:` is called.
|
||||||
|
*
|
||||||
|
* FlutterEngine created with this method will have allowHeadlessExecution set to `YES`.
|
||||||
|
* This means that the engine will continue to run regardless of whether a `FlutterViewController`
|
||||||
|
* is attached to it or not, until `-destroyContext:` is called or the process finishes.
|
||||||
|
*
|
||||||
|
* @param labelPrefix The label prefix used to identify threads for this instance. Should
|
||||||
|
* be unique across FlutterEngine instances, and is used in instrumentation to label
|
||||||
|
* the threads used by this FlutterEngine.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithName:(NSString*)labelPrefix;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize this FlutterEngine with a `FlutterDartProject`.
|
||||||
|
*
|
||||||
|
* If the FlutterDartProject is not specified, the FlutterEngine will attempt to locate
|
||||||
|
* the project in a default location (the flutter_assets folder in the iOS application
|
||||||
|
* bundle).
|
||||||
|
*
|
||||||
|
* A newly initialized engine will not run the `FlutterDartProject` until either
|
||||||
|
* `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI:` is called.
|
||||||
|
*
|
||||||
|
* FlutterEngine created with this method will have allowHeadlessExecution set to `YES`.
|
||||||
|
* This means that the engine will continue to run regardless of whether a `FlutterViewController`
|
||||||
|
* is attached to it or not, until `-destroyContext:` is called or the process finishes.
|
||||||
|
*
|
||||||
|
* @param labelPrefix The label prefix used to identify threads for this instance. Should
|
||||||
|
* be unique across FlutterEngine instances, and is used in instrumentation to label
|
||||||
|
* the threads used by this FlutterEngine.
|
||||||
|
* @param project The `FlutterDartProject` to run.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithName:(NSString*)labelPrefix project:(nullable FlutterDartProject*)project;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize this FlutterEngine with a `FlutterDartProject`.
|
||||||
|
*
|
||||||
|
* If the FlutterDartProject is not specified, the FlutterEngine will attempt to locate
|
||||||
|
* the project in a default location (the flutter_assets folder in the iOS application
|
||||||
|
* bundle).
|
||||||
|
*
|
||||||
|
* A newly initialized engine will not run the `FlutterDartProject` until either
|
||||||
|
* `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI:` is called.
|
||||||
|
*
|
||||||
|
* @param labelPrefix The label prefix used to identify threads for this instance. Should
|
||||||
|
* be unique across FlutterEngine instances, and is used in instrumentation to label
|
||||||
|
* the threads used by this FlutterEngine.
|
||||||
|
* @param project The `FlutterDartProject` to run.
|
||||||
|
* @param allowHeadlessExecution Whether or not to allow this instance to continue
|
||||||
|
* running after passing a nil `FlutterViewController` to `-setViewController:`.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithName:(NSString*)labelPrefix
|
||||||
|
project:(nullable FlutterDartProject*)project
|
||||||
|
allowHeadlessExecution:(BOOL)allowHeadlessExecution;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize this FlutterEngine with a `FlutterDartProject`.
|
||||||
|
*
|
||||||
|
* If the FlutterDartProject is not specified, the FlutterEngine will attempt to locate
|
||||||
|
* the project in a default location (the flutter_assets folder in the iOS application
|
||||||
|
* bundle).
|
||||||
|
*
|
||||||
|
* A newly initialized engine will not run the `FlutterDartProject` until either
|
||||||
|
* `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI:` is called.
|
||||||
|
*
|
||||||
|
* @param labelPrefix The label prefix used to identify threads for this instance. Should
|
||||||
|
* be unique across FlutterEngine instances, and is used in instrumentation to label
|
||||||
|
* the threads used by this FlutterEngine.
|
||||||
|
* @param project The `FlutterDartProject` to run.
|
||||||
|
* @param allowHeadlessExecution Whether or not to allow this instance to continue
|
||||||
|
* running after passing a nil `FlutterViewController` to `-setViewController:`.
|
||||||
|
* @param restorationEnabled Whether state restoration is enabled. When true, the framework will
|
||||||
|
* wait for the attached view controller to provide restoration data.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithName:(NSString*)labelPrefix
|
||||||
|
project:(nullable FlutterDartProject*)project
|
||||||
|
allowHeadlessExecution:(BOOL)allowHeadlessExecution
|
||||||
|
restorationEnabled:(BOOL)restorationEnabled NS_DESIGNATED_INITIALIZER;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs a Dart program on an Isolate from the main Dart library (i.e. the library that
|
||||||
|
* contains `main()`), using `main()` as the entrypoint (the default for Flutter projects),
|
||||||
|
* and using "/" (the default route) as the initial route.
|
||||||
|
*
|
||||||
|
* The first call to this method will create a new Isolate. Subsequent calls will return
|
||||||
|
* immediately and have no effect.
|
||||||
|
*
|
||||||
|
* @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise.
|
||||||
|
*/
|
||||||
|
- (BOOL)run;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs a Dart program on an Isolate from the main Dart library (i.e. the library that
|
||||||
|
* contains `main()`), using "/" (the default route) as the initial route.
|
||||||
|
*
|
||||||
|
* The first call to this method will create a new Isolate. Subsequent calls will return
|
||||||
|
* immediately and have no effect.
|
||||||
|
*
|
||||||
|
* @param entrypoint The name of a top-level function from the same Dart
|
||||||
|
* library that contains the app's main() function. If this is FlutterDefaultDartEntrypoint (or
|
||||||
|
* nil) it will default to `main()`. If it is not the app's main() function, that function must
|
||||||
|
* be decorated with `@pragma(vm:entry-point)` to ensure the method is not tree-shaken by the Dart
|
||||||
|
* compiler.
|
||||||
|
* @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise.
|
||||||
|
*/
|
||||||
|
- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs a Dart program on an Isolate from the main Dart library (i.e. the library that
|
||||||
|
* contains `main()`).
|
||||||
|
*
|
||||||
|
* The first call to this method will create a new Isolate. Subsequent calls will return
|
||||||
|
* immediately and have no effect.
|
||||||
|
*
|
||||||
|
* @param entrypoint The name of a top-level function from the same Dart
|
||||||
|
* library that contains the app's main() function. If this is FlutterDefaultDartEntrypoint (or
|
||||||
|
* nil), it will default to `main()`. If it is not the app's main() function, that function must
|
||||||
|
* be decorated with `@pragma(vm:entry-point)` to ensure the method is not tree-shaken by the Dart
|
||||||
|
* compiler.
|
||||||
|
* @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is
|
||||||
|
* FlutterDefaultInitialRoute (or nil), it will default to the "/" route.
|
||||||
|
* @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise.
|
||||||
|
*/
|
||||||
|
- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint
|
||||||
|
initialRoute:(nullable NSString*)initialRoute;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs a Dart program on an Isolate using the specified entrypoint and Dart library,
|
||||||
|
* which may not be the same as the library containing the Dart program's `main()` function.
|
||||||
|
*
|
||||||
|
* The first call to this method will create a new Isolate. Subsequent calls will return
|
||||||
|
* immediately and have no effect.
|
||||||
|
*
|
||||||
|
* @param entrypoint The name of a top-level function from a Dart library. If this is
|
||||||
|
* FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's
|
||||||
|
* main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the
|
||||||
|
* method is not tree-shaken by the Dart compiler.
|
||||||
|
* @param uri The URI of the Dart library which contains the entrypoint method
|
||||||
|
* (example "package:foo_package/main.dart"). If nil, this will default to
|
||||||
|
* the same library as the `main()` function in the Dart program.
|
||||||
|
* @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise.
|
||||||
|
*/
|
||||||
|
- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint libraryURI:(nullable NSString*)uri;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs a Dart program on an Isolate using the specified entrypoint and Dart library,
|
||||||
|
* which may not be the same as the library containing the Dart program's `main()` function.
|
||||||
|
*
|
||||||
|
* The first call to this method will create a new Isolate. Subsequent calls will return
|
||||||
|
* immediately and have no effect.
|
||||||
|
*
|
||||||
|
* @param entrypoint The name of a top-level function from a Dart library. If this is
|
||||||
|
* FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's
|
||||||
|
* main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the
|
||||||
|
* method is not tree-shaken by the Dart compiler.
|
||||||
|
* @param libraryURI The URI of the Dart library which contains the entrypoint
|
||||||
|
* method (example "package:foo_package/main.dart"). If nil, this will
|
||||||
|
* default to the same library as the `main()` function in the Dart program.
|
||||||
|
* @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is
|
||||||
|
* FlutterDefaultInitialRoute (or nil), it will default to the "/" route.
|
||||||
|
* @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise.
|
||||||
|
*/
|
||||||
|
- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint
|
||||||
|
libraryURI:(nullable NSString*)libraryURI
|
||||||
|
initialRoute:(nullable NSString*)initialRoute;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs a Dart program on an Isolate using the specified entrypoint and Dart library,
|
||||||
|
* which may not be the same as the library containing the Dart program's `main()` function.
|
||||||
|
*
|
||||||
|
* The first call to this method will create a new Isolate. Subsequent calls will return
|
||||||
|
* immediately and have no effect.
|
||||||
|
*
|
||||||
|
* @param entrypoint The name of a top-level function from a Dart library. If this is
|
||||||
|
* FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's
|
||||||
|
* main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the
|
||||||
|
* method is not tree-shaken by the Dart compiler.
|
||||||
|
* @param libraryURI The URI of the Dart library which contains the entrypoint
|
||||||
|
* method (example "package:foo_package/main.dart"). If nil, this will
|
||||||
|
* default to the same library as the `main()` function in the Dart program.
|
||||||
|
* @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is
|
||||||
|
* FlutterDefaultInitialRoute (or nil), it will default to the "/" route.
|
||||||
|
* @param entrypointArgs Arguments passed as a list of string to Dart's entrypoint function.
|
||||||
|
* @return YES if the call succeeds in creating and running a Flutter Engine instance; NO otherwise.
|
||||||
|
*/
|
||||||
|
- (BOOL)runWithEntrypoint:(nullable NSString*)entrypoint
|
||||||
|
libraryURI:(nullable NSString*)libraryURI
|
||||||
|
initialRoute:(nullable NSString*)initialRoute
|
||||||
|
entrypointArgs:(nullable NSArray<NSString*>*)entrypointArgs;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Destroy running context for an engine.
|
||||||
|
*
|
||||||
|
* This method can be used to force the FlutterEngine object to release all resources.
|
||||||
|
* After sending this message, the object will be in an unusable state until it is deallocated.
|
||||||
|
* Accessing properties or sending messages to it will result in undefined behavior or runtime
|
||||||
|
* errors.
|
||||||
|
*/
|
||||||
|
- (void)destroyContext;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ensures that Flutter will generate a semantics tree.
|
||||||
|
*
|
||||||
|
* This is enabled by default if certain accessibility services are turned on by
|
||||||
|
* the user, or when using a Simulator. This method allows a user to turn
|
||||||
|
* semantics on when they would not ordinarily be generated and the performance
|
||||||
|
* overhead is not a concern, e.g. for UI testing. Note that semantics should
|
||||||
|
* never be programmatically turned off, as it would potentially disable
|
||||||
|
* accessibility services an end user has requested.
|
||||||
|
*
|
||||||
|
* This method must only be called after launching the engine via
|
||||||
|
* `-runWithEntrypoint:` or `-runWithEntryPoint:libraryURI`.
|
||||||
|
*
|
||||||
|
* Although this method returns synchronously, it does not guarantee that a
|
||||||
|
* semantics tree is actually available when the method returns. It
|
||||||
|
* synchronously ensures that the next frame the Flutter framework creates will
|
||||||
|
* have a semantics tree.
|
||||||
|
*
|
||||||
|
* You can subscribe to semantics updates via `NSNotificationCenter` by adding
|
||||||
|
* an observer for the name `FlutterSemanticsUpdateNotification`. The `object`
|
||||||
|
* parameter will be the `FlutterViewController` associated with the semantics
|
||||||
|
* update. This will asynchronously fire after a semantics tree has actually
|
||||||
|
* built (which may be some time after the frame has been rendered).
|
||||||
|
*/
|
||||||
|
- (void)ensureSemanticsEnabled;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the `FlutterViewController` for this instance. The FlutterEngine must be
|
||||||
|
* running (e.g. a successful call to `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI`)
|
||||||
|
* before calling this method. Callers may pass nil to remove the viewController
|
||||||
|
* and have the engine run headless in the current process.
|
||||||
|
*
|
||||||
|
* A FlutterEngine can only have one `FlutterViewController` at a time. If there is
|
||||||
|
* already a `FlutterViewController` associated with this instance, this method will replace
|
||||||
|
* the engine's current viewController with the newly specified one.
|
||||||
|
*
|
||||||
|
* Setting the viewController will signal the engine to start animations and drawing, and unsetting
|
||||||
|
* it will signal the engine to stop animations and drawing. However, neither will impact the state
|
||||||
|
* of the Dart program's execution.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, weak) FlutterViewController* viewController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterMethodChannel` used for localization related platform messages, such as
|
||||||
|
* setting the locale.
|
||||||
|
*
|
||||||
|
* Can be nil after `destroyContext` is called.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly, nullable) FlutterMethodChannel* localizationChannel;
|
||||||
|
/**
|
||||||
|
* The `FlutterMethodChannel` used for navigation related platform messages.
|
||||||
|
*
|
||||||
|
* Can be nil after `destroyContext` is called.
|
||||||
|
*
|
||||||
|
* @see [Navigation
|
||||||
|
* Channel](https://api.flutter.dev/flutter/services/SystemChannels/navigation-constant.html)
|
||||||
|
* @see [Navigator Widget](https://api.flutter.dev/flutter/widgets/Navigator-class.html)
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) FlutterMethodChannel* navigationChannel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterMethodChannel` used for restoration related platform messages.
|
||||||
|
*
|
||||||
|
* Can be nil after `destroyContext` is called.
|
||||||
|
*
|
||||||
|
* @see [Restoration
|
||||||
|
* Channel](https://api.flutter.dev/flutter/services/SystemChannels/restoration-constant.html)
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) FlutterMethodChannel* restorationChannel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterMethodChannel` used for core platform messages, such as
|
||||||
|
* information about the screen orientation.
|
||||||
|
*
|
||||||
|
* Can be nil after `destroyContext` is called.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) FlutterMethodChannel* platformChannel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterMethodChannel` used to communicate text input events to the
|
||||||
|
* Dart Isolate.
|
||||||
|
*
|
||||||
|
* Can be nil after `destroyContext` is called.
|
||||||
|
*
|
||||||
|
* @see [Text Input
|
||||||
|
* Channel](https://api.flutter.dev/flutter/services/SystemChannels/textInput-constant.html)
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) FlutterMethodChannel* textInputChannel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterBasicMessageChannel` used to communicate app lifecycle events
|
||||||
|
* to the Dart Isolate.
|
||||||
|
*
|
||||||
|
* Can be nil after `destroyContext` is called.
|
||||||
|
*
|
||||||
|
* @see [Lifecycle
|
||||||
|
* Channel](https://api.flutter.dev/flutter/services/SystemChannels/lifecycle-constant.html)
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) FlutterBasicMessageChannel* lifecycleChannel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterBasicMessageChannel` used for communicating system events, such as
|
||||||
|
* memory pressure events.
|
||||||
|
*
|
||||||
|
* Can be nil after `destroyContext` is called.
|
||||||
|
*
|
||||||
|
* @see [System
|
||||||
|
* Channel](https://api.flutter.dev/flutter/services/SystemChannels/system-constant.html)
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) FlutterBasicMessageChannel* systemChannel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterBasicMessageChannel` used for communicating user settings such as
|
||||||
|
* clock format and text scale.
|
||||||
|
*
|
||||||
|
* Can be nil after `destroyContext` is called.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) FlutterBasicMessageChannel* settingsChannel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterBasicMessageChannel` used for communicating key events
|
||||||
|
* from physical keyboards
|
||||||
|
*
|
||||||
|
* Can be nil after `destroyContext` is called.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) FlutterBasicMessageChannel* keyEventChannel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `NSURL` of the Dart VM Service for the service isolate.
|
||||||
|
*
|
||||||
|
* This is only set in debug and profile runtime modes, and only after the
|
||||||
|
* Dart VM Service is ready. In release mode or before the Dart VM Service has
|
||||||
|
* started, it returns `nil`.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly, nullable) NSURL* vmServiceUrl;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterBinaryMessenger` associated with this FlutterEngine (used for communicating with
|
||||||
|
* channels).
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) NSObject<FlutterBinaryMessenger>* binaryMessenger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterTextureRegistry` associated with this FlutterEngine (used to register textures).
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) NSObject<FlutterTextureRegistry>* textureRegistry;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The UI Isolate ID of the engine.
|
||||||
|
*
|
||||||
|
* This property will be nil if the engine is not running.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly, copy, nullable) NSString* isolateId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether or not GPU calls are allowed.
|
||||||
|
*
|
||||||
|
* Typically this is set when the app is backgrounded and foregrounded.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, assign) BOOL isGpuDisabled;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exposes parts of a `FlutterEngine` for registration purposes.
|
||||||
|
*
|
||||||
|
* This is used when the engine is created implicitly to allow registering
|
||||||
|
* plugins, application-level method channels, platform views, etc.
|
||||||
|
*/
|
||||||
|
@protocol FlutterImplicitEngineBridge <NSObject>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterPluginRegistry` for the created `FlutterEngine`.
|
||||||
|
*
|
||||||
|
* This can be used to vend `FlutterPluginRegistrar`s for plugins.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) NSObject<FlutterPluginRegistry>* pluginRegistry;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterApplicationRegistrar` for the created `FlutterEngine`.
|
||||||
|
*
|
||||||
|
* This registrar provides access to application-level services, such as the engine's
|
||||||
|
* `FlutterBinaryMessenger` or `FlutterTextureRegistry`.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) NSObject<FlutterApplicationRegistrar>* applicationRegistrar;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Protocol for receiving a callback when an implicit engine is initialized, such as when created by
|
||||||
|
* a FlutterViewController from a storyboard.
|
||||||
|
*
|
||||||
|
* This provides the engine bridge to the listener.
|
||||||
|
*/
|
||||||
|
@protocol FlutterImplicitEngineDelegate
|
||||||
|
@required
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called once the implicit `FlutterEngine` is initialized.
|
||||||
|
*
|
||||||
|
* The `FlutterImplicitEngineBridge` can then be used to register plugins,
|
||||||
|
* application-level method channels, platform views, etc.
|
||||||
|
*/
|
||||||
|
- (void)didInitializeImplicitFlutterEngine:(NSObject<FlutterImplicitEngineBridge>*)engineBridge;
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERENGINE_H_
|
||||||
@@ -0,0 +1,115 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERENGINEGROUP_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERENGINEGROUP_H_
|
||||||
|
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
|
|
||||||
|
#import "FlutterEngine.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
/** Options that control how a FlutterEngine should be created. */
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterEngineGroupOptions : NSObject
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name of a top-level function from a Dart library. If this is FlutterDefaultDartEntrypoint
|
||||||
|
* (or nil); this will default to `main()`. If it is not the app's main() function, that function
|
||||||
|
* must be decorated with `@pragma(vm:entry-point)` to ensure themethod is not tree-shaken by the
|
||||||
|
* Dart compiler.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, copy, nullable) NSString* entrypoint;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The URI of the Dart library which contains the entrypoint method. If nil, this will default to
|
||||||
|
* the same library as the `main()` function in the Dart program.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, copy, nullable) NSString* libraryURI;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name of the initial Flutter `Navigator` `Route` to load. If this is
|
||||||
|
* FlutterDefaultInitialRoute (or nil), it will default to the "/" route.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, copy, nullable) NSString* initialRoute;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Arguments passed as a list of string to Dart's entrypoint function.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, copy, nullable) NSArray<NSString*>* entrypointArgs;
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a collection of FlutterEngines who share resources which allows
|
||||||
|
* them to be created with less time const and occupy less memory than just
|
||||||
|
* creating multiple FlutterEngines.
|
||||||
|
*
|
||||||
|
* Deleting a FlutterEngineGroup doesn't invalidate existing FlutterEngines, but
|
||||||
|
* it eliminates the possibility to create more FlutterEngines in that group.
|
||||||
|
*
|
||||||
|
* @warning This class is a work-in-progress and may change.
|
||||||
|
* @see https://github.com/flutter/flutter/issues/72009
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterEngineGroup : NSObject
|
||||||
|
- (instancetype)init NS_UNAVAILABLE;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize a new FlutterEngineGroup.
|
||||||
|
*
|
||||||
|
* @param name The name that will present in the threads shared across the
|
||||||
|
* engines in this group.
|
||||||
|
* @param project The `FlutterDartProject` that all FlutterEngines in this group
|
||||||
|
* will be executing.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithName:(NSString*)name
|
||||||
|
project:(nullable FlutterDartProject*)project NS_DESIGNATED_INITIALIZER;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a running `FlutterEngine` that shares components with this group.
|
||||||
|
*
|
||||||
|
* @param entrypoint The name of a top-level function from a Dart library. If this is
|
||||||
|
* FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's
|
||||||
|
* main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the
|
||||||
|
* method is not tree-shaken by the Dart compiler.
|
||||||
|
* @param libraryURI The URI of the Dart library which contains the entrypoint method. IF nil,
|
||||||
|
* this will default to the same library as the `main()` function in the Dart program.
|
||||||
|
*
|
||||||
|
* @see FlutterEngineGroup
|
||||||
|
*/
|
||||||
|
- (FlutterEngine*)makeEngineWithEntrypoint:(nullable NSString*)entrypoint
|
||||||
|
libraryURI:(nullable NSString*)libraryURI;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a running `FlutterEngine` that shares components with this group.
|
||||||
|
*
|
||||||
|
* @param entrypoint The name of a top-level function from a Dart library. If this is
|
||||||
|
* FlutterDefaultDartEntrypoint (or nil); this will default to `main()`. If it is not the app's
|
||||||
|
* main() function, that function must be decorated with `@pragma(vm:entry-point)` to ensure the
|
||||||
|
* method is not tree-shaken by the Dart compiler.
|
||||||
|
* @param libraryURI The URI of the Dart library which contains the entrypoint method. IF nil,
|
||||||
|
* this will default to the same library as the `main()` function in the Dart program.
|
||||||
|
* @param initialRoute The name of the initial Flutter `Navigator` `Route` to load. If this is
|
||||||
|
* FlutterDefaultInitialRoute (or nil), it will default to the "/" route.
|
||||||
|
*
|
||||||
|
* @see FlutterEngineGroup
|
||||||
|
*/
|
||||||
|
- (FlutterEngine*)makeEngineWithEntrypoint:(nullable NSString*)entrypoint
|
||||||
|
libraryURI:(nullable NSString*)libraryURI
|
||||||
|
initialRoute:(nullable NSString*)initialRoute;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a running `FlutterEngine` that shares components with this group.
|
||||||
|
*
|
||||||
|
* @param options Options that control how a FlutterEngine should be created.
|
||||||
|
*
|
||||||
|
* @see FlutterEngineGroupOptions
|
||||||
|
*/
|
||||||
|
- (FlutterEngine*)makeEngineWithOptions:(nullable FlutterEngineGroupOptions*)options;
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERENGINEGROUP_H_
|
||||||
@@ -0,0 +1,97 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERHEADLESSDARTRUNNER_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERHEADLESSDARTRUNNER_H_
|
||||||
|
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
|
|
||||||
|
#import "FlutterBinaryMessenger.h"
|
||||||
|
#import "FlutterDartProject.h"
|
||||||
|
#import "FlutterEngine.h"
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A callback for when FlutterHeadlessDartRunner has attempted to start a Dart
|
||||||
|
* Isolate in the background.
|
||||||
|
*
|
||||||
|
* @param success YES if the Isolate was started and run successfully, NO
|
||||||
|
* otherwise.
|
||||||
|
*/
|
||||||
|
typedef void (^FlutterHeadlessDartRunnerCallback)(BOOL success);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The deprecated FlutterHeadlessDartRunner runs Flutter Dart code with a null rasterizer,
|
||||||
|
* and no native drawing surface. It is appropriate for use in running Dart
|
||||||
|
* code e.g. in the background from a plugin.
|
||||||
|
*
|
||||||
|
* Most callers should prefer using `FlutterEngine` directly; this interface exists
|
||||||
|
* for legacy support.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
FLUTTER_DEPRECATED("FlutterEngine should be used rather than FlutterHeadlessDartRunner")
|
||||||
|
@interface FlutterHeadlessDartRunner : FlutterEngine
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize this FlutterHeadlessDartRunner with a `FlutterDartProject`.
|
||||||
|
*
|
||||||
|
* If the FlutterDartProject is not specified, the FlutterHeadlessDartRunner will attempt to locate
|
||||||
|
* the project in a default location.
|
||||||
|
*
|
||||||
|
* A newly initialized engine will not run the `FlutterDartProject` until either
|
||||||
|
* `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is called.
|
||||||
|
*
|
||||||
|
* @param labelPrefix The label prefix used to identify threads for this instance. Should
|
||||||
|
* be unique across FlutterEngine instances
|
||||||
|
* @param projectOrNil The `FlutterDartProject` to run.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithName:(NSString*)labelPrefix project:(FlutterDartProject*)projectOrNil;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize this FlutterHeadlessDartRunner with a `FlutterDartProject`.
|
||||||
|
*
|
||||||
|
* If the FlutterDartProject is not specified, the FlutterHeadlessDartRunner will attempt to locate
|
||||||
|
* the project in a default location.
|
||||||
|
*
|
||||||
|
* A newly initialized engine will not run the `FlutterDartProject` until either
|
||||||
|
* `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is called.
|
||||||
|
*
|
||||||
|
* @param labelPrefix The label prefix used to identify threads for this instance. Should
|
||||||
|
* be unique across FlutterEngine instances
|
||||||
|
* @param projectOrNil The `FlutterDartProject` to run.
|
||||||
|
* @param allowHeadlessExecution Must be set to `YES`.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithName:(NSString*)labelPrefix
|
||||||
|
project:(FlutterDartProject*)projectOrNil
|
||||||
|
allowHeadlessExecution:(BOOL)allowHeadlessExecution;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize this FlutterHeadlessDartRunner with a `FlutterDartProject`.
|
||||||
|
*
|
||||||
|
* If the FlutterDartProject is not specified, the FlutterHeadlessDartRunner will attempt to locate
|
||||||
|
* the project in a default location.
|
||||||
|
*
|
||||||
|
* A newly initialized engine will not run the `FlutterDartProject` until either
|
||||||
|
* `-runWithEntrypoint:` or `-runWithEntrypoint:libraryURI` is called.
|
||||||
|
*
|
||||||
|
* @param labelPrefix The label prefix used to identify threads for this instance. Should
|
||||||
|
* be unique across FlutterEngine instances
|
||||||
|
* @param projectOrNil The `FlutterDartProject` to run.
|
||||||
|
* @param allowHeadlessExecution Must be set to `YES`.
|
||||||
|
* @param restorationEnabled Must be set to `NO`.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithName:(NSString*)labelPrefix
|
||||||
|
project:(FlutterDartProject*)projectOrNil
|
||||||
|
allowHeadlessExecution:(BOOL)allowHeadlessExecution
|
||||||
|
restorationEnabled:(BOOL)restorationEnabled NS_DESIGNATED_INITIALIZER;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Not recommended for use - will initialize with a default label ("io.flutter.headless")
|
||||||
|
* and the default FlutterDartProject.
|
||||||
|
*/
|
||||||
|
- (instancetype)init;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERHEADLESSDARTRUNNER_H_
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERHOURFORMAT_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERHOURFORMAT_H_
|
||||||
|
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
|
|
||||||
|
@interface FlutterHourFormat : NSObject
|
||||||
|
+ (BOOL)isAlwaysUse24HourFormat;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERHOURFORMAT_H_
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERMACROS_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERMACROS_H_
|
||||||
|
|
||||||
|
#if defined(FLUTTER_FRAMEWORK)
|
||||||
|
|
||||||
|
#define FLUTTER_DARWIN_EXPORT __attribute__((visibility("default")))
|
||||||
|
|
||||||
|
#else // defined(FLUTTER_SDK)
|
||||||
|
|
||||||
|
#define FLUTTER_DARWIN_EXPORT
|
||||||
|
|
||||||
|
#endif // defined(FLUTTER_SDK)
|
||||||
|
|
||||||
|
#ifndef NS_ASSUME_NONNULL_BEGIN
|
||||||
|
#define NS_ASSUME_NONNULL_BEGIN _Pragma("clang assume_nonnull begin")
|
||||||
|
#define NS_ASSUME_NONNULL_END _Pragma("clang assume_nonnull end")
|
||||||
|
#endif // defined(NS_ASSUME_NONNULL_BEGIN)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates that the API has been deprecated for the specified reason. Code
|
||||||
|
* that uses the deprecated API will continue to work as before. However, the
|
||||||
|
* API will soon become unavailable and users are encouraged to immediately take
|
||||||
|
* the appropriate action mentioned in the deprecation message and the BREAKING
|
||||||
|
* CHANGES section present in the Flutter.h umbrella header.
|
||||||
|
*/
|
||||||
|
#define FLUTTER_DEPRECATED(msg) __attribute__((__deprecated__(msg)))
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates that the previously deprecated API is now unavailable. Code that
|
||||||
|
* uses the API will not work and the declaration of the API is only a stub
|
||||||
|
* meant to display the given message detailing the actions for the user to take
|
||||||
|
* immediately.
|
||||||
|
*/
|
||||||
|
#define FLUTTER_UNAVAILABLE(msg) __attribute__((__unavailable__(msg)))
|
||||||
|
|
||||||
|
#if __has_feature(objc_arc)
|
||||||
|
#define FLUTTER_ASSERT_ARC
|
||||||
|
#define FLUTTER_ASSERT_NOT_ARC #error ARC must be disabled !
|
||||||
|
#else
|
||||||
|
#define FLUTTER_ASSERT_ARC #error ARC must be enabled !
|
||||||
|
#define FLUTTER_ASSERT_NOT_ARC
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERMACROS_H_
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERPLATFORMVIEWS_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERPLATFORMVIEWS_H_
|
||||||
|
|
||||||
|
#import <UIKit/UIKit.h>
|
||||||
|
|
||||||
|
#import "FlutterCodecs.h"
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wraps a `UIView` for embedding in the Flutter hierarchy
|
||||||
|
*/
|
||||||
|
@protocol FlutterPlatformView <NSObject>
|
||||||
|
/**
|
||||||
|
* Returns a reference to the `UIView` that is wrapped by this `FlutterPlatformView`.
|
||||||
|
*/
|
||||||
|
- (UIView*)view;
|
||||||
|
@end
|
||||||
|
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@protocol FlutterPlatformViewFactory <NSObject>
|
||||||
|
/**
|
||||||
|
* Create a `FlutterPlatformView`.
|
||||||
|
*
|
||||||
|
* Implemented by iOS code that expose a `UIView` for embedding in a Flutter app.
|
||||||
|
*
|
||||||
|
* The implementation of this method should create a new `UIView` and return it.
|
||||||
|
*
|
||||||
|
* @param frame The rectangle for the newly created `UIView` measured in points.
|
||||||
|
* @param viewId A unique identifier for this `UIView`.
|
||||||
|
* @param args Parameters for creating the `UIView` sent from the Dart side of the Flutter app.
|
||||||
|
* If `createArgsCodec` is not implemented, or if no creation arguments were sent from the Dart
|
||||||
|
* code, this will be null. Otherwise this will be the value sent from the Dart code as decoded by
|
||||||
|
* `createArgsCodec`.
|
||||||
|
*/
|
||||||
|
- (NSObject<FlutterPlatformView>*)createWithFrame:(CGRect)frame
|
||||||
|
viewIdentifier:(int64_t)viewId
|
||||||
|
arguments:(id _Nullable)args;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the `FlutterMessageCodec` for decoding the args parameter of `createWithFrame`.
|
||||||
|
*
|
||||||
|
* Only needs to be implemented if `createWithFrame` needs an arguments parameter.
|
||||||
|
*/
|
||||||
|
@optional
|
||||||
|
- (NSObject<FlutterMessageCodec>*)createArgsCodec;
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERPLATFORMVIEWS_H_
|
||||||
@@ -0,0 +1,513 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERPLUGIN_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERPLUGIN_H_
|
||||||
|
|
||||||
|
#import <UIKit/UIKit.h>
|
||||||
|
#import <UserNotifications/UNUserNotificationCenter.h>
|
||||||
|
|
||||||
|
#import "FlutterBinaryMessenger.h"
|
||||||
|
#import "FlutterChannels.h"
|
||||||
|
#import "FlutterCodecs.h"
|
||||||
|
#import "FlutterPlatformViews.h"
|
||||||
|
#import "FlutterSceneLifeCycle.h"
|
||||||
|
#import "FlutterTexture.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
@protocol FlutterPluginRegistrar;
|
||||||
|
@protocol FlutterPluginRegistry;
|
||||||
|
|
||||||
|
#pragma mark -
|
||||||
|
/**
|
||||||
|
* Protocol for listener of events from the UIApplication, typically a FlutterPlugin.
|
||||||
|
*/
|
||||||
|
@protocol FlutterApplicationLifeCycleDelegate <UNUserNotificationCenterDelegate>
|
||||||
|
|
||||||
|
@optional
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*
|
||||||
|
* @return `NO` if this vetos application launch.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
didFinishLaunchingWithOptions:(NSDictionary*)launchOptions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*
|
||||||
|
* @return `NO` if this vetos application launch.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
willFinishLaunchingWithOptions:(NSDictionary*)launchOptions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)applicationDidBecomeActive:(UIApplication*)application;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)applicationWillResignActive:(UIApplication*)application;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)applicationDidEnterBackground:(UIApplication*)application;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)applicationWillEnterForeground:(UIApplication*)application;
|
||||||
|
|
||||||
|
/**
|
||||||
|
Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)applicationWillTerminate:(UIApplication*)application;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)application:(UIApplication*)application
|
||||||
|
didRegisterUserNotificationSettings:(UIUserNotificationSettings*)notificationSettings
|
||||||
|
API_DEPRECATED(
|
||||||
|
"See -[UIApplicationDelegate application:didRegisterUserNotificationSettings:] deprecation",
|
||||||
|
ios(8.0, 10.0));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)application:(UIApplication*)application
|
||||||
|
didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)application:(UIApplication*)application
|
||||||
|
didFailToRegisterForRemoteNotificationsWithError:(NSError*)error;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*
|
||||||
|
* @return `YES` if this handles the request.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
didReceiveRemoteNotification:(NSDictionary*)userInfo
|
||||||
|
fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)application:(UIApplication*)application
|
||||||
|
didReceiveLocalNotification:(UILocalNotification*)notification
|
||||||
|
API_DEPRECATED(
|
||||||
|
"See -[UIApplicationDelegate application:didReceiveLocalNotification:] deprecation",
|
||||||
|
ios(4.0, 10.0));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*
|
||||||
|
* @return `YES` if this handles the request.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
openURL:(NSURL*)url
|
||||||
|
options:(NSDictionary<UIApplicationOpenURLOptionsKey, id>*)options;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*
|
||||||
|
* @return `YES` if this handles the request.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application handleOpenURL:(NSURL*)url;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*
|
||||||
|
* @return `YES` if this handles the request.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
openURL:(NSURL*)url
|
||||||
|
sourceApplication:(NSString*)sourceApplication
|
||||||
|
annotation:(id)annotation;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*
|
||||||
|
* @return `YES` if this handles the request.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
performActionForShortcutItem:(UIApplicationShortcutItem*)shortcutItem
|
||||||
|
completionHandler:(void (^)(BOOL succeeded))completionHandler
|
||||||
|
API_AVAILABLE(ios(9.0));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*
|
||||||
|
* @return `YES` if this handles the request.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
handleEventsForBackgroundURLSession:(nonnull NSString*)identifier
|
||||||
|
completionHandler:(nonnull void (^)(void))completionHandler;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*
|
||||||
|
* @return `YES` if this handles the request.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*
|
||||||
|
* @return `YES` if this handles the request.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
continueUserActivity:(NSUserActivity*)userActivity
|
||||||
|
restorationHandler:(void (^)(NSArray*))restorationHandler;
|
||||||
|
@end
|
||||||
|
|
||||||
|
#pragma mark -
|
||||||
|
/**
|
||||||
|
* A plugin registration callback.
|
||||||
|
*
|
||||||
|
* Used for registering plugins with additional instances of
|
||||||
|
* `FlutterPluginRegistry`.
|
||||||
|
*
|
||||||
|
* @param registry The registry to register plugins with.
|
||||||
|
*/
|
||||||
|
typedef void (*FlutterPluginRegistrantCallback)(NSObject<FlutterPluginRegistry>* registry);
|
||||||
|
|
||||||
|
#pragma mark -
|
||||||
|
/**
|
||||||
|
* Implemented by the iOS part of a Flutter plugin.
|
||||||
|
*
|
||||||
|
* Defines a set of optional callback methods and a method to set up the plugin
|
||||||
|
* and register it to be called by other application components.
|
||||||
|
*/
|
||||||
|
@protocol FlutterPlugin <NSObject, FlutterApplicationLifeCycleDelegate>
|
||||||
|
@required
|
||||||
|
/**
|
||||||
|
* Registers this plugin using the context information and callback registration
|
||||||
|
* methods exposed by the given registrar.
|
||||||
|
*
|
||||||
|
* The registrar is obtained from a `FlutterPluginRegistry` which keeps track of
|
||||||
|
* the identity of registered plugins and provides basic support for cross-plugin
|
||||||
|
* coordination.
|
||||||
|
*
|
||||||
|
* The caller of this method, a plugin registrant, is usually autogenerated by
|
||||||
|
* Flutter tooling based on declared plugin dependencies. The generated registrant
|
||||||
|
* asks the registry for a registrar for each plugin, and calls this method to
|
||||||
|
* allow the plugin to initialize itself and register callbacks with application
|
||||||
|
* objects available through the registrar protocol.
|
||||||
|
*
|
||||||
|
* @param registrar A helper providing application context and methods for
|
||||||
|
* registering callbacks.
|
||||||
|
*/
|
||||||
|
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar;
|
||||||
|
@optional
|
||||||
|
/**
|
||||||
|
* Set a callback for registering plugins to an additional `FlutterPluginRegistry`,
|
||||||
|
* including headless `FlutterEngine` instances.
|
||||||
|
*
|
||||||
|
* This method is typically called from within an application's `AppDelegate` at
|
||||||
|
* startup to allow for plugins which create additional `FlutterEngine` instances
|
||||||
|
* to register the application's plugins.
|
||||||
|
*
|
||||||
|
* @param callback A callback for registering some set of plugins with a
|
||||||
|
* `FlutterPluginRegistry`.
|
||||||
|
*/
|
||||||
|
+ (void)setPluginRegistrantCallback:(FlutterPluginRegistrantCallback)callback;
|
||||||
|
@optional
|
||||||
|
/**
|
||||||
|
* Called if this plugin has been registered to receive `FlutterMethodCall`s.
|
||||||
|
*
|
||||||
|
* @param call The method call command object.
|
||||||
|
* @param result A callback for submitting the result of the call.
|
||||||
|
*/
|
||||||
|
- (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result;
|
||||||
|
@optional
|
||||||
|
/**
|
||||||
|
* Called when a plugin is being removed from a `FlutterEngine`, which is
|
||||||
|
* usually the result of the `FlutterEngine` being deallocated. This method
|
||||||
|
* provides the opportunity to do necessary cleanup.
|
||||||
|
*
|
||||||
|
* You will only receive this method if you registered your plugin instance with
|
||||||
|
* the `FlutterEngine` via `-[FlutterPluginRegistry publish:]`.
|
||||||
|
*
|
||||||
|
* @param registrar The registrar that was used to publish the plugin.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
- (void)detachFromEngineForRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar;
|
||||||
|
@end
|
||||||
|
|
||||||
|
#pragma mark -
|
||||||
|
/**
|
||||||
|
* How the UIGestureRecognizers of a platform view are blocked.
|
||||||
|
*
|
||||||
|
* UIGestureRecognizers of platform views can be blocked based on decisions made by the
|
||||||
|
* Flutter Framework (e.g. When an interact-able widget is covering the platform view).
|
||||||
|
*/
|
||||||
|
typedef enum {
|
||||||
|
// NOLINTBEGIN(readability-identifier-naming)
|
||||||
|
/**
|
||||||
|
* Flutter blocks all the UIGestureRecognizers on the platform view as soon as it
|
||||||
|
* decides they should be blocked.
|
||||||
|
*
|
||||||
|
* With this policy, only the `touchesBegan` method for all the UIGestureRecognizers is guaranteed
|
||||||
|
* to be called.
|
||||||
|
*/
|
||||||
|
FlutterPlatformViewGestureRecognizersBlockingPolicyEager,
|
||||||
|
/**
|
||||||
|
* Flutter blocks the platform view's UIGestureRecognizers from recognizing only after
|
||||||
|
* touchesEnded was invoked.
|
||||||
|
*
|
||||||
|
* This results in the platform view's UIGestureRecognizers seeing the entire touch sequence,
|
||||||
|
* but never recognizing the gesture (and never invoking actions).
|
||||||
|
*/
|
||||||
|
FlutterPlatformViewGestureRecognizersBlockingPolicyWaitUntilTouchesEnded,
|
||||||
|
// NOLINTEND(readability-identifier-naming)
|
||||||
|
} FlutterPlatformViewGestureRecognizersBlockingPolicy;
|
||||||
|
|
||||||
|
#pragma mark -
|
||||||
|
/**
|
||||||
|
* The base interface for `FlutterPluginRegistrar` and `FlutterApplicationRegistrar`.
|
||||||
|
*
|
||||||
|
* Provides registration context for the application or plugins.
|
||||||
|
*/
|
||||||
|
@protocol FlutterBaseRegistrar <NSObject>
|
||||||
|
/**
|
||||||
|
* Returns a `FlutterBinaryMessenger` for creating Dart/iOS communication
|
||||||
|
* channels to be used by the application or a plugin.
|
||||||
|
*
|
||||||
|
* @return The messenger.
|
||||||
|
*/
|
||||||
|
- (NSObject<FlutterBinaryMessenger>*)messenger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a `FlutterTextureRegistry` for registering textures
|
||||||
|
* provided by the application or a plugin.
|
||||||
|
*
|
||||||
|
* @return The texture registry.
|
||||||
|
*/
|
||||||
|
- (NSObject<FlutterTextureRegistry>*)textures;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers a `FlutterPlatformViewFactory` for creation of platform views.
|
||||||
|
*
|
||||||
|
* Applications or plugins can expose `UIView` for embedding in Flutter apps by registering a view
|
||||||
|
* factory.
|
||||||
|
*
|
||||||
|
* @param factory The view factory that will be registered.
|
||||||
|
* @param factoryId A unique identifier for the factory, the Dart code of the Flutter app can use
|
||||||
|
* this identifier to request creation of a `UIView` by the registered factory.
|
||||||
|
*/
|
||||||
|
- (void)registerViewFactory:(NSObject<FlutterPlatformViewFactory>*)factory
|
||||||
|
withId:(NSString*)factoryId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers a `FlutterPlatformViewFactory` for creation of platform views.
|
||||||
|
*
|
||||||
|
* Applications or plugins can expose a `UIView` for embedding in Flutter apps by registering a view
|
||||||
|
* factory.
|
||||||
|
*
|
||||||
|
* @param factory The view factory that will be registered.
|
||||||
|
* @param factoryId A unique identifier for the factory, the Dart code of the Flutter app can use
|
||||||
|
* this identifier to request creation of a `UIView` by the registered factory.
|
||||||
|
* @param gestureRecognizersBlockingPolicy How UIGestureRecognizers on the platform views are
|
||||||
|
* blocked.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
- (void)registerViewFactory:(NSObject<FlutterPlatformViewFactory>*)factory
|
||||||
|
withId:(NSString*)factoryId
|
||||||
|
gestureRecognizersBlockingPolicy:
|
||||||
|
(FlutterPlatformViewGestureRecognizersBlockingPolicy)gestureRecognizersBlockingPolicy;
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A registrar for Flutter applications.
|
||||||
|
*
|
||||||
|
* This registrar provides access to application-level services, such as the binary messenger and
|
||||||
|
* texture registry.
|
||||||
|
*
|
||||||
|
* See also `FlutterBaseRegistrar`.
|
||||||
|
*/
|
||||||
|
@protocol FlutterApplicationRegistrar <FlutterBaseRegistrar>
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registration context for a single `FlutterPlugin`, providing a one stop shop
|
||||||
|
* for the plugin to access contextual information and register callbacks for
|
||||||
|
* various application events.
|
||||||
|
*
|
||||||
|
* Registrars are obtained from a `FlutterPluginRegistry` which keeps track of
|
||||||
|
* the identity of registered plugins and provides basic support for cross-plugin
|
||||||
|
* coordination.
|
||||||
|
*/
|
||||||
|
@protocol FlutterPluginRegistrar <FlutterBaseRegistrar>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `UIViewController` whose view is displaying Flutter content.
|
||||||
|
*
|
||||||
|
* The plugin typically should not store a strong reference to this view
|
||||||
|
* controller.
|
||||||
|
*
|
||||||
|
* This property is provided for backwards compatibility for apps that assume
|
||||||
|
* a single view, and will eventually be replaced by the multi-view API variant.
|
||||||
|
*
|
||||||
|
* This property may be |nil|, for instance in a headless environment, or when
|
||||||
|
* the underlying Flutter engine is deallocated.
|
||||||
|
*/
|
||||||
|
@property(nullable, readonly) UIViewController* viewController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Publishes a value for external use of the plugin.
|
||||||
|
*
|
||||||
|
* Plugins may publish a single value, such as an instance of the
|
||||||
|
* plugin's main class, for situations where external control or
|
||||||
|
* interaction is needed.
|
||||||
|
*
|
||||||
|
* The published value will be available from the `FlutterPluginRegistry`.
|
||||||
|
* Repeated calls overwrite any previous publication.
|
||||||
|
*
|
||||||
|
* @param value The value to be published.
|
||||||
|
*/
|
||||||
|
- (void)publish:(NSObject*)value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers the plugin as a receiver of incoming method calls from the Dart side
|
||||||
|
* on the specified `FlutterMethodChannel`.
|
||||||
|
*
|
||||||
|
* @param delegate The receiving object, such as the plugin's main class.
|
||||||
|
* @param channel The channel
|
||||||
|
*/
|
||||||
|
- (void)addMethodCallDelegate:(NSObject<FlutterPlugin>*)delegate
|
||||||
|
channel:(FlutterMethodChannel*)channel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers the plugin as a receiver of `UIApplicationDelegate` calls.
|
||||||
|
*
|
||||||
|
* @param delegate The receiving object, such as the plugin's main class.
|
||||||
|
*/
|
||||||
|
- (void)addApplicationDelegate:(NSObject<FlutterPlugin>*)delegate
|
||||||
|
NS_EXTENSION_UNAVAILABLE_IOS("Disallowed in plugins used in app extensions");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers the plugin as a receiver of `UISceneDelegate` and `UIWindowSceneDelegate` calls.
|
||||||
|
*
|
||||||
|
* @param delegate The receiving object, such as the plugin's main class.
|
||||||
|
*/
|
||||||
|
- (void)addSceneDelegate:(NSObject<FlutterSceneLifeCycleDelegate>*)delegate
|
||||||
|
API_AVAILABLE(ios(13.0));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the file name for the given asset.
|
||||||
|
* The returned file name can be used to access the asset in the application's main bundle.
|
||||||
|
*
|
||||||
|
* @param asset The name of the asset. The name can be hierarchical.
|
||||||
|
* @return the file name to be used for lookup in the main bundle.
|
||||||
|
*/
|
||||||
|
- (NSString*)lookupKeyForAsset:(NSString*)asset;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the file name for the given asset which originates from the specified package.
|
||||||
|
* The returned file name can be used to access the asset in the application's main bundle.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param asset The name of the asset. The name can be hierarchical.
|
||||||
|
* @param package The name of the package from which the asset originates.
|
||||||
|
* @return the file name to be used for lookup in the main bundle.
|
||||||
|
*/
|
||||||
|
- (NSString*)lookupKeyForAsset:(NSString*)asset fromPackage:(NSString*)package;
|
||||||
|
@end
|
||||||
|
|
||||||
|
#pragma mark -
|
||||||
|
/**
|
||||||
|
* A registry of Flutter iOS plugins.
|
||||||
|
*
|
||||||
|
* Plugins are identified by unique string keys, typically the name of the
|
||||||
|
* plugin's main class. The registry tracks plugins by this key, mapping it to
|
||||||
|
* a value published by the plugin during registration, if any. This provides a
|
||||||
|
* very basic means of cross-plugin coordination with loose coupling between
|
||||||
|
* unrelated plugins.
|
||||||
|
*
|
||||||
|
* Plugins typically need contextual information and the ability to register
|
||||||
|
* callbacks for various application events. To keep the API of the registry
|
||||||
|
* focused, these facilities are not provided directly by the registry, but by
|
||||||
|
* a `FlutterPluginRegistrar`, created by the registry in exchange for the unique
|
||||||
|
* key of the plugin.
|
||||||
|
*
|
||||||
|
* There is no implied connection between the registry and the registrar.
|
||||||
|
* Specifically, callbacks registered by the plugin via the registrar may be
|
||||||
|
* relayed directly to the underlying iOS application objects.
|
||||||
|
*/
|
||||||
|
@protocol FlutterPluginRegistry <NSObject>
|
||||||
|
/**
|
||||||
|
* Returns a registrar for registering a plugin.
|
||||||
|
*
|
||||||
|
* @param pluginKey The unique key identifying the plugin.
|
||||||
|
*/
|
||||||
|
- (nullable NSObject<FlutterPluginRegistrar>*)registrarForPlugin:(NSString*)pluginKey;
|
||||||
|
/**
|
||||||
|
* Returns whether the specified plugin has been registered.
|
||||||
|
*
|
||||||
|
* @param pluginKey The unique key identifying the plugin.
|
||||||
|
* @return `YES` if `registrarForPlugin` has been called with `pluginKey`.
|
||||||
|
*/
|
||||||
|
- (BOOL)hasPlugin:(NSString*)pluginKey;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a value published by the specified plugin.
|
||||||
|
*
|
||||||
|
* @param pluginKey The unique key identifying the plugin.
|
||||||
|
* @return An object published by the plugin, if any. Will be `NSNull` if
|
||||||
|
* nothing has been published. Will be `nil` if the plugin has not been
|
||||||
|
* registered.
|
||||||
|
*/
|
||||||
|
- (nullable NSObject*)valuePublishedByPlugin:(NSString*)pluginKey;
|
||||||
|
@end
|
||||||
|
|
||||||
|
#pragma mark -
|
||||||
|
/**
|
||||||
|
* The target of registration of plugins.
|
||||||
|
*
|
||||||
|
* This often is hooked up to the GeneratedPluginRegistrant which is
|
||||||
|
* automatically generated by Flutter for the dependencies listed in the
|
||||||
|
* project.
|
||||||
|
*/
|
||||||
|
@protocol FlutterPluginRegistrant <NSObject>
|
||||||
|
@required
|
||||||
|
/**
|
||||||
|
* Register all the plugins for the registrant.
|
||||||
|
*
|
||||||
|
* This will be called after a FlutterEngine has been instantiated, the registry
|
||||||
|
* will connect any plugins to that engine.
|
||||||
|
*
|
||||||
|
* @param registry The registry where plugins will be registered.
|
||||||
|
*/
|
||||||
|
- (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry;
|
||||||
|
@end
|
||||||
|
|
||||||
|
#pragma mark -
|
||||||
|
/**
|
||||||
|
* Implement this in the `UIAppDelegate` of your app to enable Flutter plugins to register
|
||||||
|
* themselves to the application life cycle events.
|
||||||
|
*
|
||||||
|
* For plugins to receive events from `UNUserNotificationCenter`, register this as the
|
||||||
|
* `UNUserNotificationCenterDelegate`.
|
||||||
|
*/
|
||||||
|
@protocol FlutterAppLifeCycleProvider <UNUserNotificationCenterDelegate>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when registering a new `FlutterApplicaitonLifeCycleDelegate`.
|
||||||
|
*
|
||||||
|
* See also: `-[FlutterAppDelegate addApplicationLifeCycleDelegate:]`
|
||||||
|
*/
|
||||||
|
- (void)addApplicationLifeCycleDelegate:(NSObject<FlutterApplicationLifeCycleDelegate>*)delegate;
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERPLUGIN_H_
|
||||||
@@ -0,0 +1,148 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERPLUGINAPPLIFECYCLEDELEGATE_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERPLUGINAPPLIFECYCLEDELEGATE_H_
|
||||||
|
|
||||||
|
#import "FlutterPlugin.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Propagates `UIAppDelegate` callbacks to registered plugins.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterPluginAppLifeCycleDelegate : NSObject <UNUserNotificationCenterDelegate>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers `delegate` to receive life cycle callbacks via this FlutterPluginAppLifeCycleDelegate
|
||||||
|
* as long as it is alive.
|
||||||
|
*
|
||||||
|
* `delegate` will only be referenced weakly.
|
||||||
|
*/
|
||||||
|
- (void)addDelegate:(NSObject<FlutterApplicationLifeCycleDelegate>*)delegate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*
|
||||||
|
* @return `NO` if any plugin vetos application launch.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
didFinishLaunchingWithOptions:(NSDictionary*)launchOptions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*
|
||||||
|
* @return `NO` if any plugin vetos application launch.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
willFinishLaunchingWithOptions:(NSDictionary*)launchOptions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called if this plugin has been registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)application:(UIApplication*)application
|
||||||
|
didRegisterUserNotificationSettings:(UIUserNotificationSettings*)notificationSettings
|
||||||
|
API_DEPRECATED(
|
||||||
|
"See -[UIApplicationDelegate application:didRegisterUserNotificationSettings:] deprecation",
|
||||||
|
ios(8.0, 10.0));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)application:(UIApplication*)application
|
||||||
|
didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)application:(UIApplication*)application
|
||||||
|
didFailToRegisterForRemoteNotificationsWithError:(NSError*)error;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)application:(UIApplication*)application
|
||||||
|
didReceiveRemoteNotification:(NSDictionary*)userInfo
|
||||||
|
fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)application:(UIApplication*)application
|
||||||
|
didReceiveLocalNotification:(UILocalNotification*)notification
|
||||||
|
API_DEPRECATED(
|
||||||
|
"See -[UIApplicationDelegate application:didReceiveLocalNotification:] deprecation",
|
||||||
|
ios(4.0, 10.0));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until
|
||||||
|
* some plugin handles the request.
|
||||||
|
*
|
||||||
|
* @return `YES` if any plugin handles the request.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
openURL:(NSURL*)url
|
||||||
|
options:(NSDictionary<UIApplicationOpenURLOptionsKey, id>*)options;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until
|
||||||
|
* some plugin handles the request.
|
||||||
|
*
|
||||||
|
* @return `YES` if any plugin handles the request.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application handleOpenURL:(NSURL*)url;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until
|
||||||
|
* some plugin handles the request.
|
||||||
|
*
|
||||||
|
* @return `YES` if any plugin handles the request.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
openURL:(NSURL*)url
|
||||||
|
sourceApplication:(NSString*)sourceApplication
|
||||||
|
annotation:(id)annotation;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIApplicationDelegate` callbacks.
|
||||||
|
*/
|
||||||
|
- (void)application:(UIApplication*)application
|
||||||
|
performActionForShortcutItem:(UIApplicationShortcutItem*)shortcutItem
|
||||||
|
completionHandler:(void (^)(BOOL succeeded))completionHandler
|
||||||
|
API_AVAILABLE(ios(9.0));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until
|
||||||
|
* some plugin handles the request.
|
||||||
|
*
|
||||||
|
* @return `YES` if any plugin handles the request.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
handleEventsForBackgroundURLSession:(nonnull NSString*)identifier
|
||||||
|
completionHandler:(nonnull void (^)(void))completionHandler;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until
|
||||||
|
* some plugin handles the request.
|
||||||
|
*
|
||||||
|
* @returns `YES` if any plugin handles the request.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIApplicationDelegate` callbacks in order of registration until
|
||||||
|
* some plugin handles the request.
|
||||||
|
*
|
||||||
|
* @return `YES` if any plugin handles the request.
|
||||||
|
*/
|
||||||
|
- (BOOL)application:(UIApplication*)application
|
||||||
|
continueUserActivity:(NSUserActivity*)userActivity
|
||||||
|
restorationHandler:(void (^)(NSArray*))restorationHandler;
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERPLUGINAPPLIFECYCLEDELEGATE_H_
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERSCENEDELEGATE_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERSCENEDELEGATE_H_
|
||||||
|
|
||||||
|
#import <UIKit/UIKit.h>
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
#import "FlutterSceneLifeCycle.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The UISceneDelegate used by Flutter by default.
|
||||||
|
*
|
||||||
|
* This class is typically specified as the UISceneDelegate in the Info.plist.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterSceneDelegate
|
||||||
|
: NSObject <UIWindowSceneDelegate, FlutterSceneLifeCycleEngineRegistration>
|
||||||
|
@property(nonatomic, strong, nullable) UIWindow* window;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERSCENEDELEGATE_H_
|
||||||
@@ -0,0 +1,233 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERSCENELIFECYCLE_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERSCENELIFECYCLE_H_
|
||||||
|
|
||||||
|
#import <UIKit/UIKit.h>
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
@class FlutterEngine;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A protocol for delegates that handle `UISceneDelegate` and `UIWindowSceneDelegate` life-cycle
|
||||||
|
* events.
|
||||||
|
*
|
||||||
|
* This protocol provides a way for Flutter plugins to observe and react to scene-based life-cycle
|
||||||
|
* events. The methods in this protocol correspond to methods in `UISceneDelegate` and
|
||||||
|
* `UIWindowSceneDelegate`.
|
||||||
|
*
|
||||||
|
* See also:
|
||||||
|
*
|
||||||
|
* * `UISceneDelegate`, core methods you use to respond to life-cycle events occurring within a
|
||||||
|
* scene: https://developer.apple.com/documentation/uikit/uiscenedelegate
|
||||||
|
* * `UIWindowSceneDelegate`, additional methods that you use to manage app-specific tasks
|
||||||
|
* occurring in a scene: https://developer.apple.com/documentation/uikit/uiwindowscenedelegate
|
||||||
|
*/
|
||||||
|
API_AVAILABLE(ios(13.0))
|
||||||
|
@protocol FlutterSceneLifeCycleDelegate <NSObject>
|
||||||
|
|
||||||
|
@optional
|
||||||
|
|
||||||
|
#pragma mark - Connecting and disconnecting the scene
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Informs the delegate that a new scene is about to be connected and configured.
|
||||||
|
*
|
||||||
|
* This corresponds to `-[UISceneDelegate scene:willConnectToSession:options:]`. `connectionOptions`
|
||||||
|
* may be nil if another plugin has already handled the connection.
|
||||||
|
*
|
||||||
|
* @return `YES` if this handled the connection.
|
||||||
|
*/
|
||||||
|
- (BOOL)scene:(UIScene*)scene
|
||||||
|
willConnectToSession:(UISceneSession*)session
|
||||||
|
options:(nullable UISceneConnectionOptions*)connectionOptions;
|
||||||
|
|
||||||
|
- (void)sceneDidDisconnect:(UIScene*)scene;
|
||||||
|
|
||||||
|
#pragma mark - Transitioning to the foreground
|
||||||
|
|
||||||
|
- (void)sceneWillEnterForeground:(UIScene*)scene;
|
||||||
|
|
||||||
|
- (void)sceneDidBecomeActive:(UIScene*)scene;
|
||||||
|
|
||||||
|
#pragma mark - Transitioning to the background
|
||||||
|
|
||||||
|
- (void)sceneWillResignActive:(UIScene*)scene;
|
||||||
|
|
||||||
|
- (void)sceneDidEnterBackground:(UIScene*)scene;
|
||||||
|
|
||||||
|
#pragma mark - Opening URLs
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asks the delegate to open one or more URLs.
|
||||||
|
*
|
||||||
|
* This corresponds to `-[UISceneDelegate scene:openURLContexts:]`.
|
||||||
|
*
|
||||||
|
* @return `YES` if this handled one or more of the URLs.
|
||||||
|
*/
|
||||||
|
- (BOOL)scene:(UIScene*)scene openURLContexts:(NSSet<UIOpenURLContext*>*)URLContexts;
|
||||||
|
|
||||||
|
#pragma mark - Continuing user activities
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tells the delegate that the scene is continuing a user activity.
|
||||||
|
*
|
||||||
|
* This corresponds to `-[UISceneDelegate scene:continueUserActivity:]`.
|
||||||
|
*
|
||||||
|
* @return `YES` if this handled the activity.
|
||||||
|
*/
|
||||||
|
- (BOOL)scene:(UIScene*)scene continueUserActivity:(NSUserActivity*)userActivity;
|
||||||
|
|
||||||
|
#pragma mark - Performing tasks
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tells the delegate that the user has selected a home screen quick action.
|
||||||
|
*
|
||||||
|
* This corresponds to `-[UIWindowSceneDelegate
|
||||||
|
* windowScene:performActionForShortcutItem:completionHandler:]`.
|
||||||
|
*
|
||||||
|
* @return `YES` if this handled the shortcut.
|
||||||
|
*/
|
||||||
|
- (BOOL)windowScene:(UIWindowScene*)windowScene
|
||||||
|
performActionForShortcutItem:(UIApplicationShortcutItem*)shortcutItem
|
||||||
|
completionHandler:(void (^)(BOOL succeeded))completionHandler;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A protocol for manually registering a `FlutterEngine` to receive scene life cycle events.
|
||||||
|
*/
|
||||||
|
@protocol FlutterSceneLifeCycleEngineRegistration
|
||||||
|
/**
|
||||||
|
* Registers a `FlutterEngine` to receive scene life cycle events.
|
||||||
|
*
|
||||||
|
* This method is **only** necessary when the following conditions are true:
|
||||||
|
* 1. Multiple Scenes (UIApplicationSupportsMultipleScenes) is enabled.
|
||||||
|
* 2. The `UIWindowSceneDelegate` `window.rootViewController` is not a `FlutterViewController`
|
||||||
|
* initialized with the target `FlutterEngine`.
|
||||||
|
*
|
||||||
|
* When multiple scenes is enabled (UIApplicationSupportsMultipleScenes), Flutter cannot
|
||||||
|
* automatically associate a `FlutterEngine` with a scene during the scene connection phase. In
|
||||||
|
* order for plugins to receive launch connection information, the `FlutterEngine` must be manually
|
||||||
|
* registered with either the `FlutterSceneDelegate` or `FlutterPluginSceneLifeCycleDelegate` during
|
||||||
|
* `scene:willConnectToSession:options:`.
|
||||||
|
*
|
||||||
|
* In all other cases, or once the `FlutterViewController.view` associated with the `FlutterEngine`
|
||||||
|
* is added to the view hierarchy, Flutter will automatically handle registration for scene events.
|
||||||
|
*
|
||||||
|
* Manually registered engines must also be manually deregistered and re-registered if they
|
||||||
|
* switch scenes. Use `unregisterSceneLifeCycleWithFlutterEngine:`.
|
||||||
|
*
|
||||||
|
* @param engine The `FlutterEngine` to register for scene life cycle events.
|
||||||
|
* @return `NO` if already manually registered.
|
||||||
|
*/
|
||||||
|
- (BOOL)registerSceneLifeCycleWithFlutterEngine:(FlutterEngine*)engine;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Use this method to unregister a `FlutterEngine` from the scene's life cycle events.
|
||||||
|
*
|
||||||
|
* @param engine The `FlutterEngine` to unregister for scene life cycle events.
|
||||||
|
* @return `NO` if the engine was not found among the manually registered engines and could not be
|
||||||
|
* unregistered.
|
||||||
|
*/
|
||||||
|
- (BOOL)unregisterSceneLifeCycleWithFlutterEngine:(FlutterEngine*)engine;
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Forwards `UISceneDelegate` and `UIWindowSceneDelegate` callbacks to plugins that register for
|
||||||
|
* them.
|
||||||
|
*
|
||||||
|
* This class is responsible for receiving `UISceneDelegate` and `UIWindowSceneDelegate` callbacks
|
||||||
|
* and forwarding them to any plugins.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
API_AVAILABLE(ios(13.0))
|
||||||
|
@interface FlutterPluginSceneLifeCycleDelegate : NSObject <FlutterSceneLifeCycleEngineRegistration>
|
||||||
|
|
||||||
|
#pragma mark - Connecting and disconnecting the scene
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIWindowScene` callbacks in order of registration until
|
||||||
|
* a plugin handles the request.
|
||||||
|
*/
|
||||||
|
- (void)scene:(UIScene*)scene
|
||||||
|
willConnectToSession:(UISceneSession*)session
|
||||||
|
options:(UISceneConnectionOptions*)connectionOptions;
|
||||||
|
|
||||||
|
- (void)sceneDidDisconnect:(UIScene*)scene;
|
||||||
|
|
||||||
|
#pragma mark - Transitioning to the foreground
|
||||||
|
|
||||||
|
- (void)sceneWillEnterForeground:(UIScene*)scene;
|
||||||
|
|
||||||
|
- (void)sceneDidBecomeActive:(UIScene*)scene;
|
||||||
|
|
||||||
|
#pragma mark - Transitioning to the background
|
||||||
|
|
||||||
|
- (void)sceneWillResignActive:(UIScene*)scene;
|
||||||
|
|
||||||
|
- (void)sceneDidEnterBackground:(UIScene*)scene;
|
||||||
|
|
||||||
|
#pragma mark - Opening URLs
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIWindowScene` callbacks in order of registration until
|
||||||
|
* a plugin handles the request.
|
||||||
|
*/
|
||||||
|
- (void)scene:(UIScene*)scene openURLContexts:(NSSet<UIOpenURLContext*>*)URLContexts;
|
||||||
|
|
||||||
|
#pragma mark - Continuing user activities
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIWindowScene` callbacks in order of registration until
|
||||||
|
* a plugin handles the request.
|
||||||
|
*/
|
||||||
|
- (void)scene:(UIScene*)scene continueUserActivity:(NSUserActivity*)userActivity;
|
||||||
|
|
||||||
|
#pragma mark - Performing tasks
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calls all plugins registered for `UIWindowScene` callbacks in order of registration until
|
||||||
|
* a plugin handles the request.
|
||||||
|
*/
|
||||||
|
- (void)windowScene:(UIWindowScene*)windowScene
|
||||||
|
performActionForShortcutItem:(UIApplicationShortcutItem*)shortcutItem
|
||||||
|
completionHandler:(void (^)(BOOL succeeded))completionHandler;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A protocol for `UIWindowSceneDelegate` objects that vend a `FlutterPluginSceneLifeCycleDelegate`.
|
||||||
|
*
|
||||||
|
* By conforming to this protocol, a `UIWindowSceneDelegate` can vend a
|
||||||
|
* `FlutterPluginSceneLifeCycleDelegate` that can be used to forward scene life-cycle events to
|
||||||
|
* Flutter plugins.
|
||||||
|
*
|
||||||
|
* This is typically implemented by the app's `SceneDelegate`, as a `FlutterSceneLifeCycleProvider`
|
||||||
|
* is associated with one and only one `UIScene`.
|
||||||
|
*/
|
||||||
|
API_AVAILABLE(ios(13.0))
|
||||||
|
@protocol FlutterSceneLifeCycleProvider
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterPluginSceneLifeCycleDelegate` instance for forwarding `UIScene` events
|
||||||
|
* to plugins associated with this `UIScene`.
|
||||||
|
*
|
||||||
|
* The implementer of this protocol is responsible for creating the
|
||||||
|
* `FlutterPluginSceneLifeCycleDelegate` object, as well as forwarding `UIScene` events
|
||||||
|
* to plugins by calling the corresponding methods defined on
|
||||||
|
* `FlutterPluginSceneLifeCycleDelegate`.
|
||||||
|
*
|
||||||
|
* The `FlutterPluginSceneLifeCycleDelegate` implementation is stateful. For this reason,
|
||||||
|
* this property getter should typically always return the same object.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) FlutterPluginSceneLifeCycleDelegate* sceneLifeCycleDelegate;
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERSCENELIFECYCLE_H_
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERTEXTURE_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERTEXTURE_H_
|
||||||
|
|
||||||
|
#import <CoreMedia/CoreMedia.h>
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
|
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
/**
|
||||||
|
* Represents a texture that can be shared with Flutter.
|
||||||
|
*
|
||||||
|
* See also: https://github.com/flutter/plugins/tree/master/packages/camera
|
||||||
|
*/
|
||||||
|
@protocol FlutterTexture <NSObject>
|
||||||
|
/**
|
||||||
|
* Copy the contents of the texture into a `CVPixelBuffer`.
|
||||||
|
*
|
||||||
|
* The type of the pixel buffer is one of the following:
|
||||||
|
* - `kCVPixelFormatType_32BGRA`
|
||||||
|
* - `kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange`
|
||||||
|
* - `kCVPixelFormatType_420YpCbCr8BiPlanarFullRange`
|
||||||
|
*/
|
||||||
|
- (CVPixelBufferRef _Nullable)copyPixelBuffer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when the texture is unregistered.
|
||||||
|
*
|
||||||
|
* Called on the raster thread.
|
||||||
|
*/
|
||||||
|
@optional
|
||||||
|
- (void)onTextureUnregistered:(NSObject<FlutterTexture>*)texture;
|
||||||
|
@end
|
||||||
|
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
/**
|
||||||
|
* A collection of registered `FlutterTexture`'s.
|
||||||
|
*/
|
||||||
|
@protocol FlutterTextureRegistry <NSObject>
|
||||||
|
/**
|
||||||
|
* Registers a `FlutterTexture` for usage in Flutter and returns an id that can be used to reference
|
||||||
|
* that texture when calling into Flutter with channels. Textures must be registered on the
|
||||||
|
* platform thread. On success returns the pointer to the registered texture, else returns 0.
|
||||||
|
*/
|
||||||
|
- (int64_t)registerTexture:(NSObject<FlutterTexture>*)texture;
|
||||||
|
/**
|
||||||
|
* Notifies Flutter that the content of the previously registered texture has been updated.
|
||||||
|
*
|
||||||
|
* This will trigger a call to `-[FlutterTexture copyPixelBuffer]` on the raster thread.
|
||||||
|
*/
|
||||||
|
- (void)textureFrameAvailable:(int64_t)textureId;
|
||||||
|
/**
|
||||||
|
* Unregisters a `FlutterTexture` that has previously regeistered with `registerTexture:`. Textures
|
||||||
|
* must be unregistered on the platform thread.
|
||||||
|
*
|
||||||
|
* @param textureId The result that was previously returned from `registerTexture:`.
|
||||||
|
*/
|
||||||
|
- (void)unregisterTexture:(int64_t)textureId;
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_FRAMEWORK_HEADERS_FLUTTERTEXTURE_H_
|
||||||
@@ -0,0 +1,274 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERVIEWCONTROLLER_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERVIEWCONTROLLER_H_
|
||||||
|
|
||||||
|
#import <UIKit/UIKit.h>
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
|
||||||
|
#import "FlutterBinaryMessenger.h"
|
||||||
|
#import "FlutterDartProject.h"
|
||||||
|
#import "FlutterEngine.h"
|
||||||
|
#import "FlutterHourFormat.h"
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
#import "FlutterPlugin.h"
|
||||||
|
#import "FlutterTexture.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
@class FlutterEngine;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name used for semantic update notifications via `NSNotificationCenter`.
|
||||||
|
*
|
||||||
|
* The object passed as the sender is the `FlutterViewController` associated
|
||||||
|
* with the update.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
// NOLINTNEXTLINE(readability-identifier-naming)
|
||||||
|
extern NSNotificationName const FlutterSemanticsUpdateNotification;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A `UIViewController` implementation for Flutter views.
|
||||||
|
*
|
||||||
|
* Dart execution, channel communication, texture registration, and plugin registration are all
|
||||||
|
* handled by `FlutterEngine`. Calls on this class to those members all proxy through to the
|
||||||
|
* `FlutterEngine` attached FlutterViewController.
|
||||||
|
*
|
||||||
|
* A FlutterViewController can be initialized either with an already-running `FlutterEngine` via the
|
||||||
|
* `initWithEngine:` initializer, or it can be initialized with a `FlutterDartProject` that will be
|
||||||
|
* used to implicitly spin up a new `FlutterEngine`. Creating a `FlutterEngine` before showing a
|
||||||
|
* FlutterViewController can be used to pre-initialize the Dart VM and to prepare the isolate in
|
||||||
|
* order to reduce the latency to the first rendered frame. See
|
||||||
|
* https://docs.flutter.dev/development/add-to-app/performance for more details on loading
|
||||||
|
* latency.
|
||||||
|
*
|
||||||
|
* Holding a `FlutterEngine` independently of FlutterViewControllers can also be used to not to lose
|
||||||
|
* Dart-related state and asynchronous tasks when navigating back and forth between a
|
||||||
|
* FlutterViewController and other `UIViewController`s.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
#ifdef __IPHONE_13_4
|
||||||
|
@interface FlutterViewController
|
||||||
|
: UIViewController <FlutterTextureRegistry, FlutterPluginRegistry, UIGestureRecognizerDelegate>
|
||||||
|
#else
|
||||||
|
@interface FlutterViewController : UIViewController <FlutterTextureRegistry, FlutterPluginRegistry>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes this FlutterViewController with the specified `FlutterEngine`.
|
||||||
|
*
|
||||||
|
* The initialized viewcontroller will attach itself to the engine as part of this process.
|
||||||
|
*
|
||||||
|
* @param engine The `FlutterEngine` instance to attach to. Cannot be nil.
|
||||||
|
* @param nibName The NIB name to initialize this UIViewController with.
|
||||||
|
* @param nibBundle The NIB bundle.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithEngine:(FlutterEngine*)engine
|
||||||
|
nibName:(nullable NSString*)nibName
|
||||||
|
bundle:(nullable NSBundle*)nibBundle NS_DESIGNATED_INITIALIZER;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes a new FlutterViewController and `FlutterEngine` with the specified
|
||||||
|
* `FlutterDartProject`.
|
||||||
|
*
|
||||||
|
* This will implicitly create a new `FlutterEngine` which is retrievable via the `engine` property
|
||||||
|
* after initialization.
|
||||||
|
*
|
||||||
|
* @param project The `FlutterDartProject` to initialize the `FlutterEngine` with.
|
||||||
|
* @param nibName The NIB name to initialize this UIViewController with.
|
||||||
|
* @param nibBundle The NIB bundle.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithProject:(nullable FlutterDartProject*)project
|
||||||
|
nibName:(nullable NSString*)nibName
|
||||||
|
bundle:(nullable NSBundle*)nibBundle NS_DESIGNATED_INITIALIZER;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes a new FlutterViewController and `FlutterEngine` with the specified
|
||||||
|
* `FlutterDartProject` and `initialRoute`.
|
||||||
|
*
|
||||||
|
* This will implicitly create a new `FlutterEngine` which is retrievable via the `engine` property
|
||||||
|
* after initialization.
|
||||||
|
*
|
||||||
|
* @param project The `FlutterDartProject` to initialize the `FlutterEngine` with.
|
||||||
|
* @param initialRoute The initial `Navigator` route to load.
|
||||||
|
* @param nibName The NIB name to initialize this UIViewController with.
|
||||||
|
* @param nibBundle The NIB bundle.
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithProject:(nullable FlutterDartProject*)project
|
||||||
|
initialRoute:(nullable NSString*)initialRoute
|
||||||
|
nibName:(nullable NSString*)nibName
|
||||||
|
bundle:(nullable NSBundle*)nibBundle NS_DESIGNATED_INITIALIZER;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializer that is called from loading a FlutterViewController from a XIB.
|
||||||
|
*
|
||||||
|
* See also:
|
||||||
|
* https://developer.apple.com/documentation/foundation/nscoding/1416145-initwithcoder?language=objc
|
||||||
|
*/
|
||||||
|
- (instancetype)initWithCoder:(NSCoder*)aDecoder NS_DESIGNATED_INITIALIZER;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers a callback that will be invoked when the Flutter view has been rendered.
|
||||||
|
* The callback will be fired only once.
|
||||||
|
*
|
||||||
|
* Replaces an existing callback. Use a `nil` callback to unregister the existing one.
|
||||||
|
*/
|
||||||
|
- (void)setFlutterViewDidRenderCallback:(void (^)(void))callback;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the file name for the given asset.
|
||||||
|
* The returned file name can be used to access the asset in the application's
|
||||||
|
* main bundle.
|
||||||
|
*
|
||||||
|
* @param asset The name of the asset. The name can be hierarchical.
|
||||||
|
* @return The file name to be used for lookup in the main bundle.
|
||||||
|
*/
|
||||||
|
- (NSString*)lookupKeyForAsset:(NSString*)asset;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the file name for the given asset which originates from the specified
|
||||||
|
* package.
|
||||||
|
* The returned file name can be used to access the asset in the application's
|
||||||
|
* main bundle.
|
||||||
|
*
|
||||||
|
* @param asset The name of the asset. The name can be hierarchical.
|
||||||
|
* @param package The name of the package from which the asset originates.
|
||||||
|
* @return The file name to be used for lookup in the main bundle.
|
||||||
|
*/
|
||||||
|
- (NSString*)lookupKeyForAsset:(NSString*)asset fromPackage:(NSString*)package;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Deprecated API to set initial route.
|
||||||
|
*
|
||||||
|
* Attempts to set the first route that the Flutter app shows if the Flutter
|
||||||
|
* runtime hasn't yet started. The default is "/".
|
||||||
|
*
|
||||||
|
* This method must be called immediately after `initWithProject` and has no
|
||||||
|
* effect when using `initWithEngine` if the `FlutterEngine` has already been
|
||||||
|
* run.
|
||||||
|
*
|
||||||
|
* Setting this after the Flutter started running has no effect. See `pushRoute`
|
||||||
|
* and `popRoute` to change the route after Flutter started running.
|
||||||
|
*
|
||||||
|
* This is deprecated because it needs to be called at the time of initialization
|
||||||
|
* and thus should just be in the `initWithProject` initializer. If using
|
||||||
|
* `initWithEngine`, the initial route should be set on the engine's
|
||||||
|
* initializer.
|
||||||
|
*
|
||||||
|
* @param route The name of the first route to show.
|
||||||
|
*/
|
||||||
|
- (void)setInitialRoute:(NSString*)route
|
||||||
|
FLUTTER_DEPRECATED("Use FlutterViewController initializer to specify initial route");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Instructs the Flutter Navigator (if any) to go back.
|
||||||
|
*/
|
||||||
|
- (void)popRoute;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Instructs the Flutter Navigator (if any) to push a route on to the navigation
|
||||||
|
* stack.
|
||||||
|
*
|
||||||
|
* @param route The name of the route to push to the navigation stack.
|
||||||
|
*/
|
||||||
|
- (void)pushRoute:(NSString*)route;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterPluginRegistry` used by this FlutterViewController.
|
||||||
|
*/
|
||||||
|
- (id<FlutterPluginRegistry>)pluginRegistry;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A wrapper around UIAccessibilityIsVoiceOverRunning().
|
||||||
|
*
|
||||||
|
* As a C function, UIAccessibilityIsVoiceOverRunning() cannot be mocked in testing. Mock
|
||||||
|
* this class method to testing features depends on UIAccessibilityIsVoiceOverRunning().
|
||||||
|
*/
|
||||||
|
+ (BOOL)isUIAccessibilityIsVoiceOverRunning;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* True if at least one frame has rendered and the ViewController has appeared.
|
||||||
|
*
|
||||||
|
* This property is reset to false when the ViewController disappears. It is
|
||||||
|
* guaranteed to only alternate between true and false for observers.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly, getter=isDisplayingFlutterUI) BOOL displayingFlutterUI;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Specifies the view to use as a splash screen. Flutter's rendering is asynchronous, so the first
|
||||||
|
* frame rendered by the Flutter application might not immediately appear when the Flutter view is
|
||||||
|
* initially placed in the view hierarchy. The splash screen view will be used as
|
||||||
|
* a replacement until the first frame is rendered.
|
||||||
|
*
|
||||||
|
* The view used should be appropriate for multiple sizes; an autoresizing mask to
|
||||||
|
* have a flexible width and height will be applied automatically.
|
||||||
|
*
|
||||||
|
* Set to nil to remove the splash screen view.
|
||||||
|
*/
|
||||||
|
@property(strong, nonatomic, nullable) UIView* splashScreenView;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Attempts to set the `splashScreenView` property from the `UILaunchStoryboardName` from the
|
||||||
|
* main bundle's `Info.plist` file. This method will not change the value of `splashScreenView`
|
||||||
|
* if it cannot find a default one from a storyboard or nib.
|
||||||
|
*
|
||||||
|
* @return `YES` if successful, `NO` otherwise.
|
||||||
|
*/
|
||||||
|
- (BOOL)loadDefaultSplashScreenView;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Controls whether the created view will be opaque or not.
|
||||||
|
*
|
||||||
|
* Default is `YES`. Note that setting this to `NO` may negatively impact performance
|
||||||
|
* when using hardware acceleration, and toggling this will trigger a re-layout of the
|
||||||
|
* view.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, getter=isViewOpaque) BOOL viewOpaque;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterEngine` instance for this view controller. This could be the engine this
|
||||||
|
* `FlutterViewController` is initialized with or a new `FlutterEngine` implicitly created if
|
||||||
|
* no engine was supplied during initialization.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) FlutterEngine* engine;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterBinaryMessenger` associated with this FlutterViewController (used for communicating
|
||||||
|
* with channels).
|
||||||
|
*
|
||||||
|
* This is just a convenient way to get the |FlutterEngine|'s binary messenger.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) NSObject<FlutterBinaryMessenger>* binaryMessenger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If the `FlutterViewController` creates a `FlutterEngine`, this property
|
||||||
|
* determines if that `FlutterEngine` has `allowHeadlessExecution` set.
|
||||||
|
*
|
||||||
|
* The intention is that this is used with the XIB. Otherwise, a
|
||||||
|
* `FlutterEngine` can just be sent to the init methods.
|
||||||
|
*
|
||||||
|
* See also: `-[FlutterEngine initWithName:project:allowHeadlessExecution:]`
|
||||||
|
*/
|
||||||
|
@property(nonatomic, readonly) BOOL engineAllowHeadlessExecution;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Controls whether the created view can be sized based on its content.
|
||||||
|
* When set to `YES`, the FlutterView will be the same size as the outermost widget.
|
||||||
|
* Cannot be used with unbounded height widgets, such as Scaffold.
|
||||||
|
* This property is intended to be used with Add-to-App scenarios.
|
||||||
|
*
|
||||||
|
* Once auto resizing is enabled, the FlutterView will rely on custom constraints from then on.
|
||||||
|
* Avoid disabling it after enabling, as behaviour will then be undefined.
|
||||||
|
*
|
||||||
|
* Default is `NO`.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, getter=isAutoResizable) BOOL autoResizable;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERVIEWCONTROLLER_H_
|
||||||
32
build/ios/Debug-iphonesimulator/Flutter.framework/Info.plist
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>en</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>Flutter</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>io.flutter.flutter</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>Flutter</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>FMWK</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>1.0</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>1.0</string>
|
||||||
|
<key>MinimumOSVersion</key>
|
||||||
|
<string>13.0</string>
|
||||||
|
<key>FlutterEngine</key>
|
||||||
|
<string>425cfb54d01a9472b3e81d9e76fd63a4a44cfbcb</string>
|
||||||
|
<key>BuildMode</key>
|
||||||
|
<string>debug</string>
|
||||||
|
<key>ClangVersion</key>
|
||||||
|
<string>b'Fuchsia clang version 21.0.0git (https://llvm.googlesource.com/llvm-project 8c7a2ce01a77c96028fe2c8566f65c45ad9408d3)'</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
framework module Flutter {
|
||||||
|
umbrella header "Flutter.h"
|
||||||
|
|
||||||
|
export *
|
||||||
|
module * { export * }
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>NSPrivacyTracking</key>
|
||||||
|
<false/>
|
||||||
|
<key>NSPrivacyTrackingDomains</key>
|
||||||
|
<array/>
|
||||||
|
<key>NSPrivacyCollectedDataTypes</key>
|
||||||
|
<array/>
|
||||||
|
<key>NSPrivacyAccessedAPITypes</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>NSPrivacyAccessedAPIType</key>
|
||||||
|
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
|
||||||
|
<key>NSPrivacyAccessedAPITypeReasons</key>
|
||||||
|
<array>
|
||||||
|
<string>0A2A.1</string>
|
||||||
|
<string>C617.1</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>NSPrivacyAccessedAPIType</key>
|
||||||
|
<string>NSPrivacyAccessedAPICategorySystemBootTime</string>
|
||||||
|
<key>NSPrivacyAccessedAPITypeReasons</key>
|
||||||
|
<array>
|
||||||
|
<string>35F9.1</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
@@ -0,0 +1,344 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>files</key>
|
||||||
|
<dict>
|
||||||
|
<key>Headers/Flutter.h</key>
|
||||||
|
<data>
|
||||||
|
dQsuFiftv2fxtixhcMIA/+B+uUM=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterAppDelegate.h</key>
|
||||||
|
<data>
|
||||||
|
PfJCf6hbYTWm910ECDC5roRPfWE=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterBinaryMessenger.h</key>
|
||||||
|
<data>
|
||||||
|
ksjIMu5IPw+Q3rw2YkAx0KjxkdM=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterCallbackCache.h</key>
|
||||||
|
<data>
|
||||||
|
V/wkSSsyYdMoexF6wPrC3KgkL4g=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterChannels.h</key>
|
||||||
|
<data>
|
||||||
|
vFsZXNqjflvqKqAzsIptQaTSJho=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterCodecs.h</key>
|
||||||
|
<data>
|
||||||
|
sUgX1PJzkvyinL5i7nS1ro/Kd5o=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterDartProject.h</key>
|
||||||
|
<data>
|
||||||
|
SpNs7IhIC7xP34Ej+LQCaEZkqik=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterEngine.h</key>
|
||||||
|
<data>
|
||||||
|
NTSo5sK9GKr/cqcdfQ8wcVluw/o=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterEngineGroup.h</key>
|
||||||
|
<data>
|
||||||
|
bkw+DmHReHDg1PPcvmSjuLZrheA=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterHeadlessDartRunner.h</key>
|
||||||
|
<data>
|
||||||
|
UqnnVWwQEYYX56eu7lt6dpR3LIc=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterHourFormat.h</key>
|
||||||
|
<data>
|
||||||
|
VjAwScWkWWSrDeetip3K4yhuwDU=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterMacros.h</key>
|
||||||
|
<data>
|
||||||
|
crQ9782ULebLQfIR+MbBkjB7d+k=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterPlatformViews.h</key>
|
||||||
|
<data>
|
||||||
|
hAwPmAERwlkwVd6RZpc09UHL50I=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterPlugin.h</key>
|
||||||
|
<data>
|
||||||
|
REG3r2IMfvEjtswwALvyVHTQhjo=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterPluginAppLifeCycleDelegate.h</key>
|
||||||
|
<data>
|
||||||
|
qWHw5VIWEa0NmJ1PMhD16nlfRKk=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterSceneDelegate.h</key>
|
||||||
|
<data>
|
||||||
|
1YaIV2MTzs0X0U13jT89+5nUoL8=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterSceneLifeCycle.h</key>
|
||||||
|
<data>
|
||||||
|
3umHuDOjFIRifyS6VMSJb37Y16A=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterTexture.h</key>
|
||||||
|
<data>
|
||||||
|
31prWLso2k5PfMMSbf5hGl+VE6Y=
|
||||||
|
</data>
|
||||||
|
<key>Headers/FlutterViewController.h</key>
|
||||||
|
<data>
|
||||||
|
yPq6HMz4bF9RnphWF0cWVTFET9U=
|
||||||
|
</data>
|
||||||
|
<key>Info.plist</key>
|
||||||
|
<data>
|
||||||
|
zNQ9QfRmqWOY5/p4ik7RGzFKg+g=
|
||||||
|
</data>
|
||||||
|
<key>Modules/module.modulemap</key>
|
||||||
|
<data>
|
||||||
|
wJV5dCKEGl+FAtDc8wJJh/fvKXs=
|
||||||
|
</data>
|
||||||
|
<key>PrivacyInfo.xcprivacy</key>
|
||||||
|
<data>
|
||||||
|
D+cqXttvC7E/uziGjFdqFabWd7A=
|
||||||
|
</data>
|
||||||
|
<key>icudtl.dat</key>
|
||||||
|
<data>
|
||||||
|
j5wlnTozB4ari71J5+eav6HVUu0=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>files2</key>
|
||||||
|
<dict>
|
||||||
|
<key>Headers/Flutter.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
wfWyagPYLCRR2+wTuGRbtW3z3z2AWS+YFxuiBOFdSjY=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterAppDelegate.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
ehumZ2VCA9xOXBI/7gQunPmAgn9cJpiZKDS9p8XWqkY=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterBinaryMessenger.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
EXDk4t+7qCpyQkar+q9WHqY9bcK8eyohCwGVtBJhMy8=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterCallbackCache.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
0h9+vK5K+r8moTsiGBfs6+TM9Qog089afHAy3gbcwDU=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterChannels.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
kg195C3vZLiOn8KeFQUy7DoVuA9VZDpqoBLVn64uGaI=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterCodecs.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
ZyqlHYuZbpFevVeny9Wdl0rVFgS7szIyssSiCyaaeFM=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterDartProject.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
U8q/0Ibt9q4O2HMsCdUwITtJdTx8Ljhlx+0aY83fH6s=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterEngine.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
KVKM2kmiYZrIjyoxvnKzFK9OVDkYMV368R5WIsIAdCo=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterEngineGroup.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
SqzvIxqBXEJ3U9LJ32hCEXsrH2P16gumQ+gQx6Pdlf4=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterHeadlessDartRunner.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
nmZjZpvFCXrygf4U9aPkNi8VcI7cL5AtA+CY5uUWIL0=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterHourFormat.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
Q4SLFSghL/5EFJPyLg7PNi9J/xpkVVfzro0VQiQHtrY=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterMacros.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
ebBVHSZcUnAbN4hRcYq3ttt6++z1Ybc8KVSYhVToD5k=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterPlatformViews.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
0aU9uM6QcpzmZpuFYObj9dGlGEkTKowPMERJQQdF2P4=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterPlugin.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
QcjhOhk5cb1U7bmyQh9TnFm1M2Tgv82RSSbJ6OIdMr4=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterPluginAppLifeCycleDelegate.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
+PMn+5SDj2Vd6RU8CQIt/JYl3T+8Dhp7HImqAzocoNk=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterSceneDelegate.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
G9urZeE312ldazkeP/7sut0t2hA3lfcuxHRSuLmj+gY=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterSceneLifeCycle.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
tNkLhO++POL42zg5fjEv5/DJfQrXu8qHY6JLbr8tIhc=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterTexture.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
JcpN4a9sv6xynlD3Ri611N5y+HoupUWp2hyrIXB/I8Y=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Headers/FlutterViewController.h</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
4jNuTXbCiZwqpx0lOmTdKSGDs+urojdoGpXOK6wJqaU=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>Modules/module.modulemap</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
0VjriRpZ7AZZaP/0mMAPMJPhi6LoMB4MhXzL5j24tGs=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>PrivacyInfo.xcprivacy</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
n5XX54YqS1a2btkmvW1iLSplRagn0ZhHJ4tDjVcdQhI=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>icudtl.dat</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
mYNngJqCHVlZKAicGXs/eVnwQg+B951NDa7lM3hJLtU=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>rules</key>
|
||||||
|
<dict>
|
||||||
|
<key>^.*</key>
|
||||||
|
<true/>
|
||||||
|
<key>^.*\.lproj/</key>
|
||||||
|
<dict>
|
||||||
|
<key>optional</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1000</real>
|
||||||
|
</dict>
|
||||||
|
<key>^.*\.lproj/locversion.plist$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1100</real>
|
||||||
|
</dict>
|
||||||
|
<key>^Base\.lproj/</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1010</real>
|
||||||
|
</dict>
|
||||||
|
<key>^version.plist$</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
<key>rules2</key>
|
||||||
|
<dict>
|
||||||
|
<key>.*\.dSYM($|/)</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>11</real>
|
||||||
|
</dict>
|
||||||
|
<key>^(.*/)?\.DS_Store$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>2000</real>
|
||||||
|
</dict>
|
||||||
|
<key>^.*</key>
|
||||||
|
<true/>
|
||||||
|
<key>^.*\.lproj/</key>
|
||||||
|
<dict>
|
||||||
|
<key>optional</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1000</real>
|
||||||
|
</dict>
|
||||||
|
<key>^.*\.lproj/locversion.plist$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1100</real>
|
||||||
|
</dict>
|
||||||
|
<key>^Base\.lproj/</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1010</real>
|
||||||
|
</dict>
|
||||||
|
<key>^Info\.plist$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>20</real>
|
||||||
|
</dict>
|
||||||
|
<key>^PkgInfo$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>20</real>
|
||||||
|
</dict>
|
||||||
|
<key>^embedded\.provisionprofile$</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>20</real>
|
||||||
|
</dict>
|
||||||
|
<key>^version\.plist$</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>20</real>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
BIN
build/ios/Debug-iphonesimulator/Flutter.framework/icudtl.dat
Normal file
BIN
build/ios/Debug-iphonesimulator/Runner.app/AppIcon60x60@2x.png
Normal file
|
After Width: | Height: | Size: 862 B |
|
After Width: | Height: | Size: 1.2 KiB |
BIN
build/ios/Debug-iphonesimulator/Runner.app/Assets.car
Normal file
BIN
build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib
generated
Normal file
BIN
build/ios/Debug-iphonesimulator/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib
generated
Normal file
BIN
build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/App
Executable file
@@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>en</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>App</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>io.flutter.flutter.app</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>App</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>FMWK</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>1.0</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>1.0</string>
|
||||||
|
<key>MinimumOSVersion</key>
|
||||||
|
<string>13.0</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
@@ -0,0 +1,223 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>files</key>
|
||||||
|
<dict>
|
||||||
|
<key>Info.plist</key>
|
||||||
|
<data>
|
||||||
|
nHsEkmlVCwRZHdUPhDWVtuHob3A=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/AssetManifest.bin</key>
|
||||||
|
<data>
|
||||||
|
ME0cAg6cl/bTZmwXEVgMugDccUI=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/FontManifest.json</key>
|
||||||
|
<data>
|
||||||
|
vKJkVIcw+LGHFnKJGwrQwCREv68=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/NOTICES.Z</key>
|
||||||
|
<data>
|
||||||
|
Ww3VT3Dl9OS0AKPDAn4HEANxMyE=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/NativeAssetsManifest.json</key>
|
||||||
|
<data>
|
||||||
|
re4p7E8rPLLsN+wzaPN/+AVpXTY=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/fonts/MaterialIcons-Regular.otf</key>
|
||||||
|
<data>
|
||||||
|
/CUoTuPQqqdexfyOT9lpJhV+2MQ=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/isolate_snapshot_data</key>
|
||||||
|
<data>
|
||||||
|
rYXCbquQA1dr/ebYXtM3dRNcgKs=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/kernel_blob.bin</key>
|
||||||
|
<data>
|
||||||
|
wvd/ghMvydxBnT7CROGxtZpPMBo=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf</key>
|
||||||
|
<data>
|
||||||
|
Bvk+P1ykE1PGRdktwgwDyz6AOqM=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/shaders/ink_sparkle.frag</key>
|
||||||
|
<data>
|
||||||
|
sxM4vXUdXTlz/NE5jWpDMQiyBlU=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/shaders/stretch_effect.frag</key>
|
||||||
|
<data>
|
||||||
|
E+CXIAqhfAZloEXY0OAHmD4YsUA=
|
||||||
|
</data>
|
||||||
|
<key>flutter_assets/vm_snapshot_data</key>
|
||||||
|
<data>
|
||||||
|
PLk09h0l/XVt/bVElKkgNzt9Djw=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>files2</key>
|
||||||
|
<dict>
|
||||||
|
<key>flutter_assets/AssetManifest.bin</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
AK9VrT1vIYmP534P8JLRoc2lLJQbaGDpko1FyK+MCV0=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/FontManifest.json</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
zX4DZFvESy3Ue3y2JvUcTsv1Whl6t3JBYotHrBZfviE=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/NOTICES.Z</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
E062v2dhXjjDM/PEm5gvwNMW+CAHARn2u3dUOsclh5o=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/NativeAssetsManifest.json</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
lUijHkoEgTXB2U+Rkyi/tirix7s8q5ZVfHlB2ql3dss=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/fonts/MaterialIcons-Regular.otf</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
2YZbZxoJ1oPROoYwidiCXg9ho3aWzl19RIvIAjqmJFM=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/isolate_snapshot_data</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
VjSsPASCGuyi2mVpg5dQrTTjnFKssUBYnRDn7LG+1CI=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/kernel_blob.bin</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
ZfBZPmBXd095TtgPaCssw+nNxx0RjNKpkOsTBdnnK3Q=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
Z8RP6Rg7AC553ef2l34piGYcmj5KPF/OloeH79vtgjw=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/shaders/ink_sparkle.frag</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
RoZF1LMcQMF0HavWao7KX8AlJjP2YoMdCmoodqEbrTM=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/shaders/stretch_effect.frag</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
L1Nkyap/uLTY181NUgIAgKYl2ViXbpyX1/JoAy3gIto=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>flutter_assets/vm_snapshot_data</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
voayeld2cKO/xTgKH/PG6QD4xzLD9m37V4iUvNPMgww=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>rules</key>
|
||||||
|
<dict>
|
||||||
|
<key>^.*</key>
|
||||||
|
<true/>
|
||||||
|
<key>^.*\.lproj/</key>
|
||||||
|
<dict>
|
||||||
|
<key>optional</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1000</real>
|
||||||
|
</dict>
|
||||||
|
<key>^.*\.lproj/locversion.plist$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1100</real>
|
||||||
|
</dict>
|
||||||
|
<key>^Base\.lproj/</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1010</real>
|
||||||
|
</dict>
|
||||||
|
<key>^version.plist$</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
<key>rules2</key>
|
||||||
|
<dict>
|
||||||
|
<key>.*\.dSYM($|/)</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>11</real>
|
||||||
|
</dict>
|
||||||
|
<key>^(.*/)?\.DS_Store$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>2000</real>
|
||||||
|
</dict>
|
||||||
|
<key>^.*</key>
|
||||||
|
<true/>
|
||||||
|
<key>^.*\.lproj/</key>
|
||||||
|
<dict>
|
||||||
|
<key>optional</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1000</real>
|
||||||
|
</dict>
|
||||||
|
<key>^.*\.lproj/locversion.plist$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1100</real>
|
||||||
|
</dict>
|
||||||
|
<key>^Base\.lproj/</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>1010</real>
|
||||||
|
</dict>
|
||||||
|
<key>^Info\.plist$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>20</real>
|
||||||
|
</dict>
|
||||||
|
<key>^PkgInfo$</key>
|
||||||
|
<dict>
|
||||||
|
<key>omit</key>
|
||||||
|
<true/>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>20</real>
|
||||||
|
</dict>
|
||||||
|
<key>^embedded\.provisionprofile$</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>20</real>
|
||||||
|
</dict>
|
||||||
|
<key>^version\.plist$</key>
|
||||||
|
<dict>
|
||||||
|
<key>weight</key>
|
||||||
|
<real>20</real>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}]
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"format-version":[1,0,0],"native-assets":{}}
|
||||||
BIN
build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter
Executable file
@@ -0,0 +1,26 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTER_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTER_H_
|
||||||
|
|
||||||
|
#import "FlutterAppDelegate.h"
|
||||||
|
#import "FlutterBinaryMessenger.h"
|
||||||
|
#import "FlutterCallbackCache.h"
|
||||||
|
#import "FlutterChannels.h"
|
||||||
|
#import "FlutterCodecs.h"
|
||||||
|
#import "FlutterDartProject.h"
|
||||||
|
#import "FlutterEngine.h"
|
||||||
|
#import "FlutterEngineGroup.h"
|
||||||
|
#import "FlutterHeadlessDartRunner.h"
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
#import "FlutterPlatformViews.h"
|
||||||
|
#import "FlutterPlugin.h"
|
||||||
|
#import "FlutterPluginAppLifeCycleDelegate.h"
|
||||||
|
#import "FlutterSceneDelegate.h"
|
||||||
|
#import "FlutterSceneLifeCycle.h"
|
||||||
|
#import "FlutterTexture.h"
|
||||||
|
#import "FlutterViewController.h"
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTER_H_
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERAPPDELEGATE_H_
|
||||||
|
#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERAPPDELEGATE_H_
|
||||||
|
|
||||||
|
#import <UIKit/UIKit.h>
|
||||||
|
|
||||||
|
#import "FlutterMacros.h"
|
||||||
|
#import "FlutterPlugin.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* `UIApplicationDelegate` subclass for simple apps that want default behavior.
|
||||||
|
*
|
||||||
|
* This class implements the following behaviors:
|
||||||
|
* * Status bar touches are forwarded to the key window's root view
|
||||||
|
* `FlutterViewController`, in order to trigger scroll to top.
|
||||||
|
* * Keeps the Flutter connection open in debug mode when the phone screen
|
||||||
|
* locks.
|
||||||
|
*
|
||||||
|
* App delegates for Flutter applications are *not* required to inherit from
|
||||||
|
* this class. Developers of custom app delegate classes should copy and paste
|
||||||
|
* code as necessary from FlutterAppDelegate.mm.
|
||||||
|
*/
|
||||||
|
FLUTTER_DARWIN_EXPORT
|
||||||
|
@interface FlutterAppDelegate
|
||||||
|
: UIResponder <UIApplicationDelegate, FlutterPluginRegistry, FlutterAppLifeCycleProvider>
|
||||||
|
|
||||||
|
@property(nonatomic, strong, nullable) UIWindow* window;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The `FlutterPluginRegistrant` that will be used when FlutterViewControllers
|
||||||
|
* are instantiated from nibs.
|
||||||
|
*
|
||||||
|
* The `FlutterAppDelegate` itself can be passed in without creating a retain
|
||||||
|
* cycle.
|
||||||
|
*
|
||||||
|
* This was introduced to help users migrate code from the FlutterAppDelegate
|
||||||
|
* when UISceneDelegate was adopted. Using
|
||||||
|
* FlutterViewController.pluginRegistrant should be preferred since it doesn't
|
||||||
|
* rely on the FlutterAppDelegate.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, strong, nullable) NSObject<FlutterPluginRegistrant>* pluginRegistrant;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERAPPDELEGATE_H_
|
||||||