提交 37b807e1 authored 作者: 张国庆's avatar 张国庆

Initial commit

上级
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
/pubspec.lock
**/doc/api/
.dart_tool/
.packages
build/
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.
version:
revision: "d211f42860350d914a5ad8102f9ec32764dc6d06"
channel: "stable"
project_type: plugin
# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
- platform: android
create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
- platform: ios
create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
- platform: web
create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
# User provided section
# List of Local paths (relative to this file) that should be
# ignored by the migrate tool.
#
# Files that are not part of the templates will be ignored by default.
unmanaged_files:
- 'lib/main.dart'
- 'ios/Runner.xcodeproj/project.pbxproj'
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "clx_flutter_message",
"request": "launch",
"type": "dart"
},
{
"name": "clx_flutter_message (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "clx_flutter_message (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
},
{
"name": "example",
"cwd": "example",
"request": "launch",
"type": "dart"
},
{
"name": "example (profile mode)",
"cwd": "example",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "example (release mode)",
"cwd": "example",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}
\ No newline at end of file
## 0.0.1
* TODO: Describe initial release.
TODO: Add your license here.
# clx_flutter_message
An in-app messaging plugin
## Getting Started
This project is a starting point for a Flutter
[plug-in package](https://flutter.dev/developing-packages/),
a specialized package that includes platform-specific implementation code for
Android and/or iOS.
For help getting started with Flutter development, view the
[online documentation](https://flutter.dev/docs), which offers tutorials,
samples, guidance on mobile development, and a full API reference.
include: package:flutter_lints/flutter.yaml
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
.cxx
group 'com.clx.clx_flutter_message'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.7.10'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
if (project.android.hasProperty("namespace")) {
namespace 'com.clx.clx_flutter_message'
}
compileSdkVersion 33
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
test.java.srcDirs += 'src/test/kotlin'
}
defaultConfig {
minSdkVersion 19
}
dependencies {
testImplementation 'org.jetbrains.kotlin:kotlin-test'
testImplementation 'org.mockito:mockito-core:5.0.0'
}
testOptions {
unitTests.all {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
outputs.upToDateWhen {false}
showStandardStreams = true
}
}
}
}
rootProject.name = 'clx_flutter_message'
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.clx.clx_flutter_message">
</manifest>
package com.clx.clx_flutter_message
import androidx.annotation.NonNull
import io.flutter.embedding.engine.plugins.FlutterPlugin
import io.flutter.plugin.common.MethodCall
import io.flutter.plugin.common.MethodChannel
import io.flutter.plugin.common.MethodChannel.MethodCallHandler
import io.flutter.plugin.common.MethodChannel.Result
/** ClxFlutterMessagePlugin */
class ClxFlutterMessagePlugin: FlutterPlugin, MethodCallHandler {
/// The MethodChannel that will the communication between Flutter and native Android
///
/// This local reference serves to register the plugin with the Flutter Engine and unregister it
/// when the Flutter Engine is detached from the Activity
private lateinit var channel : MethodChannel
override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
channel = MethodChannel(flutterPluginBinding.binaryMessenger, "clx_flutter_message")
channel.setMethodCallHandler(this)
}
override fun onMethodCall(call: MethodCall, result: Result) {
if (call.method == "getPlatformVersion") {
result.success("Android ${android.os.Build.VERSION.RELEASE}")
} else {
result.notImplemented()
}
}
override fun onDetachedFromEngine(binding: FlutterPlugin.FlutterPluginBinding) {
channel.setMethodCallHandler(null)
}
}
package com.clx.clx_flutter_message
import io.flutter.plugin.common.MethodCall
import io.flutter.plugin.common.MethodChannel
import kotlin.test.Test
import org.mockito.Mockito
/*
* This demonstrates a simple unit test of the Kotlin portion of this plugin's implementation.
*
* Once you have built the plugin's example app, you can run these tests from the command
* line by running `./gradlew testDebugUnitTest` in the `example/android/` directory, or
* you can run them directly from IDEs that support JUnit such as Android Studio.
*/
internal class ClxFlutterMessagePluginTest {
@Test
fun onMethodCall_getPlatformVersion_returnsExpectedValue() {
val plugin = ClxFlutterMessagePlugin()
val call = MethodCall("getPlatformVersion", null)
val mockResult: MethodChannel.Result = Mockito.mock(MethodChannel.Result::class.java)
plugin.onMethodCall(call, mockResult)
Mockito.verify(mockResult).success("Android " + android.os.Build.VERSION.RELEASE)
}
}
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
/build/
# Symbolication related
app.*.symbols
# Obfuscation related
app.*.map.json
# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release
# clx_flutter_message_example
Demonstrates how to use the clx_flutter_message plugin.
## 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:
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
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.
# 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
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
# Remember to never publicly share your keystore.
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
key.properties
**/*.keystore
**/*.jks
plugins {
id "com.android.application"
id "kotlin-android"
id "dev.flutter.flutter-gradle-plugin"
}
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
android {
namespace "com.clx.clx_flutter_message_example"
compileSdkVersion flutter.compileSdkVersion
ndkVersion flutter.ndkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.clx.clx_flutter_message_example"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion flutter.minSdkVersion
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
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.debug
}
}
}
flutter {
source '../..'
}
dependencies {}
<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>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="clx_flutter_message_example"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
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>
</manifest>
package com.clx.clx_flutter_message_example
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}
<?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>
<?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>
<?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>
<?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>
<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>
buildscript {
ext.kotlin_version = '1.7.10'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
pluginManagement {
def flutterSdkPath = {
def properties = new Properties()
file("local.properties").withInputStream { properties.load(it) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
return flutterSdkPath
}
settings.ext.flutterSdkPath = flutterSdkPath()
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
plugins {
id "dev.flutter.flutter-gradle-plugin" version "1.0.0" apply false
}
}
include ":app"
apply from: "${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle/app_plugin_loader.gradle"
// This is a basic Flutter integration test.
//
// Since integration tests run in a full Flutter application, they can interact
// with the host side of a plugin implementation, unlike Dart unit tests.
//
// For more information about Flutter integration tests, please see
// https://docs.flutter.dev/cookbook/testing/integration/introduction
import 'package:flutter_test/flutter_test.dart';
import 'package:integration_test/integration_test.dart';
import 'package:clx_flutter_message/clx_flutter_message.dart';
void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
testWidgets('getPlatformVersion test', (WidgetTester tester) async {
final ClxFlutterMessage plugin = ClxFlutterMessage();
final String? version = await plugin.getPlatformVersion();
// The version string depends on the host platform running the test, so
// just assert that some non-empty string is returned.
expect(version?.isNotEmpty, true);
});
}
**/dgph
*.mode1v3
*.mode2v3
*.moved-aside
*.pbxuser
*.perspectivev3
**/*sync/
.sconsign.dblite
.tags*
**/.vagrant/
**/DerivedData/
Icon?
**/Pods/
**/.symlinks/
profile
xcuserdata
**/.generated/
Flutter/App.framework
Flutter/Flutter.framework
Flutter/Flutter.podspec
Flutter/Generated.xcconfig
Flutter/ephemeral/
Flutter/app.flx
Flutter/app.zip
Flutter/flutter_assets/
Flutter/flutter_export_environment.sh
ServiceDefinitions.json
Runner/GeneratedPluginRegistrant.*
# Exceptions to above rules.
!default.mode1v3
!default.mode2v3
!default.pbxuser
!default.perspectivev3
<?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>11.0</string>
</dict>
</plist>
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
#include "Generated.xcconfig"
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
#include "Generated.xcconfig"
# Uncomment this line to define a global platform for your project
# platform :ios, '11.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
project 'Runner', {
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
}
def flutter_root
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
unless File.exist?(generated_xcode_build_settings_path)
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
end
File.foreach(generated_xcode_build_settings_path) do |line|
matches = line.match(/FLUTTER_ROOT\=(.*)/)
return matches[1].strip if matches
end
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
flutter_ios_podfile_setup
target 'Runner' do
use_frameworks!
use_modular_headers!
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
target 'RunnerTests' do
inherit! :search_paths
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
end
end
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 54;
objects = {
/* Begin PBXBuildFile section */
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 97C146E61CF9000F007C117D /* Project object */;
proxyType = 1;
remoteGlobalIDString = 97C146ED1CF9000F007C117D;
remoteInfo = Runner;
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
97C146EB1CF9000F007C117D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
9740EEB11CF90186004384FC /* Flutter */ = {
isa = PBXGroup;
children = (
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
9740EEB21CF90195004384FC /* Debug.xcconfig */,
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
9740EEB31CF90195004384FC /* Generated.xcconfig */,
);
name = Flutter;
sourceTree = "<group>";
};
331C8082294A63A400263BE5 /* RunnerTests */ = {
isa = PBXGroup;
children = (
331C807B294A618700263BE5 /* RunnerTests.swift */,
);
path = RunnerTests;
sourceTree = "<group>";
};
97C146E51CF9000F007C117D = {
isa = PBXGroup;
children = (
9740EEB11CF90186004384FC /* Flutter */,
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
331C8082294A63A400263BE5 /* RunnerTests */,
);
sourceTree = "<group>";
};
97C146EF1CF9000F007C117D /* Products */ = {
isa = PBXGroup;
children = (
97C146EE1CF9000F007C117D /* Runner.app */,
331C8081294A63A400263BE5 /* RunnerTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
97C146F01CF9000F007C117D /* Runner */ = {
isa = PBXGroup;
children = (
97C146FA1CF9000F007C117D /* Main.storyboard */,
97C146FD1CF9000F007C117D /* Assets.xcassets */,
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
97C147021CF9000F007C117D /* Info.plist */,
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
);
path = Runner;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
331C8080294A63A400263BE5 /* RunnerTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
buildPhases = (
331C807D294A63A400263BE5 /* Sources */,
331C807E294A63A400263BE5 /* Frameworks */,
331C807F294A63A400263BE5 /* Resources */,
);
buildRules = (
);
dependencies = (
331C8086294A63A400263BE5 /* PBXTargetDependency */,
);
name = RunnerTests;
productName = RunnerTests;
productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
97C146ED1CF9000F007C117D /* Runner */ = {
isa = PBXNativeTarget;
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
9740EEB61CF901F6004384FC /* Run Script */,
97C146EA1CF9000F007C117D /* Sources */,
97C146EB1CF9000F007C117D /* Frameworks */,
97C146EC1CF9000F007C117D /* Resources */,
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
);
buildRules = (
);
dependencies = (
);
name = Runner;
productName = Runner;
productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = YES;
LastUpgradeCheck = 1430;
ORGANIZATIONNAME = "";
TargetAttributes = {
331C8080294A63A400263BE5 = {
CreatedOnToolsVersion = 14.0;
TestTargetID = 97C146ED1CF9000F007C117D;
};
97C146ED1CF9000F007C117D = {
CreatedOnToolsVersion = 7.3.1;
LastSwiftMigration = 1100;
};
};
};
buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
compatibilityVersion = "Xcode 9.3";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 97C146E51CF9000F007C117D;
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
97C146ED1CF9000F007C117D /* Runner */,
331C8080294A63A400263BE5 /* RunnerTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
331C807F294A63A400263BE5 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
97C146EC1CF9000F007C117D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
);
name = "Thin Binary";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
};
9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Run Script";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
331C807D294A63A400263BE5 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
97C146EA1CF9000F007C117D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 97C146ED1CF9000F007C117D /* Runner */;
targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
97C146FA1CF9000F007C117D /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C146FB1CF9000F007C117D /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C147001CF9000F007C117D /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
249021D3217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Profile;
};
249021D4217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = JYL43SXW4K;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.clx.clxFlutterMessageExample;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Profile;
};
331C8088294A63A400263BE5 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = AE0B7B92F70575B8D7E0D07E /* Pods-RunnerTests.debug.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.clx.clxFlutterMessageExample.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
name = Debug;
};
331C8089294A63A400263BE5 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 89B67EB44CE7B6631473024E /* Pods-RunnerTests.release.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.clx.clxFlutterMessageExample.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
name = Release;
};
331C808A294A63A400263BE5 /* Profile */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 640959BDD8F10B91D80A66BE /* Pods-RunnerTests.profile.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.clx.clxFlutterMessageExample.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
name = Profile;
};
97C147031CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
97C147041CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
97C147061CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = JYL43SXW4K;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.clx.clxFlutterMessageExample;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
97C147071CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = JYL43SXW4K;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.clx.clxFlutterMessageExample;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
331C8088294A63A400263BE5 /* Debug */,
331C8089294A63A400263BE5 /* Release */,
331C808A294A63A400263BE5 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
97C147031CF9000F007C117D /* Debug */,
97C147041CF9000F007C117D /* Release */,
249021D3217E4FDB00AE95B9 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
97C147061CF9000F007C117D /* Debug */,
97C147071CF9000F007C117D /* Release */,
249021D4217E4FDB00AE95B9 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 97C146E61CF9000F007C117D /* Project object */;
}
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "self:">
</FileRef>
</Workspace>
<?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>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
<?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>PreviewsEnabled</key>
<false/>
</dict>
</plist>
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1430"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</MacroExpansion>
<Testables>
<TestableReference
skipped = "NO"
parallelizable = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "331C8080294A63A400263BE5"
BuildableName = "RunnerTests.xctest"
BlueprintName = "RunnerTests"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Profile"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:Runner.xcodeproj">
</FileRef>
</Workspace>
<?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>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
<?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>PreviewsEnabled</key>
<false/>
</dict>
</plist>
import UIKit
import Flutter
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}
{
"images" : [
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "Icon-App-20x20@2x.png",
"scale" : "2x"
},
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "Icon-App-20x20@3x.png",
"scale" : "3x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@1x.png",
"scale" : "1x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@3x.png",
"scale" : "3x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "Icon-App-40x40@2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "Icon-App-40x40@3x.png",
"scale" : "3x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "Icon-App-60x60@2x.png",
"scale" : "2x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "Icon-App-60x60@3x.png",
"scale" : "3x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "Icon-App-20x20@1x.png",
"scale" : "1x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "Icon-App-20x20@2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "Icon-App-29x29@1x.png",
"scale" : "1x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "Icon-App-29x29@2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "Icon-App-40x40@1x.png",
"scale" : "1x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "Icon-App-40x40@2x.png",
"scale" : "2x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "Icon-App-76x76@1x.png",
"scale" : "1x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "Icon-App-76x76@2x.png",
"scale" : "2x"
},
{
"size" : "83.5x83.5",
"idiom" : "ipad",
"filename" : "Icon-App-83.5x83.5@2x.png",
"scale" : "2x"
},
{
"size" : "1024x1024",
"idiom" : "ios-marketing",
"filename" : "Icon-App-1024x1024@1x.png",
"scale" : "1x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
{
"images" : [
{
"idiom" : "universal",
"filename" : "LaunchImage.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "LaunchImage@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "LaunchImage@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
# Launch Screen Assets
You can customize the launch screen with your own desired assets by replacing the image files in this directory.
You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="12121" systemVersion="16G29" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="12089"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="EHf-IW-A2E">
<objects>
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="Ydg-fD-yQy"/>
<viewControllerLayoutGuide type="bottom" id="xbc-2k-c8Z"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" image="LaunchImage" translatesAutoresizingMaskIntoConstraints="NO" id="YRO-k0-Ey4">
</imageView>
</subviews>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstItem="YRO-k0-Ey4" firstAttribute="centerX" secondItem="Ze5-6b-2t3" secondAttribute="centerX" id="1a2-6s-vTC"/>
<constraint firstItem="YRO-k0-Ey4" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="centerY" id="4X2-HB-R7a"/>
</constraints>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="53" y="375"/>
</scene>
</scenes>
<resources>
<image name="LaunchImage" width="168" height="185"/>
</resources>
</document>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="BYZ-38-t0r">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
</dependencies>
<scenes>
<!--Flutter View Controller-->
<scene sceneID="tne-QT-ifu">
<objects>
<viewController id="BYZ-38-t0r" customClass="FlutterViewController" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/>
<viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
</objects>
</scene>
</scenes>
</document>
<?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>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Clx Flutter Message</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>clx_flutter_message_example</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
</dict>
</plist>
#import "GeneratedPluginRegistrant.h"
import Flutter
import UIKit
import XCTest
@testable import clx_flutter_message
// This demonstrates a simple unit test of the Swift portion of this plugin's implementation.
//
// See https://developer.apple.com/documentation/xctest for more information about using XCTest.
class RunnerTests: XCTestCase {
func testGetPlatformVersion() {
let plugin = ClxFlutterMessagePlugin()
let call = FlutterMethodCall(methodName: "getPlatformVersion", arguments: [])
let resultExpectation = expectation(description: "result block must be called.")
plugin.handle(call) { result in
XCTAssertEqual(result as! String, "iOS " + UIDevice.current.systemVersion)
resultExpectation.fulfill()
}
waitForExpectations(timeout: 1)
}
}
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:clx_flutter_message/clx_flutter_message.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _platformVersion = 'Unknown';
final _clxFlutterMessagePlugin = ClxFlutterMessage();
@override
void initState() {
super.initState();
initPlatformState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
String platformVersion;
// Platform messages may fail, so we use a try/catch PlatformException.
// We also handle the message potentially returning null.
try {
platformVersion =
await _clxFlutterMessagePlugin.getPlatformVersion() ?? 'Unknown platform version';
} on PlatformException {
platformVersion = 'Failed to get platform version.';
}
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
setState(() {
_platformVersion = platformVersion;
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Text('Running on: $_platformVersion\n'),
),
),
);
}
}
# Generated by pub
# See https://dart.dev/tools/pub/glossary#lockfile
packages:
async:
dependency: transitive
description:
name: async
sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c"
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.11.0"
boolean_selector:
dependency: transitive
description:
name: boolean_selector
sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66"
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.1"
characters:
dependency: transitive
description:
name: characters
sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.3.0"
clock:
dependency: transitive
description:
name: clock
sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.1"
clx_flutter_message:
dependency: "direct main"
description:
path: ".."
relative: true
source: path
version: "0.0.1"
collection:
dependency: transitive
description:
name: collection
sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.17.2"
cupertino_icons:
dependency: "direct main"
description:
name: cupertino_icons
sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.0.8"
fake_async:
dependency: transitive
description:
name: fake_async
sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.3.1"
file:
dependency: transitive
description:
name: file
sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d"
url: "https://pub.flutter-io.cn"
source: hosted
version: "6.1.4"
flutter:
dependency: "direct main"
description: flutter
source: sdk
version: "0.0.0"
flutter_driver:
dependency: transitive
description: flutter
source: sdk
version: "0.0.0"
flutter_lints:
dependency: "direct dev"
description:
name: flutter_lints
sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.0.3"
flutter_test:
dependency: "direct dev"
description: flutter
source: sdk
version: "0.0.0"
flutter_web_plugins:
dependency: transitive
description: flutter
source: sdk
version: "0.0.0"
fuchsia_remote_debug_protocol:
dependency: transitive
description: flutter
source: sdk
version: "0.0.0"
integration_test:
dependency: "direct dev"
description: flutter
source: sdk
version: "0.0.0"
lints:
dependency: transitive
description:
name: lints
sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452"
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.1"
matcher:
dependency: transitive
description:
name: matcher
sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e"
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.12.16"
material_color_utilities:
dependency: transitive
description:
name: material_color_utilities
sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41"
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.5.0"
meta:
dependency: transitive
description:
name: meta
sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.9.1"
path:
dependency: transitive
description:
name: path
sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.8.3"
platform:
dependency: transitive
description:
name: platform
sha256: "4a451831508d7d6ca779f7ac6e212b4023dd5a7d08a27a63da33756410e32b76"
url: "https://pub.flutter-io.cn"
source: hosted
version: "3.1.0"
plugin_platform_interface:
dependency: transitive
description:
name: plugin_platform_interface
sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.8"
process:
dependency: transitive
description:
name: process
sha256: "53fd8db9cec1d37b0574e12f07520d582019cb6c44abf5479a01505099a34a09"
url: "https://pub.flutter-io.cn"
source: hosted
version: "4.2.4"
sky_engine:
dependency: transitive
description: flutter
source: sdk
version: "0.0.99"
source_span:
dependency: transitive
description:
name: source_span
sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.10.0"
stack_trace:
dependency: transitive
description:
name: stack_trace
sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.11.0"
stream_channel:
dependency: transitive
description:
name: stream_channel
sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8"
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.1"
string_scanner:
dependency: transitive
description:
name: string_scanner
sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde"
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.2.0"
sync_http:
dependency: transitive
description:
name: sync_http
sha256: "7f0cd72eca000d2e026bcd6f990b81d0ca06022ef4e32fb257b30d3d1014a961"
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.3.1"
term_glyph:
dependency: transitive
description:
name: term_glyph
sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.2.1"
test_api:
dependency: transitive
description:
name: test_api
sha256: "75760ffd7786fffdfb9597c35c5b27eaeec82be8edfb6d71d32651128ed7aab8"
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.6.0"
vector_math:
dependency: transitive
description:
name: vector_math
sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.4"
vm_service:
dependency: transitive
description:
name: vm_service
sha256: c620a6f783fa22436da68e42db7ebbf18b8c44b9a46ab911f666ff09ffd9153f
url: "https://pub.flutter-io.cn"
source: hosted
version: "11.7.1"
web:
dependency: transitive
description:
name: web
sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.1.4-beta"
webdriver:
dependency: transitive
description:
name: webdriver
sha256: "3c923e918918feeb90c4c9fdf1fe39220fa4c0e8e2c0fffaded174498ef86c49"
url: "https://pub.flutter-io.cn"
source: hosted
version: "3.0.2"
sdks:
dart: ">=3.1.5 <4.0.0"
flutter: ">=3.3.0"
name: clx_flutter_message_example
description: Demonstrates how to use the clx_flutter_message plugin.
# The following line prevents the package from being accidentally published to
# pub.dev using `flutter pub publish`. This is preferred for private packages.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
environment:
sdk: '>=3.1.5 <4.0.0'
# Dependencies specify other packages that your package needs in order to work.
# To automatically upgrade your package dependencies to the latest versions
# consider running `flutter pub upgrade --major-versions`. Alternatively,
# dependencies can be manually updated by changing the version numbers below to
# the latest version available on pub.dev. To see which dependencies have newer
# versions available, run `flutter pub outdated`.
dependencies:
flutter:
sdk: flutter
clx_flutter_message:
# When depending on this package from a real application you should use:
# clx_flutter_message: ^x.y.z
# See https://dart.dev/tools/pub/dependencies#version-constraints
# The example app is bundled with the plugin so we use a path dependency on
# the parent directory to use the current plugin's version.
path: ../
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2
dev_dependencies:
integration_test:
sdk: flutter
flutter_test:
sdk: flutter
# The "flutter_lints" package below contains a set of recommended lints to
# encourage good coding practices. The lint set provided by the package is
# activated in the `analysis_options.yaml` file located at the root of your
# package. See that file for information about deactivating specific lint
# rules and activating additional ones.
flutter_lints: ^2.0.0
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
# The following section is specific to Flutter packages.
flutter:
# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true
# To add assets to your application, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.dev/assets-and-images/#resolution-aware
# For details regarding adding assets from package dependencies, see
# https://flutter.dev/assets-and-images/#from-packages
# To add custom fonts to your application, add a fonts section here,
# in this "flutter" section. Each entry in this list should have a
# "family" key with the font family name, and a "fonts" key with a
# list giving the asset and other descriptors for the font. For
# example:
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700
#
# For details regarding fonts from package dependencies,
# see https://flutter.dev/custom-fonts/#from-packages
// This is a basic Flutter widget test.
//
// To perform an interaction with a widget in your test, use the WidgetTester
// utility in the flutter_test package. For example, you can send tap and scroll
// gestures. You can also use WidgetTester to find child widgets in the widget
// tree, read text, and verify that the values of widget properties are correct.
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:clx_flutter_message_example/main.dart';
void main() {
testWidgets('Verify Platform version', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const MyApp());
// Verify that platform version is retrieved.
expect(
find.byWidgetPredicate(
(Widget widget) => widget is Text &&
widget.data!.startsWith('Running on:'),
),
findsOneWidget,
);
});
}
<!DOCTYPE html>
<html>
<head>
<!--
If you are serving your web app in a path other than the root, change the
href value below to reflect the base path you are serving from.
The path provided below has to start and end with a slash "/" in order for
it to work correctly.
For more details:
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
This is a placeholder for base href that will be replaced by the value of
the `--base-href` argument provided to `flutter build`.
-->
<base href="$FLUTTER_BASE_HREF">
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="Demonstrates how to use the clx_flutter_message plugin.">
<!-- iOS meta tags & icons -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="clx_flutter_message_example">
<link rel="apple-touch-icon" href="icons/Icon-192.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png"/>
<title>clx_flutter_message_example</title>
<link rel="manifest" href="manifest.json">
<script>
// The value below is injected by flutter build, do not touch.
const serviceWorkerVersion = null;
</script>
<!-- This script adds the flutter initialization JS code -->
<script src="flutter.js" defer></script>
</head>
<body>
<script>
window.addEventListener('load', function(ev) {
// Download main.dart.js
_flutter.loader.loadEntrypoint({
serviceWorker: {
serviceWorkerVersion: serviceWorkerVersion,
},
onEntrypointLoaded: function(engineInitializer) {
engineInitializer.initializeEngine().then(function(appRunner) {
appRunner.runApp();
});
}
});
});
</script>
</body>
</html>
{
"name": "clx_flutter_message_example",
"short_name": "clx_flutter_message_example",
"start_url": ".",
"display": "standalone",
"background_color": "#0175C2",
"theme_color": "#0175C2",
"description": "Demonstrates how to use the clx_flutter_message plugin.",
"orientation": "portrait-primary",
"prefer_related_applications": false,
"icons": [
{
"src": "icons/Icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icons/Icon-512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "icons/Icon-maskable-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "icons/Icon-maskable-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
]
}
.idea/
.vagrant/
.sconsign.dblite
.svn/
.DS_Store
*.swp
profile
DerivedData/
build/
GeneratedPluginRegistrant.h
GeneratedPluginRegistrant.m
.generated/
*.pbxuser
*.mode1v3
*.mode2v3
*.perspectivev3
!default.pbxuser
!default.mode1v3
!default.mode2v3
!default.perspectivev3
xcuserdata
*.moved-aside
*.pyc
*sync/
Icon?
.tags*
/Flutter/Generated.xcconfig
/Flutter/ephemeral/
/Flutter/flutter_export_environment.sh
\ No newline at end of file
import Flutter
import UIKit
public class ClxFlutterMessagePlugin: NSObject, FlutterPlugin {
public static func register(with registrar: FlutterPluginRegistrar) {
let channel = FlutterMethodChannel(name: "clx_flutter_message", binaryMessenger: registrar.messenger())
let instance = ClxFlutterMessagePlugin()
registrar.addMethodCallDelegate(instance, channel: channel)
}
public func handle(_ call: FlutterMethodCall, result: @escaping FlutterResult) {
switch call.method {
case "getPlatformVersion":
result("iOS " + UIDevice.current.systemVersion)
default:
result(FlutterMethodNotImplemented)
}
}
}
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
# Run `pod lib lint clx_flutter_message.podspec` to validate before publishing.
#
Pod::Spec.new do |s|
s.name = 'clx_flutter_message'
s.version = '0.0.1'
s.summary = 'An in-app messaging plugin'
s.description = <<-DESC
An in-app messaging plugin
DESC
s.homepage = 'http://example.com'
s.license = { :file => '../LICENSE' }
s.author = { 'Your Company' => 'email@example.com' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.platform = :ios, '11.0'
# Flutter.framework does not contain a i386 slice.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
s.swift_version = '5.0'
end
import 'package:clx_flutter_message/util/string_util.dart';
import 'package:clx_flutter_message/util/toast_util.dart';
import 'package:flutter/material.dart';
import 'clx_flutter_message_platform_interface.dart';
import 'core/model/message_config.dart';
import 'core/model/message_data.dart';
import 'core/socket/socket_io.dart';
class ClxFlutterMessage {
Future<String?> getPlatformVersion() {
return ClxFlutterMessagePlatform.instance.getPlatformVersion();
}
}
MessageConfig messageConfig = MessageConfig();
abstract class BaseMessageConfig {
//处理消息页面跳转
void onJumpToMessagePage(String page, dynamic arguments);
//获取未处理消息
Future<List<MessageData>> getUnReadMessage();
//获取未处理的公告
Future<List<MessageData>> getUnReadNotice();
// 标记消息为已读
Future<bool> markReadAction(MessageData? message);
// 删除消息
Future<bool> removeMessageAction(MessageData? message);
//忽略消息
Future<bool> ignoreAction(MessageData? message);
//标记消息已经展示
Future<bool> setMessageShowed(MessageData? message);
//连接websocket 获取及时消息
Future<void> connectWebSocket() async {
String userNo = messageConfig.userKey;
String url = messageConfig.webSocketUrl;
String connectId = '${DateTime.now().microsecondsSinceEpoch}-$userNo';
var params = {
'connectId': connectId,
'productCode': messageConfig.productCode,
'functionKey': messageConfig.inAppAccessKey,
'userKey': userNo,
'companyKey': messageConfig.companyNo
};
var headers = {
'token': messageConfig.accessToken,
'product-code': messageConfig.productCode,
};
Socket.getInstance().onReceivedMessage = (message) {
// 处理消息
};
await Socket.getInstance().connect(url, params, headers);
}
// 处理消息跳转对应页面
void gotoDealMessage(MessageData? message) {
if (message?.canHand != true) {
return;
}
if (message == null) {
ToastUtils.showCenter("消息为空");
return;
}
if (message.companyNo != messageConfig.companyNo) {
ToastUtils.showCenter("当前公司和消息不匹配");
return;
}
if (messageConfig.inAppAccessKey != message.accessKey) {
ToastUtils.showCenter("当前角色和消息不匹配");
return;
}
var data = message.textVo?.data;
if (data == null) {
ToastUtils.showCenter("消息数据为空");
return;
}
var page = data['jumpPageAppUrl'];
if (page == null) {
ToastUtils.showCenter("消息跳转地址为空");
return;
}
var arguments = data["jumpPageAppParam"];
onJumpToMessagePage(page, arguments);
}
//刷新消息、获取未处理消息,重新连接websocket
void refreshMessage(BuildContext context) {
// 校验消息相关配置字段
if (StringUtil.isEmpty(messageConfig.userKey)) {
ToastUtils.showCenter("userNo不能为空");
return;
}
if (StringUtil.isEmpty(messageConfig.companyNo)) {
ToastUtils.showCenter("companyNo不能为空");
return;
}
if (StringUtil.isEmpty(messageConfig.accessToken)) {
ToastUtils.showCenter("登录token不能为空");
return;
}
if (StringUtil.isEmpty(messageConfig.inAppAccessKey)) {
ToastUtils.showCenter("inAppAccessKey不能为空");
return;
}
if (StringUtil.isEmpty(messageConfig.productCode)) {
ToastUtils.showCenter("productCode不能为空");
return;
}
if (StringUtil.isEmpty(messageConfig.webSocketUrl)) {
ToastUtils.showCenter("webSocketUrl不能为空");
return;
}
getUnReadMessage();
getUnReadNotice();
connectWebSocket();
}
}
import 'package:flutter/foundation.dart';
import 'package:flutter/services.dart';
import 'clx_flutter_message_platform_interface.dart';
/// An implementation of [ClxFlutterMessagePlatform] that uses method channels.
class MethodChannelClxFlutterMessage extends ClxFlutterMessagePlatform {
/// The method channel used to interact with the native platform.
@visibleForTesting
final methodChannel = const MethodChannel('clx_flutter_message');
@override
Future<String?> getPlatformVersion() async {
final version = await methodChannel.invokeMethod<String>('getPlatformVersion');
return version;
}
}
import 'package:plugin_platform_interface/plugin_platform_interface.dart';
import 'clx_flutter_message_method_channel.dart';
abstract class ClxFlutterMessagePlatform extends PlatformInterface {
/// Constructs a ClxFlutterMessagePlatform.
ClxFlutterMessagePlatform() : super(token: _token);
static final Object _token = Object();
static ClxFlutterMessagePlatform _instance = MethodChannelClxFlutterMessage();
/// The default instance of [ClxFlutterMessagePlatform] to use.
///
/// Defaults to [MethodChannelClxFlutterMessage].
static ClxFlutterMessagePlatform get instance => _instance;
/// Platform-specific implementations should set this with their own
/// platform-specific class that extends [ClxFlutterMessagePlatform] when
/// they register themselves.
static set instance(ClxFlutterMessagePlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}
Future<String?> getPlatformVersion() {
throw UnimplementedError('platformVersion() has not been implemented.');
}
}
// In order to *not* need this ignore, consider extracting the "web" version
// of your plugin as a separate package, instead of inlining it in the same
// package as the core of your plugin.
// ignore: avoid_web_libraries_in_flutter
import 'dart:html' as html show window;
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
import 'clx_flutter_message_platform_interface.dart';
/// A web implementation of the ClxFlutterMessagePlatform of the ClxFlutterMessage plugin.
class ClxFlutterMessageWeb extends ClxFlutterMessagePlatform {
/// Constructs a ClxFlutterMessageWeb
ClxFlutterMessageWeb();
static void registerWith(Registrar registrar) {
ClxFlutterMessagePlatform.instance = ClxFlutterMessageWeb();
}
/// Returns a [String] containing the version of the platform.
@override
Future<String?> getPlatformVersion() async {
final version = html.window.navigator.userAgent;
return version;
}
}
import 'package:flutter/material.dart';
const btnBgColor = Color(0xFF73BC8B);
const Color overlayColor = Color(0x33FFFFFF);
const Color appMain = Color(0xFF73BC8B);
const String companyNo = "待定";
const String inAppAccessKey = "待定";
const String socketAddress = "待定";
/// 消息组件配置
abstract class MessageConfig {
/// 消息组件配置
const MessageConfig();
/// 消息跳转页面配置方法
void onJumpToMessagePage(String page, dynamic arguments);
}
\ No newline at end of file
mixin MessageDeal {
}
import 'package:clx_flutter_message/clx_flutter_message.dart';
class MessageConfig {
// websocket 连接地址
String webSocketUrl = "";
String inAppAccessKey = "";
String companyNo = "";
String productCode = "";
String userKey = "";
String accessToken = "";
BaseMessageConfig? baseMessageConfig;
}
import 'dart:convert';
/// id : 0
/// messageNo : 0
/// accessKey : ""
/// companyNo : 0
/// userNo : 0
/// messageGroup : ""
/// messageSign : ""
/// showType : ""
/// showPriority : 0
/// validityLimitTime : ""
/// showStatus : 0
/// receivePage : ""
/// jumpPage : ""
/// markdownFlag : 0
/// status : 0
/// statusName : ""
/// textVo : {"title":"","subtitle":"","context":"","dataJson":""}
class MessageData {
MessageData({
this.id,
this.messageNo,
this.accessKey,
this.companyNo,
this.userNo,
this.messageGroup,
this.messageSign,
this.showType,
num? showPriority,
this.createTime,
this.validityLimitTime,
this.showStatus,
this.receivePage,
this.jumpPage,
this.markdownFlag,
this.status,
this.statusName,
this.textVo,
}) : _showPriority = showPriority;
MessageData.fromJson(dynamic json) {
id = json['id'];
messageNo = json['messageNo'];
accessKey = json['accessKey'];
companyNo = json['companyNo'];
userNo = json['userNo'];
messageGroup = json['messageGroup'];
messageSign = json['messageSign'];
showType = json['showType'];
_showPriority = json['showPriority'];
createTime = json['createTime'];
validityLimitTime = json['validityLimitTime'];
showStatus = json['showStatus'];
receivePage = json['receivePage'];
jumpPage = json['jumpPage'];
markdownFlag = json['markdownFlag'];
status = json['status'];
statusName = json['statusName'];
textVo = json['textVo'] != null ? TextVo.fromJson(json['textVo']) : null;
}
num? id;
String? messageNo;
String? accessKey;
String? companyNo;
String? userNo;
String? messageGroup;
String? messageSign;
/// 1: 首页公告(需要处理)。 2: 全局通知(全局弹窗、需要处理)。3:消息提醒(不弹窗、无处理按钮、没有跳转页面)
String? showType;
num? _showPriority;
num get showPriority => _showPriority ?? 0;
String? createTime;
String? validityLimitTime;
num? showStatus;
String? receivePage;
String? jumpPage;
num? markdownFlag;
/// 消息状态 0未读 10已读 20已执行
num? status;
String? statusName;
TextVo? textVo;
/// 是否已处理(先把已读标识为已执行)
bool get isHand => status == 10;
MessageData copyWith({
num? id,
String? messageNo,
String? accessKey,
String? companyNo,
String? userNo,
String? messageGroup,
String? messageSign,
String? showType,
num? showPriority,
String? validityLimitTime,
String? createTime,
num? showStatus,
String? receivePage,
String? jumpPage,
num? markdownFlag,
num? status,
String? statusName,
TextVo? textVo,
}) =>
MessageData(
id: id ?? this.id,
messageNo: messageNo ?? this.messageNo,
accessKey: accessKey ?? this.accessKey,
companyNo: companyNo ?? this.companyNo,
userNo: userNo ?? this.userNo,
messageGroup: messageGroup ?? this.messageGroup,
messageSign: messageSign ?? this.messageSign,
showType: showType ?? this.showType,
showPriority: showPriority ?? _showPriority,
createTime: createTime ?? this.createTime,
validityLimitTime: validityLimitTime ?? this.validityLimitTime,
showStatus: showStatus ?? this.showStatus,
receivePage: receivePage ?? this.receivePage,
jumpPage: jumpPage ?? this.jumpPage,
markdownFlag: markdownFlag ?? this.markdownFlag,
status: status ?? this.status,
statusName: statusName ?? this.statusName,
textVo: textVo ?? this.textVo,
);
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['id'] = id;
map['messageNo'] = messageNo;
map['accessKey'] = accessKey;
map['companyNo'] = companyNo;
map['userNo'] = userNo;
map['messageGroup'] = messageGroup;
map['messageSign'] = messageSign;
map['showType'] = showType;
map['showPriority'] = _showPriority;
map['createTime'] = createTime;
map['validityLimitTime'] = validityLimitTime;
map['showStatus'] = showStatus;
map['receivePage'] = receivePage;
map['jumpPage'] = jumpPage;
map['markdownFlag'] = markdownFlag;
map['status'] = status;
map['statusName'] = statusName;
if (textVo != null) {
map['textVo'] = textVo?.toJson();
}
return map;
}
}
/// title : ""
/// subtitle : ""
/// context : ""
/// dataJson : ""
class TextVo {
TextVo({
this.title,
this.subtitle,
this.content,
this.dataJson,
});
TextVo.fromJson(dynamic json) {
title = json['title'];
subtitle = json['subtitle'];
content = json['content'];
dataJson = json['dataJson'];
}
String? title;
String? subtitle;
String? content;
String? dataJson;
Map<String, dynamic>? _data;
Map<String, dynamic> get data {
if (_data != null) return _data!;
if (dataJson?.isNotEmpty == true) {
try {
_data = jsonDecode(dataJson!);
} catch (e) {
_data = {};
}
} else {
_data = {};
}
return _data!;
}
/// 扩展字段
List<dynamic> get extraShowInfoList => data['extraShowInfoList'] ?? [];
TextVo copyWith({
String? title,
String? subtitle,
String? content,
String? dataJson,
}) =>
TextVo(
title: title ?? this.title,
subtitle: subtitle ?? this.subtitle,
content: content ?? this.content,
dataJson: dataJson ?? this.dataJson,
);
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['title'] = title;
map['subtitle'] = subtitle;
map['content'] = content;
map['dataJson'] = dataJson;
return map;
}
}
extension MessageDataExt on MessageData {
/// 是否可处理
bool get canHand => showType != null && showType != "3";
}
import 'message_data.dart';
/// 消息节点-链表
class MessageNode {
/// 节点数据
MessageData data;
/// 下一个节点
MessageNode? next;
/// 上一个节点
MessageNode? prev;
MessageNode(this.data);
/// 插入节点
void insertData(MessageData data) {
MessageNode node = MessageNode(data);
if (this.data.showPriority < data.showPriority) {
node.next = this;
node.prev = prev;
prev?.next = node;
prev = node;
} else {
if (next == null) {
next = node;
node.prev = this;
} else {
next?.insertData(data);
}
}
}
/// 移除节点
void removeData(MessageData data) {
if (this.data == data) {
if (next != null) {
next?.prev = prev;
}
if (prev != null) {
prev?.next = next;
}
} else {
next?.removeData(data);
}
}
}
import 'package:flutter/material.dart';
import '../../util/string_util.dart';
import '../model/message_node.dart';
import '../widget/button_public/button_public_rect.dart';
import '../widget/button_public/button_public_type.dart';
class NoticeDialogWidget extends StatefulWidget {
const NoticeDialogWidget({
super.key,
required this.showDialog,
this.decoration,
this.cancelText,
this.confirmText,
this.cancelType,
this.confirmType,
});
//是否显示
final bool showDialog;
// 对话框背景 decoration
final Decoration? decoration;
// 取消按钮文字
final String? cancelText;
// 确认按钮文字
final String? confirmText;
// 取消按钮类型
final ButtonPublicType? cancelType;
// 确认按钮类型
final ButtonPublicType? confirmType;
@override
State<NoticeDialogWidget> createState() => _NoticeDialogWidgetState();
}
class _NoticeDialogWidgetState extends State<NoticeDialogWidget> {
MessageNode? headNode;
@override
Widget build(BuildContext context) {
return _buildView();
}
// 构建view
Widget _buildView() {
var message = headNode?.data;
var extraShowInfoList = message?.textVo?.extraShowInfoList;
return !widget.showDialog
? const SizedBox()
: Container(
height: double.infinity,
width: double.infinity,
color: Colors.black.withOpacity(0.5),
padding: const EdgeInsets.symmetric(horizontal: 20),
child: Center(
child: Stack(
children: [
Container(
decoration: widget.decoration,
padding: const EdgeInsets.symmetric(horizontal: 24),
child: SingleChildScrollView(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
children: [
const SizedBox(height: 32),
Text(
message?.textVo?.title ?? '',
style: const TextStyle(
fontSize: 18, fontWeight: FontWeight.bold),
),
const SizedBox(height: 8),
Text(
message?.textVo?.subtitle ?? '',
style: const TextStyle(
color: Color(0x99000000), fontSize: 16),
),
if (extraShowInfoList?.isNotEmpty == true)
_valueContent(extraShowInfoList),
const SizedBox(height: 24),
Row(
children: [
Expanded(
child: ButtonPublicRect(
type: widget.cancelType ??
ButtonPublicType.outline,
text: widget.cancelText ?? '忽略',
onPressed: ignore,
borderRadius: 8,
),
),
const SizedBox(width: 10),
Expanded(
child: ButtonPublicRect(
type: widget.confirmType ??
ButtonPublicType.solid,
text: widget.confirmText ?? '去处理',
onPressed: () {
MessageDeal.gotoDealMessage(message);
ignore();
},
borderRadius: 8,
),
)
],
),
const SizedBox(height: 24),
],
),
),
),
Positioned(
top: 0,
right: 0,
child: IconButton(
onPressed: dismiss,
icon: const Icon(
Icons.close,
size: 16,
color: Colors.grey,
),
),
)
],
),
),
);
}
Container _valueContent(List<dynamic>? extraShowInfoList) {
return Container(
padding: const EdgeInsets.only(left: 10, right: 10, bottom: 10),
margin: const EdgeInsets.only(top: 8),
decoration: BoxDecoration(
color: const Color(0xFFF3F5F8),
borderRadius: BorderRadius.circular(8)),
child: Column(
children: extraShowInfoList!.map<Widget>((e) {
return Container(
margin: const EdgeInsets.only(top: 10),
child: Row(
children: [
SizedBox(
width: 75,
child: Text(
(e['name'] ?? '') + ":",
style: const TextStyle(
color: Color(0xFF4E5969),
fontSize: 15,
),
),
),
const SizedBox(width: 10),
Expanded(
child: Row(
children: [
Flexible(
child: Text(
StringUtil.formatValue(e['value']),
style: const TextStyle(
color: Color(0xFF333C4C),
fontSize: 15,
),
overflow: TextOverflow.ellipsis,
),
),
const SizedBox(
width: 10,
),
Text(
StringUtil.formatValue(e['unit'], defaultValue: ''),
style: const TextStyle(
color: Color(0xFF4E5969),
fontSize: 14,
),
),
],
),
),
],
),
);
}).toList(),
),
);
}
void dismiss() {
MessageDeal.setMessageShowed(headNode?.data);
next();
}
void next() {
headNode = headNode?.next;
/// 隐藏当前的
showDialog = false;
update();
/// 显示下一个
if (headNode != null) {
Future.delayed(const Duration(milliseconds: 300)).then((value) {
showDialog = true;
update();
});
}
}
void ignore() {
/// 标记已展示
MessageDeal.setMessageShowed(headNode?.data);
MessageDeal.markReadAction(headNode?.data);
next();
}
}
import 'package:get/get.dart';
class NoteController extends GetxController {
NoteController();
_initData() {
update(["note"]);
}
void onTap() {}
// @override
// void onInit() {
// super.onInit();
// }
@override
void onReady() {
super.onReady();
_initData();
}
// @override
// void onClose() {
// super.onClose();
// }
}
library note;
export './controller.dart';
export './view.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'index.dart';
class NotePage extends GetView<NoteController> {
const NotePage({super.key});
// 主视图
Widget _buildView() {
return const Center(
child: Text("NotePage"),
);
}
@override
Widget build(BuildContext context) {
return GetBuilder<NoteController>(
init: NoteController(),
id: "note",
builder: (_) {
return Scaffold(
appBar: AppBar(title: const Text("note")),
body: SafeArea(
child: _buildView(),
),
);
},
);
}
}
import 'package:clx_flutter_message/clx_flutter_message.dart';
import '../../model/message_data.dart';
import '../../model/message_node.dart';
mixin NotificationLayoutLogic {
MessageNode? headNode;
BaseMessageConfig? messageDeal;
void setCashMessage(List<MessageData> messages) {
headNode = null;
/// 上一个节点
MessageNode? preNode;
for (var data in messages) {
var theNode = MessageNode(data);
if (preNode == null) {
preNode = theNode;
headNode = preNode;
} else {
preNode.next = theNode;
theNode.prev = preNode;
preNode = theNode;
}
}
}
void next() {
messageConfig.baseMessageConfig?.setMessageShowed(headNode?.data);
if (headNode?.next == null) {
headNode = null;
NotificationManager.instance.hideNotification();
return;
}
headNode = headNode?.next;
headNode?.prev?.next = null;
headNode?.prev = null;
update();
}
void ignore() {
MessageDeal.markReadAction(headNode?.data);
MessageDeal.setMessageShowed(headNode?.data);
next();
}
void dismiss() {
MessageDeal.setMessageShowed(headNode?.data);
next();
}
void confirm(MessageData data) {
messageDeal?.gotoDealMessage(data);
messageDeal?.markReadAction(headNode?.data);
messageDeal?.setMessageShowed(headNode?.data);
next();
}
/// 插入消息
void insertNotification(MessageData data) {
if (headNode == null) {
headNode = MessageNode(data);
} else {
headNode?.insertData(data);
}
}
void clear() {
headNode = null;
NotificationManager.instance.hideNotification();
update();
}
}
import 'dart:ui';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import '../../model/message_data.dart';
import '../../model/message_node.dart';
import 'notification_layout_logic.dart';
import 'widget/list_item.dart';
class NotificationLayoutWidget extends StatefulWidget {
const NotificationLayoutWidget({super.key});
@override
State<NotificationLayoutWidget> createState() =>
_NotificationLayoutWidgetState();
}
class _NotificationLayoutWidgetState extends State<NotificationLayoutWidget> {
MessageNode? headNode;
@override
Widget build(BuildContext context) {
return _buildView();
}
// 构建View
Widget _buildView() {
if (headNode == null) {
return const SizedBox();
}
return Container(
margin: const EdgeInsets.only(top: 35),
child: buildStackedList(context),
);
}
Widget buildStackedList(BuildContext context) {
return SizedBox(
height: 140,
child: Stack(
fit: StackFit.expand,
children: [
if (headNode?.next != null)
Positioned(
bottom: 15,
left: 25,
right: 25,
child: _message(headNode?.next?.data),
),
Positioned(
bottom: 0,
left: 10,
right: 10,
child: _buildNotification(headNode?.data),
)
],
),
);
}
MessageWidget _message(data) {
return MessageWidget(
data: data,
width: double.infinity,
onCancel: () {
ignore();
},
onHand: () {
confirm(data);
},
);
}
Widget _buildNotification(data) {
if (data == null) {
return const SizedBox();
}
return Dismissible(
key: Key(data.messageNo?.toString() ?? ''),
direction: DismissDirection.endToStart,
onDismissed: (direction) {
dismiss();
},
child: Stack(
children: [
Positioned.fill(
child: ClipRRect(
borderRadius: BorderRadius.circular(8),
child: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 1.5, sigmaY: 1.5),
child: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(8),
color: Colors.black26),
width: null,
height: null,
),
),
),
),
_message(data),
],
),
);
}
void ignore() {
MessageDeal.markReadAction(headNode?.data);
MessageDeal.setMessageShowed(headNode?.data);
next();
}
void next() {
MessageDeal.setMessageShowed(headNode?.data);
if (headNode?.next == null) {
headNode = null;
hideNotification();
return;
}
headNode = headNode?.next;
headNode?.prev?.next = null;
headNode?.prev = null;
setState(() {});
}
void clear() {
headNode = null;
hideNotification();
setState(() {});
}
void dismiss() {
MessageDeal.setMessageShowed(headNode?.data);
next();
}
void setCashMessage(List<MessageData> messages) {
headNode = null;
/// 上一个节点
MessageNode? preNode;
for (var data in messages) {
var theNode = MessageNode(data);
if (preNode == null) {
preNode = theNode;
headNode = preNode;
} else {
preNode.next = theNode;
theNode.prev = preNode;
preNode = theNode;
}
}
}
/// 插入消息
void insertNotification(MessageData data) {
if (headNode == null) {
headNode = MessageNode(data);
} else {
headNode?.insertData(data);
}
}
void confirm(MessageData data) {
MessageDeal.gotoDealMessage(data);
MessageDeal.markReadAction(headNode?.data);
MessageDeal.setMessageShowed(headNode?.data);
next();
}
void setNotification(List<dynamic> data) {
setCashMessage(
data.map<MessageData>((e) => MessageData.fromJson(e)).toList(),
);
}
}
class NotePage extends GetView<NotificationLayoutLogic> {
const NotePage({super.key});
// 主视图
Widget _buildView() {
return const Center(
child: Text("NotePage"),
);
}
@override
Widget build(BuildContext context) {
return GetBuilder<NoteController>(
init: NoteController(),
id: "note",
builder: (_) {
return Scaffold(
appBar: AppBar(title: const Text("note")),
body: SafeArea(
child: _buildView(),
),
);
},
);
}
}
import 'package:flutter/material.dart';
import '../../../../util/image_widget.dart';
import '../../../model/message_data.dart';
class MessageWidget extends StatelessWidget {
final MessageData data;
final double width;
final void Function() onCancel, onHand;
const MessageWidget({
super.key,
required this.data,
required this.width,
required this.onCancel,
required this.onHand,
});
@override
Widget build(BuildContext context) {
return Container(
width: double.infinity,
padding: const EdgeInsets.all(15.0),
decoration: BoxDecoration(
color: Colors.black54,
borderRadius: BorderRadius.circular(8.0),
boxShadow: const [
BoxShadow(
color: Colors.black26,
offset: Offset(2, 2),
blurRadius: 5.0,
),
],
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
ImageWidget.loadAssetImage(
'ic_launcher',
width: 24,
height: 24,
borderRadius: BorderRadius.circular(5),
),
const SizedBox(width: 5),
Flexible(
child: Text(
data.textVo?.title ?? '',
style: const TextStyle(
fontSize: 13,
color: Colors.white,
),
),
),
const SizedBox(width: 5),
Text(
' / ${data.createTime ?? ''}',
style: TextStyle(
color: Colors.white.withAlpha((255 * 0.8).toInt())),
)
],
),
const SizedBox(height: 8),
Text(
(data.textVo?.subtitle ?? '-'),
style: const TextStyle(
color: Colors.white,
fontSize: 15,
fontWeight: FontWeight.w500,
),
overflow: TextOverflow.ellipsis,
),
const SizedBox(height: 8),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
GestureDetector(
onTap: onCancel,
child: const Text(
'忽略',
style: TextStyle(
color: Colors.white,
fontSize: 14,
),
),
),
GestureDetector(
onTap: onHand,
child: const Row(
mainAxisSize: MainAxisSize.min,
children: [
Text(
'立即处理',
style: TextStyle(
color: Colors.white,
fontSize: 14,
),
),
Icon(
Icons.keyboard_double_arrow_right,
size: 14,
color: Color(0xffC9CDD4),
),
],
),
),
],
)
],
),
);
}
}
import 'package:flutter/cupertino.dart';
import '../model/message_data.dart';
/// 全局消息展示管理
class NotificationManager {
static NotificationManager? _instance;
static NotificationManager get instance {
_instance ??= NotificationManager._internal();
return _instance!;
}
OverlayEntry? _overlayEntry;
/// 显示悬浮布局
void showNotification(BuildContext? context) {
if (context == null) return;
if (_overlayEntry != null) return; // 防止重复显示
if (_notificationLayoutLogic.headNode == null) return; // 防止没有消息时显示
_overlayEntry = OverlayEntry(
builder: (context) => Positioned(
top: 0,
left: 0,
right: 0,
child: NotificationLayoutPage(
logic: _notificationLayoutLogic,
),
),
);
Overlay.of(context).insert(_overlayEntry!);
}
/// 隐藏悬浮布局
void hideNotification() {
_overlayEntry?.remove();
_overlayEntry = null;
}
/// 缓存之前的消息列表
void setNotification(List<dynamic> data) {
_notificationLayoutLogic.setCashMessage(
data.map<MessageData>((e) => MessageData.fromJson(e)).toList(),
);
}
void insertNotification(MessageData data) {
_notificationLayoutLogic.insertNotification(data);
}
void clear() {
_notificationLayoutLogic.clear();
}
}
import 'dart:async';
import 'dart:developer';
import 'dart:io';
import 'package:web_socket_channel/io.dart';
import 'socket_message.dart';
typedef MessageCallBack = void Function(dynamic message);
class Socket {
// io通道
IOWebSocketChannel? channel;
// 接受的消息体
SocketMessageBody? _lastMessage;
// 心跳包定时器
Timer? heartbeatTimer;
// 心跳包发送间隔
Duration heartbeatInterval = const Duration(seconds: 15); // 心跳包发送间隔
// 私有构造函数
Socket._internal();
MessageCallBack? onReceivedMessage;
// 静态私有实例
static Socket? _instance;
// 公共静态方法
static Socket getInstance() {
_instance ??= Socket._internal();
return _instance!;
}
/// 私有变量
String? url;
Map<String, String>? params;
Map<String, String>? headers;
Future<void> connect(
String url,
Map<String, String> params,
Map<String, String> headers,
) async {
if (url.isEmpty) {
return;
}
// 缓存参数用于重连
this.url = url;
this.params = params;
this.headers = headers;
var uri = generateUrlWithParams(
baseUrl: url,
params: params,
);
var socket = await WebSocket.connect(
uri.toString(),
headers: headers,
);
channel = IOWebSocketChannel(socket);
startHeartbeat();
channel?.stream.listen(
(message) {
log("connectId: ${params['connectId']} Received message: $message");
if (message is String) {
if (message == '') {
_lastMessage = null;
return;
}
var msg = SocketMessageBody.fromJson(message);
if (msg.type == 3) {
onReceivedMessage?.call(msg.content);
}
_lastMessage = msg;
}
},
onError: (error) {
log("WebSocket Error: $error");
},
onDone: () {
log("WebSocket connection closed");
if (_lastMessage?.type == 2) {
/// 服务器主动断开连接、如果可以重连
if (_lastMessage?.content?['canReconnect'] == 1) {
reconnectWebSocket();
} else {
_clean();
}
return;
} else {
if (heartbeatTimer != null) {
reconnectWebSocket();
}
}
},
);
}
/// 关闭连接
Future close() async {
_clean();
heartbeatTimer?.cancel();
heartbeatTimer = null;
await channel?.sink.close();
channel = null;
return Future.value();
}
/// 清除参数
void _clean() {
url = null;
params = null;
onReceivedMessage = null;
}
/// 启动心跳包定时器
void startHeartbeat() {
heartbeatTimer = Timer.periodic(heartbeatInterval, (timer) {
if (channel != null) {
log('Sending heartbeat');
channel?.sink.add('{"type":1}');
}
});
}
/// 重新连接 WebSocket
void reconnectWebSocket() {
// 停止心跳包定时器
heartbeatTimer?.cancel();
channel?.sink.close();
channel = null;
heartbeatTimer = null;
// 重新连接 WebSocket
Future.delayed(const Duration(seconds: 1), () {
connect(
url ?? '',
params ?? {},
headers ?? {},
);
});
}
/// 生成带参数的 URL
static Uri generateUrlWithParams({
required String baseUrl,
required Map<String, String> params,
}) {
final Uri baseUri = Uri.parse(baseUrl);
final newUri = baseUri.replace(queryParameters: {
...baseUri.queryParameters,
...params,
});
log(newUri.toString());
return newUri;
}
}
import 'dart:convert';
class SocketMessageBody {
/// 1 : pong 2: 关闭连接 3:业务消息
int type;
/// 消息内容
dynamic content;
SocketMessageBody({required this.type, required this.content});
// 将 Message 对象转换为 Map
Map<String, dynamic> toMap() {
return {
'type': type,
'content': content,
};
}
// 从 Map 创建 Message 对象
factory SocketMessageBody.fromMap(Map<String, dynamic>? map) {
return SocketMessageBody(
type: map?['type'],
content: map?['content'] ?? '',
);
}
// 将 Message 对象转换为 JSON 字符串
String toJson() {
return jsonEncode(toMap());
}
// 从 JSON 字符串创建 Message 对象
factory SocketMessageBody.fromJson(String source) {
return SocketMessageBody.fromMap(jsonDecode(source));
}
@override
String toString() {
return 'Message(type: $type, content: $content)';
}
}
import 'package:flutter/material.dart';
import '../../../common/constant.dart';
import 'button_public_type.dart';
/// 按钮样式
class ButtonPublicRect extends StatefulWidget {
final String? text; // 按钮文本
final VoidCallback? onPressed; // 点击事件
final double? minWidth; // 最小宽度
final double minHeight; // 最小高度
final EdgeInsetsGeometry? margin; // 外边距
final Color? borderColor; // 边框颜色
final double borderWidth; // 边框宽度
final Color? textColor; // 按钮文本颜色
final double textSize; // 按钮文本字体大小
final Color backgroundColor; // 按钮可点击颜色
final FontWeight fontWeight; // 按钮文本字体粗细
final double borderRadius; // 按钮圆角大小
final ButtonPublicType type; // 按钮类型
const ButtonPublicRect({
super.key,
required this.text,
required this.onPressed,
this.minWidth = 0.0,
this.minHeight = 48.0,
this.margin,
this.textSize = 17.0,
this.textColor,
this.borderColor,
this.borderWidth = 1.0,
this.backgroundColor = btnBgColor,
this.fontWeight = FontWeight.bold,
this.borderRadius = 8.0,
this.type = ButtonPublicType.solid,
});
@override
State<ButtonPublicRect> createState() => _ButtonPublicRectState();
}
class _ButtonPublicRectState extends State<ButtonPublicRect> {
@override
Widget build(BuildContext context) {
return Container(
margin: widget.margin,
constraints: BoxConstraints(
minWidth: widget.minWidth ?? 0.0, minHeight: widget.minHeight),
child: TextButton(
onPressed: () {
widget.onPressed?.call();
},
style: ButtonStyle(
padding: MaterialStateProperty.all(
const EdgeInsets.symmetric(horizontal: 5.0)),
textStyle: MaterialStateProperty.all(TextStyle(
fontSize: widget.textSize, fontWeight: widget.fontWeight)),
// 设置文字颜色
foregroundColor: MaterialStateProperty.all(_textColor()),
// 设置背景颜色
backgroundColor: MaterialStateProperty.resolveWith((states) {
return _backgroundColor();
}),
//设置水波纹颜色
overlayColor: MaterialStateProperty.all(overlayColor),
shape: MaterialStateProperty.all(
RoundedRectangleBorder(
borderRadius: BorderRadius.circular(widget.borderRadius)),
),
side: MaterialStateProperty.all(
BorderSide(color: _borderColor(), width: widget.borderWidth)),
),
child: Text(widget.text ?? ""),
),
);
}
/// 根据按钮类型设置按钮文本颜色
/// 按钮类型为outline、dash 文本颜色设置边框颜色
Color _textColor() {
switch (widget.type) {
case ButtonPublicType.solid:
return widget.textColor ?? Colors.white;
case ButtonPublicType.outline:
case ButtonPublicType.dash:
return widget.textColor ?? widget.borderColor ?? appMain;
default:
return widget.textColor ?? Colors.white;
}
}
/// 根据按钮类型设置按钮可点击颜色
/// 按钮类型为outline、dash 按钮可点击颜色为透明
Color _backgroundColor() {
switch (widget.type) {
case ButtonPublicType.solid:
return widget.backgroundColor;
case ButtonPublicType.outline:
case ButtonPublicType.dash:
return Colors.transparent;
default:
return widget.backgroundColor;
}
}
/// 根据按钮类型设置按钮边框颜色
/// 按钮类型为outline 设置边框颜色
Color _borderColor() {
switch (widget.type) {
case ButtonPublicType.outline:
return widget.borderColor ?? appMain;
default:
return Colors.transparent;
}
}
}
/// 按钮类型
enum ButtonPublicType {
solid, // 填充颜色
outline, // 边框
dash, // 虚线
}
\ No newline at end of file
import 'dart:math';
import 'package:cached_network_image/cached_network_image.dart';
import 'package:flutter/material.dart';
import 'package:octo_image/octo_image.dart';
import 'string_util.dart';
class ImageWidget {
static String domain = "";
static const String imagePath = "assets/images/";
/// 加载网络图片widget
static Widget loadNetImage(
String? url, {
String? domain,
ImageTransformerType? type,
double? width,
double? height,
BoxFit fit = BoxFit.cover,
Widget? placeholder,
Widget? errorWidget,
bool signature = false,
int? maxHeight,
int? maxWidth,
}) {
var domainUrl = domain ?? ImageWidget.domain;
if (url != null && !url.startsWith("http")) {
url = domainUrl + url;
}
if (signature) {
url =
url != null && url.isNotEmpty ? "$url?${Random().nextDouble()}" : "";
}
if (StringUtil.isEmpty(url)) {
return const SizedBox();
}
return OctoImage(
// 拼接Random,修复图片地址固定,无法展示最新图片问题
image: CachedNetworkImageProvider(url!,
maxWidth: maxWidth, maxHeight: maxHeight),
imageBuilder: MyOctoImageTransformer.getOctoImageBuilder(type),
placeholderBuilder:
ImageWidget.placeholderBuilder(placeholder: placeholder),
errorBuilder: ImageWidget.errorBuilder(errorWidget: placeholder),
fit: fit,
width: width,
height: height,
);
}
/// 加载本地图片widget
static Widget loadAssetImage(
String image, {
double? width,
double? height,
int? cacheWidth,
int? cacheHeight,
BorderRadiusGeometry borderRadius=BorderRadius.zero,
BoxFit? fit,
String format = 'png',
Color? color,
String? package,
}) {
return ClipRRect(
borderRadius: borderRadius,
child: Image.asset(
"$imagePath$image.$format",
height: height,
width: width,
cacheWidth: cacheWidth,
cacheHeight: cacheHeight,
fit: fit,
color: color,
package: package,
/// 忽略图片语义
excludeFromSemantics: true,
),
);
}
//加载头像默认图片
static Widget loadHeadPlaceHolder() {
return ImageWidget.loadAssetImage(
"head",
);
}
//加载头像默认图片-方形头像
static Widget loadHeadPlaceHolderSquare() {
return ImageWidget.loadAssetImage(
"head_square",
);
}
//缓存 本地图片
static void cacheAssetImage(
context,
String image, {
String format = 'png',
}) {
precacheImage(AssetImage("$imagePath$image.$format"), context);
}
//缓存 网络图片
static void cacheNetImage(
context,
String url, {
String? domain,
}) {
var domainUrl = domain ?? ImageWidget.domain;
if (url.isNotEmpty && !url.startsWith("http")) {
url = domainUrl + url;
}
precacheImage(CachedNetworkImageProvider(url), context);
}
//返回 network imageprovider
static ImageProvider getNetImageProvider(
String url, {
String? domain,
}) {
var domainUrl = domain ?? ImageWidget.domain;
if (url.isNotEmpty && !url.startsWith("http")) {
url = domainUrl + url;
}
return CachedNetworkImageProvider(url);
}
static OctoErrorBuilder errorBuilder({
Widget? errorWidget,
}) {
return (context, error, stacktrace) => errorWidget != null
? SizedBox(
width: double.infinity,
height: double.infinity,
child: errorWidget,
)
: const Icon(
Icons.error_outline_outlined,
color: Colors.grey,
);
}
static OctoPlaceholderBuilder? placeholderBuilder({
Widget? placeholder,
}) {
return placeholder != null
? (context) => SizedBox(
width: double.infinity,
height: double.infinity,
child: placeholder,
)
: null;
}
}
class MyOctoImageTransformer {
static OctoImageBuilder radiusAvatar() {
return (context, child) => Center(
child: AspectRatio(
aspectRatio: 1.0,
child: ClipRRect(
borderRadius: BorderRadius.circular(5.0),
child: child,
),
),
);
}
static OctoImageBuilder circleAvatar() {
return (context, child) => Center(
child: AspectRatio(
aspectRatio: 1.0,
child: ClipOval(
child: child,
),
),
);
}
// 根据type返回 OctoImageBuilder
static OctoImageBuilder getOctoImageBuilder(ImageTransformerType? type) {
switch (type) {
case ImageTransformerType.rect:
return radiusAvatar();
case ImageTransformerType.circle:
return circleAvatar();
default:
return (context, child) => child;
}
}
}
enum ImageTransformerType {
rect, // 矩形
circle, // 圆形
}
// 字符串工具类
class StringUtil {
static bool isEmpty(String? str) {
return str == null || str.isEmpty;
}
static String formatValue(dynamic content, {String defaultValue = '-'}) {
var value = '';
if (content == null) {
value = defaultValue;
} else if (content is num) {
value = content.formatIntString();
} else {
value = content.toString();
}
return value;
}
}
extension DoubleExten on num? {
/// 如果是0.0则返回int
String formatIntString() {
if (this == null) {
return '';
} else if (this is double) {
var num = this as double;
return this == num.toInt().toDouble()
? num.toInt().toString()
: toString();
} else {
return this?.toString() ?? '';
}
}
}
import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
/// @class : ToastUtils
/// @name : jhf
/// @description :显示toast
class ToastUtils {
/// 显示toast
///[name] lottie名称
static show(String name) {
Fluttertoast.showToast(
msg: name,
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.BOTTOM,
timeInSecForIosWeb: 1,
backgroundColor: Colors.black,
textColor: Colors.white,
fontSize: 15.0);
}
/// 显示toast
///[name] lottie名称
static showCenter(String name) {
Fluttertoast.showToast(
msg: name,
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.CENTER,
timeInSecForIosWeb: 1,
backgroundColor: Colors.black,
textColor: Colors.white,
fontSize: 16.0);
}
}
name: clx_flutter_message
description: An in-app messaging plugin
version: 0.0.1
homepage:
environment:
sdk: '>=3.1.5 <4.0.0'
flutter: '>=3.3.0'
dependencies:
flutter:
sdk: flutter
flutter_web_plugins:
sdk: flutter
plugin_platform_interface: ^2.0.2
web_socket_channel: ^2.1.0
octo_image: ^2.0.0
cached_network_image: ^3.3.0
fluttertoast: 8.2.4
get: ^4.6.6
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^2.0.0
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
# The following section is specific to Flutter packages.
flutter:
# This section identifies this Flutter project as a plugin project.
# The 'pluginClass' specifies the class (in Java, Kotlin, Swift, Objective-C, etc.)
# which should be registered in the plugin registry. This is required for
# using method channels.
# The Android 'package' specifies package in which the registered class is.
# This is required for using method channels on Android.
# The 'ffiPlugin' specifies that native code should be built and bundled.
# This is required for using `dart:ffi`.
# All these are used by the tooling to maintain consistency when
# adding or updating assets for this project.
plugin:
platforms:
android:
package: com.clx.clx_flutter_message
pluginClass: ClxFlutterMessagePlugin
ios:
pluginClass: ClxFlutterMessagePlugin
web:
pluginClass: ClxFlutterMessageWeb
fileName: clx_flutter_message_web.dart
# To add assets to your plugin package, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
#
# For details regarding assets in packages, see
# https://flutter.dev/assets-and-images/#from-packages
#
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.dev/assets-and-images/#resolution-aware
# To add custom fonts to your plugin package, add a fonts section here,
# in this "flutter" section. Each entry in this list should have a
# "family" key with the font family name, and a "fonts" key with a
# list giving the asset and other descriptors for the font. For
# example:
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700
#
# For details regarding fonts in packages, see
# https://flutter.dev/custom-fonts/#from-packages
import 'package:flutter/services.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:clx_flutter_message/clx_flutter_message_method_channel.dart';
void main() {
TestWidgetsFlutterBinding.ensureInitialized();
MethodChannelClxFlutterMessage platform = MethodChannelClxFlutterMessage();
const MethodChannel channel = MethodChannel('clx_flutter_message');
setUp(() {
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(
channel,
(MethodCall methodCall) async {
return '42';
},
);
});
tearDown(() {
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(channel, null);
});
test('getPlatformVersion', () async {
expect(await platform.getPlatformVersion(), '42');
});
}
import 'package:flutter_test/flutter_test.dart';
import 'package:clx_flutter_message/clx_flutter_message.dart';
import 'package:clx_flutter_message/clx_flutter_message_platform_interface.dart';
import 'package:clx_flutter_message/clx_flutter_message_method_channel.dart';
import 'package:plugin_platform_interface/plugin_platform_interface.dart';
class MockClxFlutterMessagePlatform
with MockPlatformInterfaceMixin
implements ClxFlutterMessagePlatform {
@override
Future<String?> getPlatformVersion() => Future.value('42');
}
void main() {
final ClxFlutterMessagePlatform initialPlatform = ClxFlutterMessagePlatform.instance;
test('$MethodChannelClxFlutterMessage is the default instance', () {
expect(initialPlatform, isInstanceOf<MethodChannelClxFlutterMessage>());
});
test('getPlatformVersion', () async {
ClxFlutterMessage clxFlutterMessagePlugin = ClxFlutterMessage();
MockClxFlutterMessagePlatform fakePlatform = MockClxFlutterMessagePlatform();
ClxFlutterMessagePlatform.instance = fakePlatform;
expect(await clxFlutterMessagePlugin.getPlatformVersion(), '42');
});
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论