Compare commits
No commits in common. "master" and "dev" have entirely different histories.
|
|
@ -5,11 +5,9 @@
|
||||||
*.swp
|
*.swp
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.atom/
|
.atom/
|
||||||
.build/
|
|
||||||
.buildlog/
|
.buildlog/
|
||||||
.history
|
.history
|
||||||
.svn/
|
.svn/
|
||||||
.swiftpm/
|
|
||||||
migrate_working_dir/
|
migrate_working_dir/
|
||||||
.fvm/
|
.fvm/
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,28 +1,14 @@
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
<!-- 摄像头 -->
|
|
||||||
<uses-permission android:name="android.permission.CAMERA" />
|
<uses-permission android:name="android.permission.CAMERA" />
|
||||||
<!-- 麦克风 -->
|
|
||||||
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||||
<!-- 网络 -->
|
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
<!-- 安装 -->
|
|
||||||
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
|
||||||
<!-- 写权限 -->
|
|
||||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
||||||
<!-- 读权限 -->
|
|
||||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
||||||
<!-- 屏幕常亮 -->
|
|
||||||
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
|
||||||
<!-- 高android版本读写权限 -->
|
|
||||||
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
|
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:label="智汇享"
|
android:label="智汇享"
|
||||||
android:name="${applicationName}"
|
android:name="${applicationName}"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:enableOnBackInvokedCallback="true"
|
android:enableOnBackInvokedCallback="true">
|
||||||
android:usesCleartextTraffic="true">
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
|
|
@ -50,19 +36,47 @@
|
||||||
<meta-data
|
<meta-data
|
||||||
android:name="flutterEmbedding"
|
android:name="flutterEmbedding"
|
||||||
android:value="2" />
|
android:value="2" />
|
||||||
|
|
||||||
<provider
|
|
||||||
android:name="androidx.core.content.FileProvider"
|
|
||||||
android:authorities="${applicationId}.fileprovider"
|
|
||||||
android:exported="false"
|
|
||||||
android:grantUriPermissions="true">
|
|
||||||
<meta-data
|
|
||||||
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
||||||
android:resource="@xml/file_path" />
|
|
||||||
</provider>
|
|
||||||
<!-- ${applicationId}会被替换为你的应用ID -->
|
|
||||||
<!-- android:resource="@xml/file_paths"指定了存放共享文件路径的资源文件。 -->
|
|
||||||
</application>
|
</application>
|
||||||
|
<!-- 访问电话状态 -->
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.READ_PHONE_STATE"/>
|
||||||
|
<!-- 允许全部网络访问 -->
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.INTERNET"/>
|
||||||
|
<!-- 获取网络信息状态 -->
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
||||||
|
<!-- 获取当前WiFi接入的状态以及WLAN热点的信息 -->
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.ACCESS_WIFI_STATE"/>
|
||||||
|
<!-- 获取当前设备存储权限 -->
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.ACTION_MANAGE_UNKNOWN_APP_SOURCES"/>
|
||||||
|
<!-- 这个权限用于app安装 -->
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
|
||||||
|
<!-- 屏幕常亮权限 -->
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.WAKE_LOCK"/>
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.CAMERA"/>
|
||||||
|
<!-- Permissions options for the `access notification policy` group -->
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.ACCESS_NOTIFICATION_POLICY"/>
|
||||||
|
<!-- Permissions options for the `notification` group -->
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.POST_NOTIFICATIONS"/>
|
||||||
|
<!-- Required to query activities that can process text, see:
|
||||||
|
https://developer.android.com/training/package-visibility and
|
||||||
|
https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
|
||||||
|
|
||||||
|
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
|
||||||
<queries>
|
<queries>
|
||||||
<intent>
|
<intent>
|
||||||
<action android:name="android.intent.action.PROCESS_TEXT"/>
|
<action android:name="android.intent.action.PROCESS_TEXT"/>
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- Modify this file to customize your launch splash screen -->
|
<!-- Modify this file to customize your launch splash screen -->
|
||||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<!--<item android:drawable="?android:colorBackground"/ >-->
|
<item android:drawable="?android:colorBackground" />
|
||||||
|
|
||||||
<!-- You can insert your own image assets here -->
|
<!-- You can insert your own image assets here -->
|
||||||
<item>
|
<!-- <item>
|
||||||
<bitmap
|
<bitmap
|
||||||
android:gravity="fill"
|
android:gravity="center"
|
||||||
android:src="@mipmap/launch_image" />
|
android:src="@mipmap/launch_image" />
|
||||||
</item>
|
</item> -->
|
||||||
</layer-list>
|
</layer-list>
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- Modify this file to customize your launch splash screen -->
|
<!-- Modify this file to customize your launch splash screen -->
|
||||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<!--<item android:drawable="@android:color/white"/ >-->
|
<item android:drawable="@android:color/white" />
|
||||||
|
|
||||||
<!-- You can insert your own image assets here -->
|
<!-- You can insert your own image assets here -->
|
||||||
<item>
|
<!-- <item>
|
||||||
<bitmap
|
<bitmap
|
||||||
android:gravity="fill"
|
android:gravity="center"
|
||||||
android:src="@mipmap/launch_image" />
|
android:src="@mipmap/launch_image" />
|
||||||
</item>
|
</item> -->
|
||||||
</layer-list>
|
</layer-list>
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 544 B |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 442 B |
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 721 B |
|
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 976 KiB |
|
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 1.4 KiB |
|
|
@ -1,11 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<paths>
|
|
||||||
<root-path name="root" path="" />
|
|
||||||
<files-path name="files" path="" />
|
|
||||||
<cache-path name="cache" path="" />
|
|
||||||
<external-path name="external" path="" />
|
|
||||||
<external-files-path name="external_files" path="" />
|
|
||||||
<external-cache-path name="external_cache" path="" />
|
|
||||||
</paths>
|
|
||||||
</resources>
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
|
org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
|
||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
android.enableJetifier=true
|
android.enableJetifier=true
|
||||||
android.suppressUnsupportedCompileSdk=34
|
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 77 KiB |
|
Before Width: | Height: | Size: 141 KiB |
|
Before Width: | Height: | Size: 27 KiB |
|
|
@ -7,7 +7,6 @@ import UIKit
|
||||||
_ application: UIApplication,
|
_ application: UIApplication,
|
||||||
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
||||||
) -> Bool {
|
) -> Bool {
|
||||||
Thread.sleep(forTimeInterval: 3) // 加入此行代码,便可延迟2秒关闭启动页
|
|
||||||
GeneratedPluginRegistrant.register(with: self)
|
GeneratedPluginRegistrant.register(with: self)
|
||||||
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,153 +2,115 @@
|
||||||
"images": [
|
"images": [
|
||||||
{
|
{
|
||||||
"size": "20x20",
|
"size": "20x20",
|
||||||
"idiom": "iphone",
|
"idiom": "universal",
|
||||||
"filename": "icon-20@2x.png",
|
"filename": "icon-20@2x.png",
|
||||||
"scale": "2x"
|
"scale": "2x",
|
||||||
|
"platform": "ios"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size": "20x20",
|
"size": "20x20",
|
||||||
"idiom": "iphone",
|
"idiom": "universal",
|
||||||
"filename": "icon-20@3x.png",
|
"filename": "icon-20@3x.png",
|
||||||
"scale": "3x"
|
"scale": "3x",
|
||||||
|
"platform": "ios"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size": "29x29",
|
"size": "29x29",
|
||||||
"idiom": "iphone",
|
"idiom": "universal",
|
||||||
"filename": "icon-29.png",
|
|
||||||
"scale": "1x"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"size": "29x29",
|
|
||||||
"idiom": "iphone",
|
|
||||||
"filename": "icon-29@2x.png",
|
"filename": "icon-29@2x.png",
|
||||||
"scale": "2x"
|
"scale": "2x",
|
||||||
|
"platform": "ios"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size": "29x29",
|
"size": "29x29",
|
||||||
"idiom": "iphone",
|
"idiom": "universal",
|
||||||
"filename": "icon-29@3x.png",
|
"filename": "icon-29@3x.png",
|
||||||
"scale": "3x"
|
"scale": "3x",
|
||||||
|
"platform": "ios"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"size": "38x38",
|
||||||
|
"idiom": "universal",
|
||||||
|
"filename": "icon-38@2x.png",
|
||||||
|
"scale": "2x",
|
||||||
|
"platform": "ios"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"size": "38x38",
|
||||||
|
"idiom": "universal",
|
||||||
|
"filename": "icon-38@3x.png",
|
||||||
|
"scale": "3x",
|
||||||
|
"platform": "ios"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size": "40x40",
|
"size": "40x40",
|
||||||
"idiom": "iphone",
|
"idiom": "universal",
|
||||||
"filename": "icon-40@2x.png",
|
"filename": "icon-40@2x.png",
|
||||||
"scale": "2x"
|
"scale": "2x",
|
||||||
|
"platform": "ios"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size": "40x40",
|
"size": "40x40",
|
||||||
"idiom": "iphone",
|
"idiom": "universal",
|
||||||
"filename": "icon-40@3x.png",
|
"filename": "icon-40@3x.png",
|
||||||
"scale": "3x"
|
"scale": "3x",
|
||||||
},
|
"platform": "ios"
|
||||||
{
|
|
||||||
"size": "57x57",
|
|
||||||
"idiom": "iphone",
|
|
||||||
"filename": "icon-57.png",
|
|
||||||
"scale": "1x"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"size": "57x57",
|
|
||||||
"idiom": "iphone",
|
|
||||||
"filename": "icon-57@2x.png",
|
|
||||||
"scale": "2x"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size": "60x60",
|
"size": "60x60",
|
||||||
"idiom": "iphone",
|
"idiom": "universal",
|
||||||
"filename": "icon-60@2x.png",
|
"filename": "icon-60@2x.png",
|
||||||
"scale": "2x"
|
"scale": "2x",
|
||||||
|
"platform": "ios"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size": "60x60",
|
"size": "60x60",
|
||||||
"idiom": "iphone",
|
"idiom": "universal",
|
||||||
"filename": "icon-60@3x.png",
|
"filename": "icon-60@3x.png",
|
||||||
"scale": "3x"
|
"scale": "3x",
|
||||||
|
"platform": "ios"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size": "20x20",
|
"size": "64x64",
|
||||||
"idiom": "ipad",
|
"idiom": "universal",
|
||||||
"filename": "icon-20-ipad.png",
|
"filename": "icon-64@2x.png",
|
||||||
"scale": "1x"
|
"scale": "2x",
|
||||||
|
"platform": "ios"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size": "20x20",
|
"size": "64x64",
|
||||||
"idiom": "ipad",
|
"idiom": "universal",
|
||||||
"filename": "icon-20@2x-ipad.png",
|
"filename": "icon-64@3x.png",
|
||||||
"scale": "2x"
|
"scale": "3x",
|
||||||
|
"platform": "ios"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size": "29x29",
|
"size": "68x68",
|
||||||
"idiom": "ipad",
|
"idiom": "universal",
|
||||||
"filename": "icon-29-ipad.png",
|
"filename": "icon-68@2x.png",
|
||||||
"scale": "1x"
|
"scale": "2x",
|
||||||
},
|
"platform": "ios"
|
||||||
{
|
|
||||||
"size": "29x29",
|
|
||||||
"idiom": "ipad",
|
|
||||||
"filename": "icon-29@2x-ipad.png",
|
|
||||||
"scale": "2x"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"size": "40x40",
|
|
||||||
"idiom": "ipad",
|
|
||||||
"filename": "icon-40.png",
|
|
||||||
"scale": "1x"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"size": "40x40",
|
|
||||||
"idiom": "ipad",
|
|
||||||
"filename": "icon-40@2x.png",
|
|
||||||
"scale": "2x"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"size": "50x50",
|
|
||||||
"idiom": "ipad",
|
|
||||||
"filename": "icon-50.png",
|
|
||||||
"scale": "1x"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"size": "50x50",
|
|
||||||
"idiom": "ipad",
|
|
||||||
"filename": "icon-50@2x.png",
|
|
||||||
"scale": "2x"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"size": "72x72",
|
|
||||||
"idiom": "ipad",
|
|
||||||
"filename": "icon-72.png",
|
|
||||||
"scale": "1x"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"size": "72x72",
|
|
||||||
"idiom": "ipad",
|
|
||||||
"filename": "icon-72@2x.png",
|
|
||||||
"scale": "2x"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size": "76x76",
|
"size": "76x76",
|
||||||
"idiom": "ipad",
|
"idiom": "universal",
|
||||||
"filename": "icon-76.png",
|
|
||||||
"scale": "1x"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"size": "76x76",
|
|
||||||
"idiom": "ipad",
|
|
||||||
"filename": "icon-76@2x.png",
|
"filename": "icon-76@2x.png",
|
||||||
"scale": "2x"
|
"scale": "2x",
|
||||||
|
"platform": "ios"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size": "83.5x83.5",
|
"size": "83.5x83.5",
|
||||||
"idiom": "ipad",
|
"idiom": "universal",
|
||||||
"filename": "icon-83.5@2x.png",
|
"filename": "icon-83.5@2x.png",
|
||||||
"scale": "2x"
|
"scale": "2x",
|
||||||
|
"platform": "ios"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"size": "1024x1024",
|
"size": "1024x1024",
|
||||||
"idiom": "ios-marketing",
|
"idiom": "universal",
|
||||||
"filename": "icon-1024.png",
|
"filename": "icon-1024.png",
|
||||||
"scale": "1x"
|
"scale": "1x",
|
||||||
|
"platform": "ios"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"info": {
|
"info": {
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 161 KiB After Width: | Height: | Size: 160 KiB |
|
Before Width: | Height: | Size: 920 B |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 8.1 KiB |
|
After Width: | Height: | Size: 4.7 KiB |
|
Before Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 5.1 KiB |
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 6.6 KiB |
|
After Width: | Height: | Size: 68 B |
|
After Width: | Height: | Size: 68 B |
|
After Width: | Height: | Size: 68 B |
|
|
@ -1,10 +1,8 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="23504" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
<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">
|
||||||
<device id="retina6_12" orientation="portrait" appearance="light"/>
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<deployment identifier="iOS"/>
|
<deployment identifier="iOS"/>
|
||||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="23506"/>
|
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="12089"/>
|
||||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<scenes>
|
<scenes>
|
||||||
<!--View Controller-->
|
<!--View Controller-->
|
||||||
|
|
@ -16,11 +14,9 @@
|
||||||
<viewControllerLayoutGuide type="bottom" id="xbc-2k-c8Z"/>
|
<viewControllerLayoutGuide type="bottom" id="xbc-2k-c8Z"/>
|
||||||
</layoutGuides>
|
</layoutGuides>
|
||||||
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
|
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
|
||||||
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||||
<subviews>
|
<subviews>
|
||||||
<imageView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" misplaced="YES" image="LaunchImage" translatesAutoresizingMaskIntoConstraints="NO" id="YRO-k0-Ey4">
|
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" image="LaunchImage" translatesAutoresizingMaskIntoConstraints="NO" id="YRO-k0-Ey4">
|
||||||
<rect key="frame" x="2" y="93" width="375" height="759"/>
|
|
||||||
</imageView>
|
</imageView>
|
||||||
</subviews>
|
</subviews>
|
||||||
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||||
|
|
@ -32,10 +28,10 @@
|
||||||
</viewController>
|
</viewController>
|
||||||
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
||||||
</objects>
|
</objects>
|
||||||
<point key="canvasLocation" x="121.37404580152672" y="185.91549295774649"/>
|
<point key="canvasLocation" x="53" y="375"/>
|
||||||
</scene>
|
</scene>
|
||||||
</scenes>
|
</scenes>
|
||||||
<resources>
|
<resources>
|
||||||
<image name="LaunchImage" width="375" height="667"/>
|
<image name="LaunchImage" width="168" height="185"/>
|
||||||
</resources>
|
</resources>
|
||||||
</document>
|
</document>
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="23504" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="BYZ-38-t0r">
|
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="32700.99.1234" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="BYZ-38-t0r">
|
||||||
<device id="retina6_12" orientation="portrait" appearance="light"/>
|
<device id="retina6_12" orientation="portrait" appearance="light"/>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<deployment identifier="iOS"/>
|
<deployment identifier="iOS"/>
|
||||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="23506"/>
|
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="22685"/>
|
||||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<scenes>
|
<scenes>
|
||||||
|
|
@ -18,21 +18,12 @@
|
||||||
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
|
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
|
||||||
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||||
<subviews>
|
|
||||||
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="LaunchImage" translatesAutoresizingMaskIntoConstraints="NO" id="0Yj-sA-xJG">
|
|
||||||
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
|
||||||
</imageView>
|
|
||||||
</subviews>
|
|
||||||
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||||
</view>
|
</view>
|
||||||
</viewController>
|
</viewController>
|
||||||
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
|
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
|
||||||
</objects>
|
</objects>
|
||||||
<point key="canvasLocation" x="8.3969465648854964" y="-76.056338028169023"/>
|
<point key="canvasLocation" x="9" y="-76"/>
|
||||||
</scene>
|
</scene>
|
||||||
</scenes>
|
</scenes>
|
||||||
<resources>
|
|
||||||
<image name="LaunchImage" width="375" height="667"/>
|
|
||||||
</resources>
|
|
||||||
</document>
|
</document>
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
<key>UIApplicationSupportsIndirectInputEvents</key>
|
<key>UIApplicationSupportsIndirectInputEvents</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>UILaunchStoryboardName</key>
|
<key>UILaunchStoryboardName</key>
|
||||||
<string>Main.storyboard</string>
|
<string></string>
|
||||||
<key>UIMainStoryboardFile</key>
|
<key>UIMainStoryboardFile</key>
|
||||||
<string>Main</string>
|
<string>Main</string>
|
||||||
<key>UIRequiresFullScreen</key>
|
<key>UIRequiresFullScreen</key>
|
||||||
|
|
|
||||||
|
|
@ -103,10 +103,4 @@ abstract class RetrofitClient {
|
||||||
@Query("enableCamera") bool enableCamera,
|
@Query("enableCamera") bool enableCamera,
|
||||||
@Query("uid") String uid,
|
@Query("uid") String uid,
|
||||||
);
|
);
|
||||||
|
|
||||||
/// 刷新登录Token
|
|
||||||
@POST("/auth/refresh")
|
|
||||||
Future<BaseStructureResult<UserInfoEntity>> refreshToken(
|
|
||||||
@Query("refreshToken") String refreshToken,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ class RequestConfig {
|
||||||
// static const _devBaseUrl = "https://zyapitest.23544.com:16440"; // 开发
|
// static const _devBaseUrl = "https://zyapitest.23544.com:16440"; // 开发
|
||||||
static const _devBaseUrl = "http://192.168.2.9:5192"; // 开发
|
static const _devBaseUrl = "http://192.168.2.9:5192"; // 开发
|
||||||
// static const _proBaseUrl = "http://192.168.2.119:1091"; // 生产
|
// static const _proBaseUrl = "http://192.168.2.119:1091"; // 生产
|
||||||
static const _proBaseUrl = "http://192.168.2.9:5192"; // 生产
|
static const _proBaseUrl = "https://zyapi.23544.com/ipadapi"; // 生产
|
||||||
static const imgUrl = 'https://dpc-job-oss.23544.com/';
|
static const imgUrl = 'https://dpc-job-oss.23544.com/';
|
||||||
|
|
||||||
static RequestConfig? _instance;
|
static RequestConfig? _instance;
|
||||||
|
|
|
||||||
|
|
@ -1,34 +0,0 @@
|
||||||
import 'package:json_annotation/json_annotation.dart';
|
|
||||||
|
|
||||||
part 'app_updata_info_entity.g.dart';
|
|
||||||
|
|
||||||
@JsonSerializable(checked: true)
|
|
||||||
class AppUpdataInfoEntity extends Object{
|
|
||||||
|
|
||||||
@JsonKey(name: 'versionCode')
|
|
||||||
int versionCode;
|
|
||||||
|
|
||||||
@JsonKey(name: 'versionName')
|
|
||||||
String versionName;
|
|
||||||
|
|
||||||
@JsonKey(name: 'updateType')
|
|
||||||
int updateType;
|
|
||||||
|
|
||||||
@JsonKey(name: 'versionDescribe')
|
|
||||||
String versionDescribe;
|
|
||||||
|
|
||||||
@JsonKey(name: 'androidurl')
|
|
||||||
String androidurl;
|
|
||||||
|
|
||||||
@JsonKey(name: 'appStoreUrl')
|
|
||||||
String appStoreUrl;
|
|
||||||
|
|
||||||
@JsonKey(name: 'apkSavePath')
|
|
||||||
String apkSavePath;
|
|
||||||
|
|
||||||
AppUpdataInfoEntity(this.versionCode,this.versionName,this.updateType,this.versionDescribe,this.androidurl,this.appStoreUrl,this.apkSavePath);
|
|
||||||
|
|
||||||
factory AppUpdataInfoEntity.fromJson(Map<String, dynamic> srcJson) => _$AppUpdataInfoEntityFromJson(srcJson);
|
|
||||||
|
|
||||||
Map<String, dynamic> toJson() => _$AppUpdataInfoEntityToJson(this);
|
|
||||||
}
|
|
||||||
|
|
@ -6,8 +6,6 @@ import 'package:dio/dio.dart';
|
||||||
import 'package:wgshare/common/api/retrofit_client.dart';
|
import 'package:wgshare/common/api/retrofit_client.dart';
|
||||||
import 'package:wgshare/common/config/request_config.dart';
|
import 'package:wgshare/common/config/request_config.dart';
|
||||||
import 'package:wgshare/common/store/user_store.dart';
|
import 'package:wgshare/common/store/user_store.dart';
|
||||||
import 'package:wgshare/utils/anti_shake_throttling.dart';
|
|
||||||
import 'package:wgshare/utils/routeUtil.dart';
|
|
||||||
import 'package:wgshare/utils/storage.dart';
|
import 'package:wgshare/utils/storage.dart';
|
||||||
import 'package:wgshare/utils/toast_utils.dart';
|
import 'package:wgshare/utils/toast_utils.dart';
|
||||||
import 'package:wgshare/routes/app_routes.dart';
|
import 'package:wgshare/routes/app_routes.dart';
|
||||||
|
|
@ -113,9 +111,9 @@ class ResponseHandle extends Interceptor {
|
||||||
((data['code'] != null && (data['code'] == 401 || data['code'] == '401')) ||
|
((data['code'] != null && (data['code'] == 401 || data['code'] == '401')) ||
|
||||||
(data['Code'] != null && (data['Code'] == 401 || data['Code'] == '401')));
|
(data['Code'] != null && (data['Code'] == 401 || data['Code'] == '401')));
|
||||||
|
|
||||||
if ((statusCode == 401 || flag) && RouteUtil.getRoute() != Routes.loginPage) {
|
if (statusCode == 401 || flag) {
|
||||||
easyThrottle("toLogin",(){
|
Future.delayed(const Duration(seconds: 2), () {
|
||||||
UserStore.to.erase();
|
StorageService.to.erase();
|
||||||
getx.Get.offAllNamed(Routes.loginPage);
|
getx.Get.offAllNamed(Routes.loginPage);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
@ -165,12 +163,12 @@ class TheError extends Interceptor {
|
||||||
switch (statusCode) {
|
switch (statusCode) {
|
||||||
case 401:
|
case 401:
|
||||||
message = '用户登录失效,请重新登录';
|
message = '用户登录失效,请重新登录';
|
||||||
if(RouteUtil.getRoute() != Routes.loginPage){
|
|
||||||
easyThrottle("toLogin",(){
|
Future.delayed(const Duration(seconds: 2), () {
|
||||||
UserStore.to.erase();
|
// UserStore.to.erase();
|
||||||
|
StorageService.to.erase();
|
||||||
getx.Get.offAllNamed(Routes.loginPage);
|
getx.Get.offAllNamed(Routes.loginPage);
|
||||||
});
|
});
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case 404:
|
case 404:
|
||||||
message = '无效地址';
|
message = '无效地址';
|
||||||
|
|
|
||||||
|
|
@ -2,14 +2,10 @@
|
||||||
|
|
||||||
enum AppStorageKey {
|
enum AppStorageKey {
|
||||||
token(value: 'TOKEN', label: "登录用户的token"),
|
token(value: 'TOKEN', label: "登录用户的token"),
|
||||||
refreshToken(value: 'REFRESHTOKEN', label: "刷新用的token"),
|
|
||||||
userInfo(value: 'USERINFO', label: "登录用户的基本信息"),
|
userInfo(value: 'USERINFO', label: "登录用户的基本信息"),
|
||||||
account(value: 'ACCOUNT', label: "用户名"),
|
account(value: 'ACCOUNT', label: "用户名"),
|
||||||
pwd(value: 'PWD', label: "密码"),
|
pwd(value: 'PWD', label: "密码"),
|
||||||
loginType(value: 'LOGINTYPE', label: "登录类型"),
|
loginType(value: 'LOGINTYPE', label: "登录类型");
|
||||||
appUpDataInfo(value: 'APPUPDATAINFO', label: "app更新信息"),
|
|
||||||
isRefuseHomeCheckPermission(value: 'ISREFUSEHOMECHECKPERMISSION', label: "是否拒绝会议列表页请求文件访问权限"),
|
|
||||||
skipUpVersion(value: 'SKIPUPVERSION', label: "跳过此版本更新的版本号"),;
|
|
||||||
|
|
||||||
final String label;
|
final String label;
|
||||||
final String value;
|
final String value;
|
||||||
|
|
|
||||||
|
|
@ -1,58 +0,0 @@
|
||||||
import 'package:get/get.dart';
|
|
||||||
import 'package:wgshare/common/mixins/request_tool_mixin.dart';
|
|
||||||
import 'package:wgshare/common/store/app_storage_key.dart';
|
|
||||||
import 'package:wgshare/utils/storage.dart';
|
|
||||||
|
|
||||||
import '../models/app_updata_info_entity.dart';
|
|
||||||
|
|
||||||
class BusinessStore extends GetxController with RequestToolMixin {
|
|
||||||
static BusinessStore get to => Get.find();
|
|
||||||
|
|
||||||
/// app版本更新信息
|
|
||||||
Rx<AppUpdataInfoEntity?> appUpdataInfoEntity = Rx(null);
|
|
||||||
|
|
||||||
/// 是否拒绝会议列表页请求文件访问权限
|
|
||||||
bool? isRefuseHomeCheckPermission = false;
|
|
||||||
|
|
||||||
/// 跳过此版本更新的版本号
|
|
||||||
int? skipUpVersion = 0;
|
|
||||||
|
|
||||||
BusinessStore init() {
|
|
||||||
isRefuseHomeCheckPermission = StorageService.to.read(AppStorageKey.isRefuseHomeCheckPermission.value);
|
|
||||||
skipUpVersion = StorageService.to.read(AppStorageKey.skipUpVersion.value);
|
|
||||||
try {
|
|
||||||
var appUpdataInfo = StorageService.to.read(AppStorageKey.appUpDataInfo.value);
|
|
||||||
if (appUpdataInfo != null) {
|
|
||||||
appUpdataInfoEntity.value = AppUpdataInfoEntity.fromJson(appUpdataInfo);
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
StorageService.to.remove(AppStorageKey.userInfo.value);
|
|
||||||
appUpdataInfoEntity.value = null;
|
|
||||||
}
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 缓存app版本更新信息
|
|
||||||
void setAppUpdataInfo(AppUpdataInfoEntity info) {
|
|
||||||
appUpdataInfoEntity.value = info;
|
|
||||||
StorageService.to.write(AppStorageKey.appUpDataInfo.value, info);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 缓存是否拒绝会议列表页请求文件访问权限状态
|
|
||||||
void setIsRefuseHomeCheckPermission(bool type) {
|
|
||||||
isRefuseHomeCheckPermission = type;
|
|
||||||
StorageService.to.write(AppStorageKey.isRefuseHomeCheckPermission.value, type);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 跳过此版本更新的版本号
|
|
||||||
void setSkipUpVersion(int code) {
|
|
||||||
skipUpVersion = code;
|
|
||||||
StorageService.to.write(AppStorageKey.skipUpVersion.value, code);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 清空缓存app版本更新信息
|
|
||||||
void erase() {
|
|
||||||
appUpdataInfoEntity.value = null;
|
|
||||||
StorageService.to.write(AppStorageKey.appUpDataInfo.value, null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -14,9 +14,6 @@ class UserStore extends GetxController with RequestToolMixin {
|
||||||
/// 是否登录
|
/// 是否登录
|
||||||
String? token;
|
String? token;
|
||||||
|
|
||||||
/// 刷新用的token
|
|
||||||
String? refreshToken;
|
|
||||||
|
|
||||||
/// 登录类型
|
/// 登录类型
|
||||||
String? loginType;
|
String? loginType;
|
||||||
|
|
||||||
|
|
@ -26,7 +23,6 @@ class UserStore extends GetxController with RequestToolMixin {
|
||||||
UserStore init() {
|
UserStore init() {
|
||||||
loginType = StorageService.to.read(AppStorageKey.loginType.value);
|
loginType = StorageService.to.read(AppStorageKey.loginType.value);
|
||||||
token = StorageService.to.read(AppStorageKey.token.value);
|
token = StorageService.to.read(AppStorageKey.token.value);
|
||||||
refreshToken = StorageService.to.read(AppStorageKey.refreshToken.value);
|
|
||||||
try {
|
try {
|
||||||
var userDetail = StorageService.to.read(AppStorageKey.userInfo.value);
|
var userDetail = StorageService.to.read(AppStorageKey.userInfo.value);
|
||||||
if (userDetail != null) {
|
if (userDetail != null) {
|
||||||
|
|
@ -49,12 +45,6 @@ class UserStore extends GetxController with RequestToolMixin {
|
||||||
StorageService.to.write(AppStorageKey.token.value, token);
|
StorageService.to.write(AppStorageKey.token.value, token);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 保存refreshToken
|
|
||||||
void setRefreshToken(String refreshToken) {
|
|
||||||
this.refreshToken = refreshToken;
|
|
||||||
StorageService.to.write(AppStorageKey.refreshToken.value, refreshToken);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 保存登录类型
|
/// 保存登录类型
|
||||||
void setLoginType(String loginType) {
|
void setLoginType(String loginType) {
|
||||||
this.loginType = loginType;
|
this.loginType = loginType;
|
||||||
|
|
@ -71,14 +61,9 @@ class UserStore extends GetxController with RequestToolMixin {
|
||||||
void erase() {
|
void erase() {
|
||||||
userInfoEntity.value = null;
|
userInfoEntity.value = null;
|
||||||
token = null;
|
token = null;
|
||||||
refreshToken = null;
|
|
||||||
loginType = null;
|
loginType = null;
|
||||||
|
|
||||||
StorageService.to.write(AppStorageKey.userInfo.value, null);
|
StorageService.to.erase();
|
||||||
StorageService.to.write(AppStorageKey.token.value, null);
|
|
||||||
StorageService.to.write(AppStorageKey.refreshToken.value, null);
|
|
||||||
StorageService.to.write(AppStorageKey.loginType.value, null);
|
|
||||||
// StorageService.to.erase();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 用户信息更新
|
// 用户信息更新
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,3 @@
|
||||||
import 'dart:io';
|
|
||||||
|
|
||||||
import 'package:al_downloader/al_downloader.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_easyloading/flutter_easyloading.dart';
|
import 'package:flutter_easyloading/flutter_easyloading.dart';
|
||||||
import 'package:flutter_localizations/flutter_localizations.dart';
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
||||||
|
|
@ -15,7 +12,6 @@ import 'package:wgshare/utils/utils.dart';
|
||||||
|
|
||||||
import 'common/config/app_config.dart';
|
import 'common/config/app_config.dart';
|
||||||
import 'common/config/colorUtils.dart';
|
import 'common/config/colorUtils.dart';
|
||||||
import 'common/store/business_store.dart';
|
|
||||||
import 'routes/app_pages.dart';
|
import 'routes/app_pages.dart';
|
||||||
import 'routes/app_routes.dart';
|
import 'routes/app_routes.dart';
|
||||||
|
|
||||||
|
|
@ -30,12 +26,6 @@ void main() async {
|
||||||
|
|
||||||
/// 初始化UserStore
|
/// 初始化UserStore
|
||||||
Get.put<UserStore>(UserStore().init());
|
Get.put<UserStore>(UserStore().init());
|
||||||
Get.put<BusinessStore>(BusinessStore().init());
|
|
||||||
|
|
||||||
/// 初始化后台下载
|
|
||||||
if(Platform.isAndroid){
|
|
||||||
ALDownloader.initialize();
|
|
||||||
}
|
|
||||||
|
|
||||||
runApp(const MyApp());
|
runApp(const MyApp());
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,20 +1,12 @@
|
||||||
import 'package:al_downloader/al_downloader.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:path_provider/path_provider.dart';
|
import 'package:signalr_core/signalr_core.dart';
|
||||||
import 'package:permission_handler/permission_handler.dart';
|
|
||||||
import 'package:wgshare/common/models/common/base_structure_result.dart';
|
import 'package:wgshare/common/models/common/base_structure_result.dart';
|
||||||
import 'package:wgshare/common/mixins/request_tool_mixin.dart';
|
import 'package:wgshare/common/mixins/request_tool_mixin.dart';
|
||||||
import 'package:wgshare/common/store/business_store.dart';
|
|
||||||
import 'package:wgshare/common/store/user_store.dart';
|
import 'package:wgshare/common/store/user_store.dart';
|
||||||
import 'package:wgshare/utils/storage.dart';
|
|
||||||
|
|
||||||
import '../../common/models/meeting_room_item.dart';
|
import '../../common/models/meeting_room_item.dart';
|
||||||
import '../../routes/app_routes.dart';
|
|
||||||
import '../../utils/permission/PermissionService.dart';
|
|
||||||
import '../../utils/toast_utils.dart';
|
import '../../utils/toast_utils.dart';
|
||||||
import '../../view/public_dialog.dart';
|
|
||||||
import '../../view/upgrade/loadJson/hide_load_network_json.dart';
|
|
||||||
import 'home_state.dart';
|
import 'home_state.dart';
|
||||||
|
|
||||||
class HomeLogic extends GetxController with RequestToolMixin {
|
class HomeLogic extends GetxController with RequestToolMixin {
|
||||||
|
|
@ -24,38 +16,7 @@ class HomeLogic extends GetxController with RequestToolMixin {
|
||||||
@override
|
@override
|
||||||
void onInit() {
|
void onInit() {
|
||||||
super.onInit();
|
super.onInit();
|
||||||
/// 检查更新(后台)
|
doHttpGetMeetingRoomList(state.pageIndex.value,state.pageSize.value);
|
||||||
HideCheckVersion hideCheckVersion = HideCheckVersion();
|
|
||||||
hideCheckVersion.doHttpHideCheckVersion();
|
|
||||||
/// 权限
|
|
||||||
/*PermissionService.checkPermission(permissionList: [Permission.manageExternalStorage]).then((value){
|
|
||||||
if(value == true){
|
|
||||||
hideCheckVersion.doHttpHideCheckVersion();
|
|
||||||
}else{
|
|
||||||
if(null == BusinessStore.to.isRefuseHomeCheckPermission || BusinessStore.to.isRefuseHomeCheckPermission == false){
|
|
||||||
publicDialog(Get.context!,
|
|
||||||
hideCancelBtn: true,
|
|
||||||
title: '请求权限说明',
|
|
||||||
describe:
|
|
||||||
'APP需要获取您的文件访问权限,用以确保新版本下载后可以正常安装。',
|
|
||||||
leftBtnStr: '拒绝',
|
|
||||||
rightBtnStr: '同意',
|
|
||||||
leftBtnCallback: () {
|
|
||||||
BusinessStore.to.setIsRefuseHomeCheckPermission(true);
|
|
||||||
}, rightBtnCallback: () {
|
|
||||||
PermissionService.requestStoragePermissions().then((value){
|
|
||||||
if(value == true){
|
|
||||||
hideCheckVersion.doHttpHideCheckVersion();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}else{
|
|
||||||
hideCheckVersion.doHttpHideCheckVersion();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});*/
|
|
||||||
|
|
||||||
doHttpGetMeetingRoomList(state.pageIndex.value, state.pageSize.value);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|
@ -67,19 +28,18 @@ class HomeLogic extends GetxController with RequestToolMixin {
|
||||||
/// 获取会议列表
|
/// 获取会议列表
|
||||||
Future<void> doHttpGetMeetingRoomList(int pageIndex, int pageSize) async {
|
Future<void> doHttpGetMeetingRoomList(int pageIndex, int pageSize) async {
|
||||||
debugPrint("wgs输出===:token:${UserStore.to.token}");
|
debugPrint("wgs输出===:token:${UserStore.to.token}");
|
||||||
BaseStructureResult<MeetingRoomItem> res = await getClient()
|
BaseStructureResult<MeetingRoomItem> res = await getClient().getMeetingRoomList(pageIndex,pageSize);
|
||||||
.getMeetingRoomList(pageIndex, pageSize);
|
if(null != res.data){
|
||||||
if (null != res.data) {
|
if(state.pageIndex == 1){
|
||||||
if (state.pageIndex == 1) {
|
|
||||||
state.meetingRooms.value = res.data!.items;
|
state.meetingRooms.value = res.data!.items;
|
||||||
state.totalPage.value = res.data!.totalPage;
|
state.totalPage.value = res.data!.totalPage;
|
||||||
state.total.value = res.data!.total;
|
state.total.value = res.data!.total;
|
||||||
state.refreshController.refreshCompleted(resetFooterState: true);
|
state.refreshController.refreshCompleted(resetFooterState: true);
|
||||||
} else {
|
}else{
|
||||||
if (state.pageIndex.value < state.totalPage.value) {
|
if(state.pageIndex.value < state.totalPage.value){
|
||||||
state.meetingRooms.value.addAll(res.data!.items);
|
state.meetingRooms.value.addAll(res.data!.items);
|
||||||
state.refreshController.loadComplete();
|
state.refreshController.loadComplete();
|
||||||
} else {
|
}else{
|
||||||
state.refreshController.loadNoData();
|
state.refreshController.loadNoData();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -87,15 +47,15 @@ class HomeLogic extends GetxController with RequestToolMixin {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 下拉刷新
|
/// 下拉刷新
|
||||||
void onRefresh() {
|
void onRefresh(){
|
||||||
state.pageIndex.value = 1;
|
state.pageIndex.value = 1;
|
||||||
doHttpGetMeetingRoomList(state.pageIndex.value, state.pageSize.value);
|
doHttpGetMeetingRoomList(state.pageIndex.value,state.pageSize.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 上滑加载更多
|
/// 上滑加载更多
|
||||||
void onLoading() {
|
void onLoading(){
|
||||||
state.pageIndex.value += 1;
|
state.pageIndex.value += 1;
|
||||||
doHttpGetMeetingRoomList(state.pageIndex.value, state.pageSize.value);
|
doHttpGetMeetingRoomList(state.pageIndex.value,state.pageSize.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 返回键退出
|
/// 返回键退出
|
||||||
|
|
@ -103,8 +63,7 @@ class HomeLogic extends GetxController with RequestToolMixin {
|
||||||
DateTime now = DateTime.now();
|
DateTime now = DateTime.now();
|
||||||
// 物理键,两次间隔大于4秒, 退出请求无效
|
// 物理键,两次间隔大于4秒, 退出请求无效
|
||||||
if (state.currentBackPressTime == null ||
|
if (state.currentBackPressTime == null ||
|
||||||
now.difference(state.currentBackPressTime!) >
|
now.difference(state.currentBackPressTime!) > const Duration(seconds: 4)) {
|
||||||
const Duration(seconds: 4)) {
|
|
||||||
state.currentBackPressTime = now;
|
state.currentBackPressTime = now;
|
||||||
ToastUtils.showInfo("再按一次退出");
|
ToastUtils.showInfo("再按一次退出");
|
||||||
return false;
|
return false;
|
||||||
|
|
@ -114,45 +73,5 @@ class HomeLogic extends GetxController with RequestToolMixin {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 进入会议室
|
|
||||||
void gotoMeetingRoom(BuildContext context, int index) {
|
|
||||||
PermissionService.checkPermission(
|
|
||||||
permissionList: [Permission.microphone, Permission.camera]).then((
|
|
||||||
value) {
|
|
||||||
if (value == true) {
|
|
||||||
Get.back();
|
|
||||||
Get.toNamed(Routes.meetingMainPage,
|
|
||||||
arguments: {
|
|
||||||
"roomNumber": state.meetingRooms.value[index].roomNum
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
publicDialog(
|
|
||||||
context,
|
|
||||||
hideCancelBtn: true,
|
|
||||||
title: '请求权限说明',
|
|
||||||
describe: '进入会议室需要获取您的麦克风以及摄像头权限,用以确保能够正常参会发言。',
|
|
||||||
leftBtnStr: '拒绝',
|
|
||||||
rightBtnStr: '同意',
|
|
||||||
leftBtnCallback: () {
|
|
||||||
Get.back();
|
|
||||||
Get.toNamed(Routes.meetingMainPage,
|
|
||||||
arguments: {
|
|
||||||
"roomNumber": state.meetingRooms.value[index].roomNum
|
|
||||||
});
|
|
||||||
},
|
|
||||||
rightBtnCallback: () {
|
|
||||||
PermissionService.requestPermissions().then((value) {
|
|
||||||
if (value == true) {
|
|
||||||
Get.back();
|
|
||||||
Get.toNamed(Routes.meetingMainPage,
|
|
||||||
arguments: {
|
|
||||||
"roomNumber": state.meetingRooms.value[index].roomNum
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:math';
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
|
|
@ -10,7 +9,6 @@ import 'package:wgshare/routes/app_routes.dart';
|
||||||
import 'package:wgshare/utils/cus_behavior.dart';
|
import 'package:wgshare/utils/cus_behavior.dart';
|
||||||
import 'package:wgshare/utils/toast_utils.dart';
|
import 'package:wgshare/utils/toast_utils.dart';
|
||||||
import '../../utils/color_util.dart';
|
import '../../utils/color_util.dart';
|
||||||
import '../../view/upgrade/loadJson/load_network_json.dart';
|
|
||||||
import 'home_logic.dart';
|
import 'home_logic.dart';
|
||||||
|
|
||||||
class HomePage extends StatefulWidget {
|
class HomePage extends StatefulWidget {
|
||||||
|
|
@ -191,7 +189,11 @@ class HomePageState extends State<HomePage> with AutomaticKeepAliveClientMixin {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
logic.gotoMeetingRoom(context, index);
|
Get.toNamed(Routes.meetingMainPage,
|
||||||
|
arguments: {
|
||||||
|
"roomNumber": state.meetingRooms
|
||||||
|
.value[index].roomNum
|
||||||
|
});
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ import 'dart:convert';
|
||||||
import 'package:crypto/crypto.dart';
|
import 'package:crypto/crypto.dart';
|
||||||
import 'package:flutter/cupertino.dart';
|
import 'package:flutter/cupertino.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:permission_handler/permission_handler.dart';
|
|
||||||
import 'package:wgshare/common/mixins/request_tool_mixin.dart';
|
import 'package:wgshare/common/mixins/request_tool_mixin.dart';
|
||||||
import 'package:wgshare/utils/device_info.dart';
|
import 'package:wgshare/utils/device_info.dart';
|
||||||
import 'package:wgshare/utils/toast_utils.dart';
|
import 'package:wgshare/utils/toast_utils.dart';
|
||||||
|
|
@ -11,31 +10,22 @@ import 'package:wgshare/utils/toast_utils.dart';
|
||||||
import '../../common/config/app_config.dart';
|
import '../../common/config/app_config.dart';
|
||||||
import '../../common/models/common/base_structure_result.dart';
|
import '../../common/models/common/base_structure_result.dart';
|
||||||
import '../../common/models/user_info_entity.dart';
|
import '../../common/models/user_info_entity.dart';
|
||||||
|
import '../../common/store/app_storage_key.dart';
|
||||||
import '../../common/store/user_store.dart';
|
import '../../common/store/user_store.dart';
|
||||||
import '../../routes/app_routes.dart';
|
import '../../routes/app_routes.dart';
|
||||||
import '../../utils/permission/PermissionService.dart';
|
import '../../utils/storage.dart';
|
||||||
import '../../view/public_dialog.dart';
|
|
||||||
import '../../view/upgrade/loadJson/hide_load_network_json.dart';
|
|
||||||
import '../../view/upgrade/loadJson/load_network_json.dart';
|
|
||||||
import 'login_state.dart';
|
import 'login_state.dart';
|
||||||
|
|
||||||
class LoginLogic extends GetxController with RequestToolMixin {
|
class LoginLogic extends GetxController with RequestToolMixin {
|
||||||
late LoginState state;
|
final LoginState state = LoginState();
|
||||||
|
|
||||||
@override
|
|
||||||
void onInit() {
|
|
||||||
print("初始化登录init................");
|
|
||||||
state = LoginState();
|
|
||||||
HideCheckVersion hideCheckVersion = HideCheckVersion();
|
|
||||||
hideCheckVersion.doHttpHideCheckVersion();
|
|
||||||
super.onInit();
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void onClose() {
|
void onClose() {
|
||||||
print("销毁onClose................");
|
|
||||||
|
|
||||||
super.onClose();
|
super.onClose();
|
||||||
|
state.passwordController.dispose();
|
||||||
|
state.userNameController.dispose();
|
||||||
|
state.meetingCodeController.dispose();
|
||||||
|
state.nickNameCodeController.dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 改变页面状态
|
/// 改变页面状态
|
||||||
|
|
@ -50,24 +40,23 @@ class LoginLogic extends GetxController with RequestToolMixin {
|
||||||
|
|
||||||
/// 登录
|
/// 登录
|
||||||
Future<void> doHttpLogin() async {
|
Future<void> doHttpLogin() async {
|
||||||
if(state.userNameController!.text.isEmpty){
|
if(state.userNameController.text.isEmpty){
|
||||||
ToastUtils.showError("请输入账号");
|
ToastUtils.showError("请输入账号");
|
||||||
}else if(state.passwordController!.text.isEmpty){
|
}else if(state.passwordController.text.isEmpty){
|
||||||
ToastUtils.showError("请输入密码");
|
ToastUtils.showError("请输入密码");
|
||||||
}else if(state.checkAgreementBool.value != true){
|
}else if(state.checkAgreementBool.value != true){
|
||||||
ToastUtils.showError("请阅读并勾选相关协议");
|
ToastUtils.showError("请阅读并勾选相关协议");
|
||||||
}else{
|
}else{
|
||||||
BaseStructureResult<UserInfoEntity> res = await getClient().login(state.userNameController!.text, md5.convert(utf8.encode(state.passwordController!.text)).toString());
|
BaseStructureResult<UserInfoEntity> res = await getClient().login(state.userNameController.text, md5.convert(utf8.encode(state.passwordController.text)).toString());
|
||||||
if (null != res.data) {
|
if (null != res.data) {
|
||||||
UserStore.to.setToken(res.data!.token);
|
UserStore.to.setToken(res.data!.token);
|
||||||
UserStore.to.setRefreshToken(res.data!.refreshToken);
|
|
||||||
UserStore.to.setUserDetailInfo(res.data!);
|
UserStore.to.setUserDetailInfo(res.data!);
|
||||||
UserStore.to.setLoginType(AppConfig.NORMAL_LOGIN);
|
UserStore.to.setLoginType(AppConfig.NORMAL_LOGIN);
|
||||||
Get.offAllNamed(Routes.startPage);
|
Get.offAllNamed(Routes.startPage);
|
||||||
state.userNameController!.text = "";
|
state.userNameController.text = "";
|
||||||
state.passwordController!.text = "";
|
state.passwordController.text = "";
|
||||||
state.meetingCodeController!.text = "";
|
state.meetingCodeController.text = "";
|
||||||
state.nickNameCodeController!.text = "";
|
state.nickNameCodeController.text = "";
|
||||||
state.checkAgreementBool.value = false;
|
state.checkAgreementBool.value = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -75,26 +64,25 @@ class LoginLogic extends GetxController with RequestToolMixin {
|
||||||
|
|
||||||
/// 直接进入会议(匿名登录)
|
/// 直接进入会议(匿名登录)
|
||||||
Future<void> doHttpAnonymousLogin() async {
|
Future<void> doHttpAnonymousLogin() async {
|
||||||
if(state.meetingCodeController!.text.isEmpty){
|
if(state.meetingCodeController.text.isEmpty){
|
||||||
ToastUtils.showError("请输入会议号");
|
ToastUtils.showError("请输入会议号");
|
||||||
}else if(state.meetingCodeController!.text.length != 8){
|
}else if(state.meetingCodeController.text.length != 8){
|
||||||
ToastUtils.showError("请输入正确的会议号");
|
ToastUtils.showError("请输入正确的会议号");
|
||||||
}else if(state.nickNameCodeController!.text.isEmpty){
|
}else if(state.nickNameCodeController.text.isEmpty){
|
||||||
ToastUtils.showError("请输入昵称");
|
ToastUtils.showError("请输入昵称");
|
||||||
}else if(state.checkAgreementBool != true){
|
}else if(state.checkAgreementBool != true){
|
||||||
ToastUtils.showError("请阅读并勾选相关协议");
|
ToastUtils.showError("请阅读并勾选相关协议");
|
||||||
}else{
|
}else{
|
||||||
BaseStructureResult<UserInfoEntity> res = await getClient().anonLogin(await DeviceInfo.getDeviceId(),state.nickNameCodeController!.text, state.meetingCodeController!.text);
|
BaseStructureResult<UserInfoEntity> res = await getClient().anonLogin(await DeviceInfo.getDeviceId(),state.nickNameCodeController.text, state.meetingCodeController.text);
|
||||||
if (null != res.data) {
|
if (null != res.data) {
|
||||||
UserStore.to.setToken(res.data!.token);
|
UserStore.to.setToken(res.data!.token);
|
||||||
UserStore.to.setRefreshToken(res.data!.refreshToken);
|
|
||||||
UserStore.to.setUserDetailInfo(res.data!);
|
UserStore.to.setUserDetailInfo(res.data!);
|
||||||
UserStore.to.setLoginType(AppConfig.ANONYMOUS_LOGIN);
|
UserStore.to.setLoginType(AppConfig.ANONYMOUS_LOGIN);
|
||||||
Get.toNamed(Routes.meetingMainPage, arguments: {"roomNumber": state.meetingCodeController!.text});
|
Get.toNamed(Routes.meetingMainPage, arguments: {"roomNumber": state.meetingCodeController.text});
|
||||||
state.userNameController!.text = "";
|
state.userNameController.text = "";
|
||||||
state.passwordController!.text = "";
|
state.passwordController.text = "";
|
||||||
state.meetingCodeController!.text = "";
|
state.meetingCodeController.text = "";
|
||||||
state.nickNameCodeController!.text = "";
|
state.nickNameCodeController.text = "";
|
||||||
state.checkAgreementBool.value = false;
|
state.checkAgreementBool.value = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -102,16 +90,16 @@ class LoginLogic extends GetxController with RequestToolMixin {
|
||||||
|
|
||||||
/// 检验房间
|
/// 检验房间
|
||||||
Future<void> doHttpCheckMeetingRoom() async {
|
Future<void> doHttpCheckMeetingRoom() async {
|
||||||
if(state.meetingCodeController!.text.isEmpty){
|
if(state.meetingCodeController.text.isEmpty){
|
||||||
ToastUtils.showError("请输入会议号");
|
ToastUtils.showError("请输入会议号");
|
||||||
}else if(state.meetingCodeController!.text.length != 8){
|
}else if(state.meetingCodeController.text.length != 8){
|
||||||
ToastUtils.showError("请输入正确的会议号");
|
ToastUtils.showError("请输入正确的会议号");
|
||||||
}else if(state.nickNameCodeController!.text.isEmpty){
|
}else if(state.nickNameCodeController.text.isEmpty){
|
||||||
ToastUtils.showError("请输入昵称");
|
ToastUtils.showError("请输入昵称");
|
||||||
}else if(state.checkAgreementBool != true){
|
}else if(state.checkAgreementBool != true){
|
||||||
ToastUtils.showError("请阅读并勾选相关协议");
|
ToastUtils.showError("请阅读并勾选相关协议");
|
||||||
}else{
|
}else{
|
||||||
BaseStructureResult<bool> res = await getClient().checkout(state.meetingCodeController!.text);
|
BaseStructureResult<bool> res = await getClient().checkout(state.meetingCodeController.text);
|
||||||
if (null != res.data) {
|
if (null != res.data) {
|
||||||
if(res.data == true){
|
if(res.data == true){
|
||||||
doHttpAnonymousLogin();
|
doHttpAnonymousLogin();
|
||||||
|
|
|
||||||
|
|
@ -3,14 +3,12 @@ import 'package:get/get.dart';
|
||||||
|
|
||||||
class LoginState {
|
class LoginState {
|
||||||
|
|
||||||
TextEditingController? userNameController;
|
LoginState() {}
|
||||||
TextEditingController? passwordController;
|
|
||||||
TextEditingController? meetingCodeController;
|
|
||||||
TextEditingController? nickNameCodeController;
|
|
||||||
LoginState() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
late TextEditingController userNameController = TextEditingController();
|
||||||
|
late TextEditingController passwordController = TextEditingController();
|
||||||
|
late TextEditingController meetingCodeController = TextEditingController();
|
||||||
|
late TextEditingController nickNameCodeController = TextEditingController();
|
||||||
|
|
||||||
/// 页面状态,0:账号,1:会议号
|
/// 页面状态,0:账号,1:会议号
|
||||||
late RxInt pageState = 0.obs;
|
late RxInt pageState = 0.obs;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
import 'package:al_downloader/al_downloader.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
||||||
|
|
@ -23,10 +22,6 @@ class _LoginPageState extends State<LoginPage> {
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
Utils.hideKeyboard();
|
Utils.hideKeyboard();
|
||||||
state.userNameController = TextEditingController();
|
|
||||||
state.passwordController = TextEditingController();
|
|
||||||
state.meetingCodeController = TextEditingController();
|
|
||||||
state.nickNameCodeController = TextEditingController();
|
|
||||||
super.initState();
|
super.initState();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -44,7 +39,7 @@ class _LoginPageState extends State<LoginPage> {
|
||||||
decoration: const BoxDecoration(
|
decoration: const BoxDecoration(
|
||||||
image: DecorationImage(
|
image: DecorationImage(
|
||||||
image: AssetImage('assets/images/login_bg.png'),
|
image: AssetImage('assets/images/login_bg.png'),
|
||||||
fit: BoxFit.cover,
|
fit: BoxFit.fill,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
|
@ -200,13 +195,12 @@ class _LoginPageState extends State<LoginPage> {
|
||||||
color: ColorUtil.Color_153_153_153),
|
color: ColorUtil.Color_153_153_153),
|
||||||
),
|
),
|
||||||
child: TextField(
|
child: TextField(
|
||||||
obscureText: true,
|
|
||||||
controller: state.passwordController,
|
controller: state.passwordController,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 14.sp,
|
fontSize: 14.sp,
|
||||||
),
|
),
|
||||||
inputFormatters: <TextInputFormatter>[
|
inputFormatters: <TextInputFormatter>[
|
||||||
FilteringTextInputFormatter.allow(RegExp("^[a-z0-9A-Z]+")),//只允许输入数字,字母
|
FilteringTextInputFormatter.digitsOnly,
|
||||||
LengthLimitingTextInputFormatter(20)
|
LengthLimitingTextInputFormatter(20)
|
||||||
//限制长度
|
//限制长度
|
||||||
],
|
],
|
||||||
|
|
@ -381,7 +375,6 @@ class _LoginPageState extends State<LoginPage> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
ALDownloader.cancelAll();
|
|
||||||
if (state.pageState.value == 0) {
|
if (state.pageState.value == 0) {
|
||||||
logic.doHttpLogin();
|
logic.doHttpLogin();
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -398,13 +391,4 @@ class _LoginPageState extends State<LoginPage> {
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
|
||||||
void dispose() {
|
|
||||||
state.passwordController?.dispose();
|
|
||||||
state.userNameController?.dispose();
|
|
||||||
state.meetingCodeController?.dispose();
|
|
||||||
state.nickNameCodeController?.dispose();
|
|
||||||
super.dispose();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,9 +7,7 @@ import 'package:flutter/cupertino.dart';
|
||||||
import 'package:flutter/foundation.dart';
|
import 'package:flutter/foundation.dart';
|
||||||
import 'package:flutter_easyloading/flutter_easyloading.dart';
|
import 'package:flutter_easyloading/flutter_easyloading.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:permission_handler/permission_handler.dart';
|
|
||||||
import 'package:signalr_core/signalr_core.dart';
|
import 'package:signalr_core/signalr_core.dart';
|
||||||
import 'package:wakelock_plus/wakelock_plus.dart';
|
|
||||||
import 'package:wgshare/common/store/user_store.dart';
|
import 'package:wgshare/common/store/user_store.dart';
|
||||||
import 'package:wgshare/utils/count_microphone_volume.dart';
|
import 'package:wgshare/utils/count_microphone_volume.dart';
|
||||||
import '../../common/config/request_config.dart';
|
import '../../common/config/request_config.dart';
|
||||||
|
|
@ -18,8 +16,6 @@ import '../../common/models/common/base_structure_result.dart';
|
||||||
import '../../common/models/meeting_room_info.dart';
|
import '../../common/models/meeting_room_info.dart';
|
||||||
import '../../common/models/meeting_room_msg.dart';
|
import '../../common/models/meeting_room_msg.dart';
|
||||||
import '../../common/models/meeting_room_user.dart';
|
import '../../common/models/meeting_room_user.dart';
|
||||||
import '../../common/store/business_store.dart';
|
|
||||||
import '../../routes/app_routes.dart';
|
|
||||||
import '../../utils/agora/AgoraUtil.dart';
|
import '../../utils/agora/AgoraUtil.dart';
|
||||||
import '../../utils/permission/PermissionService.dart';
|
import '../../utils/permission/PermissionService.dart';
|
||||||
import '../../utils/toast_utils.dart';
|
import '../../utils/toast_utils.dart';
|
||||||
|
|
@ -27,258 +23,15 @@ import 'meeting_main_state.dart';
|
||||||
|
|
||||||
class MeetingMainLogic extends GetxController with RequestToolMixin {
|
class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
final MeetingMainState state = MeetingMainState();
|
final MeetingMainState state = MeetingMainState();
|
||||||
late RtcEngineEventHandler _rtcEngineEventHandler;
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void onInit() {
|
void onInit() {
|
||||||
super.onInit();
|
super.onInit();
|
||||||
_rtcEngineEventHandler = RtcEngineEventHandler(
|
|
||||||
// 错误回调
|
|
||||||
onError: (ErrorCodeType err, String msg){
|
|
||||||
debugPrint("wgs输出===:RTC-错误回调:${err}---${msg}");
|
|
||||||
},
|
|
||||||
|
|
||||||
// 成功加入会议室回调
|
|
||||||
onJoinChannelSuccess: (RtcConnection connection, int elapsed) {
|
|
||||||
state.isJoinSuccess.value = true;
|
|
||||||
debugPrint("meeting流程====》3加入频道" );
|
|
||||||
debugPrint("wgs输出===:RTC-自己加入会议室,ID:${connection.localUid}");
|
|
||||||
},
|
|
||||||
onRejoinChannelSuccess: (RtcConnection connection, int elapsed) {
|
|
||||||
state.isJoinSuccess.value = true;
|
|
||||||
debugPrint("meeting流程====》4加入频道" );
|
|
||||||
debugPrint("wgs输出===:RTC-自己加入会议室,ID:${connection.localUid}");
|
|
||||||
},
|
|
||||||
// 成功离开会议室回调
|
|
||||||
onLeaveChannel: (RtcConnection connection, RtcStats stats) {
|
|
||||||
debugPrint("wgs输出===:RTC-自己离开会议室,ID:${connection.localUid}");
|
|
||||||
},
|
|
||||||
|
|
||||||
// 远端用户或主播加入当前会议室回调-主播角色才能接收该回调
|
|
||||||
onUserJoined: (RtcConnection connection, int remoteUid, int elapsed) {
|
|
||||||
debugPrint("wgs输出===:RTC-远端用户或主播加入会议室,用户或主机的ID:$remoteUid");
|
|
||||||
},
|
|
||||||
|
|
||||||
// 远端用户或主播离开当前会议室回调-主播角色才能接收该回调
|
|
||||||
onUserOffline: (RtcConnection connection, int remoteUid,
|
|
||||||
UserOfflineReasonType reason) async {
|
|
||||||
// 判断是否用户取消了共享
|
|
||||||
if (remoteUid.toString().length == 9) {
|
|
||||||
for (var i = 0; i < state.cacheUsers.value.length; i++) {
|
|
||||||
if (remoteUid.toString() ==
|
|
||||||
state.cacheUsers.value[i].screenShareId) {
|
|
||||||
state.cacheUsers.value[i].enableShare = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
update();
|
|
||||||
debugPrint("wgs输出===:RTC-远端用户或主播离开会议室,用户或主机的ID:$remoteUid");
|
|
||||||
},
|
|
||||||
|
|
||||||
// 音频路由发生变化回调
|
|
||||||
onAudioRoutingChanged: (int routing) {
|
|
||||||
debugPrint("wgs输出===:RTC-音频路由切换:$routing");
|
|
||||||
state.communicationMode.value = routing;
|
|
||||||
if (routing == 1) {
|
|
||||||
debugPrint("wgs输出===:RTC-音频路由切换为听筒");
|
|
||||||
} else if (routing == 3) {
|
|
||||||
debugPrint("wgs输出===:RTC-音频路由切换为扬声器");
|
|
||||||
} else {
|
|
||||||
debugPrint("wgs输出===:RTC-音频路由切换为外接设备");
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// 音频采集开关回调
|
|
||||||
onLocalAudioStateChanged: (RtcConnection connection,
|
|
||||||
LocalAudioStreamState state, LocalAudioStreamReason reason) {
|
|
||||||
debugPrint("wgs输出===:RTC-音频采集开关:$state");
|
|
||||||
},
|
|
||||||
|
|
||||||
// 远端视频状态发生改变回调
|
|
||||||
onRemoteVideoStateChanged: (RtcConnection connection,
|
|
||||||
int remoteUid,
|
|
||||||
RemoteVideoState remoteVideoState,
|
|
||||||
RemoteVideoStateReason remoteVideoStateReason,
|
|
||||||
int elapsed) {
|
|
||||||
debugPrint(
|
|
||||||
"wgs输出===:RTC-远端视频状态发生改变:ID-$remoteUid-状态-$remoteVideoStateReason");
|
|
||||||
if (remoteVideoStateReason ==
|
|
||||||
RemoteVideoStateReason.remoteVideoStateReasonRemoteMuted) {
|
|
||||||
// 远端用户停止发送视频流或远端用户禁用视频模块
|
|
||||||
if (remoteUid.toString().length != 9) {
|
|
||||||
// 摄像头
|
|
||||||
if (remoteUid.toString() == state.remoteUid.value) {
|
|
||||||
// 如果停止发送视频流或禁用视频模块的远端用户是当前全员观看主播
|
|
||||||
doHttpGetTvAnchor();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// 共享屏幕(此版本不做)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// 用户音量提示回调
|
|
||||||
onAudioVolumeIndication: (RtcConnection connection,
|
|
||||||
List<AudioVolumeInfo> speakers,
|
|
||||||
int speakerNumber,
|
|
||||||
int totalVolume) {
|
|
||||||
if (speakers.isNotEmpty) {
|
|
||||||
for (AudioVolumeInfo avi in speakers) {
|
|
||||||
if (avi.uid == 0) {
|
|
||||||
// debugPrint("wgs输出===:RTC-本地用户音量提示:${avi.uid}--${avi.volume}");
|
|
||||||
for (MeetingRoomUser mru in state.cacheUsers.value) {
|
|
||||||
if (UserStore.to.userInfoEntity.value!.uid == mru.uid) {
|
|
||||||
mru.volume = CountMicrophoneVolume.getVolume(avi.volume!);
|
|
||||||
state.microphoneVolume.value =
|
|
||||||
CountMicrophoneVolume.getVolume(avi.volume!);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// debugPrint("wgs输出===:RTC-远端用户音量提示:${avi.uid}--${avi.volume}");
|
|
||||||
for (MeetingRoomUser mru in state.cacheUsers.value) {
|
|
||||||
mru.volume = CountMicrophoneVolume.getVolume(avi.volume!);
|
|
||||||
|
|
||||||
if (avi.volume != 0) {
|
|
||||||
state.spokesman.value = mru.userName;
|
|
||||||
state.spokesmanVolume.value =
|
|
||||||
CountMicrophoneVolume.getVolume(avi.volume!);
|
|
||||||
} else {
|
|
||||||
state.spokesman.value = "";
|
|
||||||
state.spokesmanVolume.value = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/*for (MeetingRoomUser mru in state.cacheUsers.value) {
|
|
||||||
// 用于更改语音布局里的用户列表麦克风
|
|
||||||
if (avi.uid == 0) {
|
|
||||||
// debugPrint("wgs输出===:RTC-用户音量提示(自己):${CountMicrophoneVolume.getVolume(avi.volume!)}");
|
|
||||||
mru.volume = CountMicrophoneVolume.getVolume(avi.volume!);
|
|
||||||
state.microphoneVolume.value =
|
|
||||||
CountMicrophoneVolume.getVolume(avi.volume!);
|
|
||||||
} else {
|
|
||||||
debugPrint("wgs输出===:RTC-用户音量提示:${avi.uid}--${mru.uid}");
|
|
||||||
if (avi.uid.toString() == mru.uid) {
|
|
||||||
debugPrint("wgs输出===:RTC-用户音量提示(远端用户):${speakers[0].uid}--${speakers[0].volume}");
|
|
||||||
mru.volume = CountMicrophoneVolume.getVolume(avi.volume!);
|
|
||||||
|
|
||||||
if (avi.volume != 0) {
|
|
||||||
state.spokesman.value = mru.userName;
|
|
||||||
state.spokesmanVolume.value =
|
|
||||||
CountMicrophoneVolume.getVolume(avi.volume!);
|
|
||||||
} else {
|
|
||||||
state.spokesman.value = "";
|
|
||||||
state.spokesmanVolume.value = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// 切换用户角色回调
|
|
||||||
onClientRoleChanged: (RtcConnection connection,
|
|
||||||
ClientRoleType oldRole,
|
|
||||||
ClientRoleType newRole,
|
|
||||||
ClientRoleOptions newRoleOptions) {
|
|
||||||
debugPrint(
|
|
||||||
"wgs输出===:RTC-切换用户角色为:${newRole == ClientRoleType.clientRoleBroadcaster ? "主播" : "观众"}");
|
|
||||||
},
|
|
||||||
|
|
||||||
// token即将在30秒内过期回调
|
|
||||||
onTokenPrivilegeWillExpire: (RtcConnection connection, String token) {
|
|
||||||
doHttpGetMeetingToken(false);
|
|
||||||
},
|
|
||||||
|
|
||||||
// token已过期
|
|
||||||
onRequestToken: (RtcConnection connection){
|
|
||||||
doHttpGetMeetingToken(false);
|
|
||||||
},
|
|
||||||
|
|
||||||
// 本地视频状态发生改变回调
|
|
||||||
onLocalVideoStateChanged: (VideoSourceType source,
|
|
||||||
LocalVideoStreamState state, LocalVideoStreamReason reason) {
|
|
||||||
debugPrint("wgs输出===:RTC-本地视频状态发生改变:$source--$state--$reason");
|
|
||||||
},
|
|
||||||
|
|
||||||
// 网络连接状态回调
|
|
||||||
onConnectionStateChanged: (RtcConnection connection,
|
|
||||||
ConnectionStateType stateType,
|
|
||||||
ConnectionChangedReasonType reason) {
|
|
||||||
debugPrint("wgs输出===:RTC-网络连接状态发生改变:"
|
|
||||||
"会议室编号(${connection.channelId}),"
|
|
||||||
"网络状态($stateType-${AgoraUtil.getConnectionStateChangedType(stateType)}),"
|
|
||||||
"网络改变原因($reason-${AgoraUtil.getConnectionChangedReasonType(reason)})");
|
|
||||||
if(reason == ConnectionChangedReasonType.connectionChangedTokenExpired){
|
|
||||||
// 当前使用的token已过期
|
|
||||||
doHttpGetMeetingToken(false);
|
|
||||||
}else{
|
|
||||||
if (stateType == ConnectionStateType.connectionStateReconnecting) {
|
|
||||||
if (EasyLoading.isShow == false) {
|
|
||||||
ToastUtils.showLoadingToMask(
|
|
||||||
"网络故障,正在重连...", EasyLoadingMaskType.black);
|
|
||||||
}
|
|
||||||
} else if (stateType ==
|
|
||||||
ConnectionStateType.connectionStateConnected &&
|
|
||||||
reason ==
|
|
||||||
ConnectionChangedReasonType
|
|
||||||
.connectionChangedRejoinSuccess) {
|
|
||||||
ToastUtils.dismiss();
|
|
||||||
if (EasyLoading.isShow == false) {
|
|
||||||
ToastUtils.showSuccessToMask(
|
|
||||||
"重连成功!", EasyLoadingMaskType.black);
|
|
||||||
}
|
|
||||||
} else if (reason ==
|
|
||||||
ConnectionChangedReasonType.connectionChangedLost) {
|
|
||||||
// 和服务器失去连接后,再延迟15秒(和signalR Socket一致),让SDK继续重连,如果重连不上则告知用户需要重新加入
|
|
||||||
Future.delayed(const Duration(milliseconds: 15000), () {
|
|
||||||
ToastUtils.dismiss();
|
|
||||||
if (state.isShowOkAlertDialog.value == false) {
|
|
||||||
showOkAlertDialog(
|
|
||||||
context: Get.context!,
|
|
||||||
title: "提示",
|
|
||||||
message: "网络错误,请重新加入会议室",
|
|
||||||
okLabel: "确定",
|
|
||||||
barrierDismissible: false,
|
|
||||||
).then((OkCancelResult value) {
|
|
||||||
Get.back();
|
|
||||||
Get.back();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// 渲染器已接收首帧远端视频回调
|
|
||||||
onFirstRemoteVideoFrame: (RtcConnection connection, int remoteUid,
|
|
||||||
int width, int height, int elapsed) async {
|
|
||||||
debugPrint("wgs输出===:RTC-渲染器已接收首帧远端视频回调:${remoteUid}--${width}--${height}--${elapsed}");
|
|
||||||
},
|
|
||||||
|
|
||||||
// 已接收到远端视频并完成解码回调
|
|
||||||
onFirstRemoteVideoDecoded: (RtcConnection connection, int remoteUid,
|
|
||||||
int width, int height, int elapsed) {
|
|
||||||
debugPrint("wgs输出===:RTC-已接收到远端视频并完成解码回调:${remoteUid}--${width}--${height}--${elapsed}");
|
|
||||||
}
|
|
||||||
|
|
||||||
// 获取设备权限出错回调
|
|
||||||
/*onPermissionError: (PermissionType permissionType){
|
|
||||||
debugPrint("wgs输出===:RTC-获取设备权限出错:$permissionType");
|
|
||||||
if(permissionType == PermissionType.screenCapture){
|
|
||||||
// 获取共享屏幕出错(此版本不做)
|
|
||||||
state.isOpenShare.value = false;
|
|
||||||
stopScreenCapture();
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
);
|
|
||||||
// 接收参数
|
// 接收参数
|
||||||
var data = Get.arguments;
|
var data = Get.arguments;
|
||||||
state.roomNumber.value = data["roomNumber"];
|
state.roomNumber.value = data["roomNumber"];
|
||||||
|
|
||||||
// 开启屏幕常亮
|
|
||||||
WakelockPlus.enable();
|
|
||||||
|
|
||||||
doHttpGetMeetingToken(true);
|
doHttpGetMeetingToken(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -290,10 +43,6 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
state.sendMsgController.dispose();
|
state.sendMsgController.dispose();
|
||||||
state.pageController.dispose();
|
state.pageController.dispose();
|
||||||
stopTime();
|
stopTime();
|
||||||
|
|
||||||
// 关闭屏幕常亮
|
|
||||||
WakelockPlus.disable();
|
|
||||||
|
|
||||||
leaveMeetingToRtc();
|
leaveMeetingToRtc();
|
||||||
leaveMeetingToSocket();
|
leaveMeetingToSocket();
|
||||||
}
|
}
|
||||||
|
|
@ -304,13 +53,10 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
await getClient().getMeetingToken(state.roomNumber.value);
|
await getClient().getMeetingToken(state.roomNumber.value);
|
||||||
state.meetingToken.value = res.data!;
|
state.meetingToken.value = res.data!;
|
||||||
|
|
||||||
debugPrint("meeting流程====》1获取token成功" );
|
if (isInit == true) {
|
||||||
|
|
||||||
if (isInit) {
|
|
||||||
signalRSocket();
|
signalRSocket();
|
||||||
} else {
|
}else{
|
||||||
renewToken(state.meetingToken.value);
|
initRtc();
|
||||||
// initRtc();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -332,7 +78,6 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
getMeetingRoomAllUser(results[1].data as List<MeetingRoomUser>);
|
getMeetingRoomAllUser(results[1].data as List<MeetingRoomUser>);
|
||||||
} finally {
|
} finally {
|
||||||
ToastUtils.dismiss();
|
ToastUtils.dismiss();
|
||||||
ToastUtils.showSuccess("${state.isJoinSuccess}--${state.rctEngine.value}--${state.users.isNotEmpty}");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -405,26 +150,6 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 点击grid切换大屏
|
|
||||||
void checkLargeScreen(String uid) {
|
|
||||||
ToastUtils.showSuccess("切换用户成功");
|
|
||||||
if (uid == UserStore.to.userInfoEntity.value!.uid) {
|
|
||||||
state.remoteUid.value = "0";
|
|
||||||
state.remoteAssistantUid.value = "0";
|
|
||||||
} else {
|
|
||||||
if (state.isSpeak.value == true && state.isOpenCamera.value == true) {
|
|
||||||
state.floating.value?.open(Get.context!);
|
|
||||||
}
|
|
||||||
state.remoteUid.value = uid;
|
|
||||||
state.remoteAssistantUid.value = uid;
|
|
||||||
}
|
|
||||||
changePageState(0);
|
|
||||||
Future.delayed(const Duration(milliseconds: 200), () {
|
|
||||||
changePageState(1);
|
|
||||||
});
|
|
||||||
update();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// ------------------------------------------------------------------------------发言权限
|
/// ------------------------------------------------------------------------------发言权限
|
||||||
/// 申请发言权限
|
/// 申请发言权限
|
||||||
Future<void> doHttpApplySpeak() async {
|
Future<void> doHttpApplySpeak() async {
|
||||||
|
|
@ -454,10 +179,6 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
/// ------------------------------------------------------------------------------麦克风相关(操作)
|
/// ------------------------------------------------------------------------------麦克风相关(操作)
|
||||||
/// 用户开闭麦
|
/// 用户开闭麦
|
||||||
Future<void> doHttpSetMicr(bool isOpenMicrophone) async {
|
Future<void> doHttpSetMicr(bool isOpenMicrophone) async {
|
||||||
if (isOpenMicrophone == false) {
|
|
||||||
state.spokesman.value = "";
|
|
||||||
state.spokesmanVolume.value = 0;
|
|
||||||
}
|
|
||||||
await getClient().setMicr(state.roomNumber.value, isOpenMicrophone,
|
await getClient().setMicr(state.roomNumber.value, isOpenMicrophone,
|
||||||
UserStore.to.userInfoEntity.value!.uid);
|
UserStore.to.userInfoEntity.value!.uid);
|
||||||
}
|
}
|
||||||
|
|
@ -479,7 +200,6 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
BaseStructureResult res =
|
BaseStructureResult res =
|
||||||
await getClient().getTvAnchor(state.roomNumber.value);
|
await getClient().getTvAnchor(state.roomNumber.value);
|
||||||
state.remoteUid.value = res.data!.toString();
|
state.remoteUid.value = res.data!.toString();
|
||||||
state.remoteAssistantUid.value = res.data!.toString();
|
|
||||||
debugPrint("wgs输出===:获取当前全员观看主播${res.data}");
|
debugPrint("wgs输出===:获取当前全员观看主播${res.data}");
|
||||||
|
|
||||||
if (res.data!.toString().length != 9) {
|
if (res.data!.toString().length != 9) {
|
||||||
|
|
@ -503,9 +223,9 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
isOtherOpenCamera = true;
|
isOtherOpenCamera = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (isOtherOpenCamera == false) {
|
if(isOtherOpenCamera == false){
|
||||||
changePageState(0);
|
changePageState(0);
|
||||||
} else {
|
}else{
|
||||||
state.remoteUid.value = "";
|
state.remoteUid.value = "";
|
||||||
changePageState(1);
|
changePageState(1);
|
||||||
}
|
}
|
||||||
|
|
@ -532,13 +252,11 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
} else {
|
} else {
|
||||||
// 当前会议室不存在全员观看主播时,设置主播ID为空并切换页面到视频状态
|
// 当前会议室不存在全员观看主播时,设置主播ID为空并切换页面到视频状态
|
||||||
debugPrint("wgs输出===:当前会议室不存在全员观看主播时,设置主播ID为空并切换页面到视频状态");
|
debugPrint("wgs输出===:当前会议室不存在全员观看主播时,设置主播ID为空并切换页面到视频状态");
|
||||||
// state.remoteUid.value = "";
|
state.remoteUid.value = "";
|
||||||
state.remoteAssistantUid.value = "";
|
|
||||||
changePageState(1);
|
changePageState(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
debugPrint("wgs输出===:当前全员观看是共享类型");
|
|
||||||
if (state.remoteUid.value ==
|
if (state.remoteUid.value ==
|
||||||
UserStore.to.userInfoEntity.value!.screenShareId) {
|
UserStore.to.userInfoEntity.value!.screenShareId) {
|
||||||
// 如果是自己在共享
|
// 如果是自己在共享
|
||||||
|
|
@ -550,7 +268,6 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
state.cacheUsers.value[i].enableShare = true;
|
state.cacheUsers.value[i].enableShare = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
changePageState(1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
update();
|
update();
|
||||||
|
|
@ -622,8 +339,6 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
|
|
||||||
await state.hubConnection.value?.start();
|
await state.hubConnection.value?.start();
|
||||||
|
|
||||||
debugPrint("meeting流程====》2socket链接成功" );
|
|
||||||
|
|
||||||
// 开始重新连接时回调
|
// 开始重新连接时回调
|
||||||
state.hubConnection.value?.onreconnecting((error) {
|
state.hubConnection.value?.onreconnecting((error) {
|
||||||
debugPrint("wgs输出===:SignalR Socket-重连$error");
|
debugPrint("wgs输出===:SignalR Socket-重连$error");
|
||||||
|
|
@ -647,21 +362,12 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
debugPrint("wgs输出===:SignalR Socket-重连失败$error");
|
debugPrint("wgs输出===:SignalR Socket-重连失败$error");
|
||||||
ToastUtils.dismiss();
|
ToastUtils.dismiss();
|
||||||
|
|
||||||
debugPrint(
|
if (state.isNormaExit.value == false &&
|
||||||
"wgs输出===:SignalR Socket-重连打印1${state.isNormaExit.value == false && state.isShowOkAlertDialog.value == false}");
|
state.isShowOkAlertDialog.value == false) {
|
||||||
debugPrint("wgs输出===:SignalR Socket-重连打印2${null != UserStore.to.token}");
|
|
||||||
debugPrint(
|
|
||||||
"wgs输出===:SignalR Socket-重连打印3${UserStore.to.token!.isNotEmpty}");
|
|
||||||
debugPrint(
|
|
||||||
"wgs输出===:SignalR Socket-重连打印4${(state.isNormaExit.value == false && state.isShowOkAlertDialog.value == false) || null != UserStore.to.token || UserStore.to.token!.isNotEmpty}");
|
|
||||||
|
|
||||||
if ((state.isNormaExit.value == false &&
|
|
||||||
state.isShowOkAlertDialog.value == false) ||
|
|
||||||
(state.isNormaExit.value == false && null != UserStore.to.token)) {
|
|
||||||
showOkAlertDialog(
|
showOkAlertDialog(
|
||||||
context: Get.context!,
|
context: Get.context!,
|
||||||
title: "提示",
|
title: "提示",
|
||||||
message: "网络错误,请重新加入会议室1",
|
message: "网络错误,请重新加入会议室",
|
||||||
okLabel: "确定",
|
okLabel: "确定",
|
||||||
barrierDismissible: false,
|
barrierDismissible: false,
|
||||||
).then((OkCancelResult value) {
|
).then((OkCancelResult value) {
|
||||||
|
|
@ -685,7 +391,7 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
for (MeetingRoomUser mru in state.cacheUsers.value) {
|
for (MeetingRoomUser mru in state.cacheUsers.value) {
|
||||||
if (mru.uid == meetingRoomUser.uid) {
|
if (mru.uid == meetingRoomUser.uid) {
|
||||||
mru.roleId = meetingRoomUser.roleId;
|
mru.roleId = meetingRoomUser.roleId;
|
||||||
if (state.defaulOpenState.value == 1) {
|
if(state.defaulOpenState.value == 1){
|
||||||
mru.enableMicr = true;
|
mru.enableMicr = true;
|
||||||
}
|
}
|
||||||
mru.isRoomManager = meetingRoomUser.isRoomManager;
|
mru.isRoomManager = meetingRoomUser.isRoomManager;
|
||||||
|
|
@ -830,9 +536,7 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
}
|
}
|
||||||
state.users.value = state.cacheUsers.value;
|
state.users.value = state.cacheUsers.value;
|
||||||
update();
|
update();
|
||||||
if (listDynamic[0] != UserStore.to.userInfoEntity.value!.uid) {
|
|
||||||
doHttpGetTvAnchor();
|
doHttpGetTvAnchor();
|
||||||
}
|
|
||||||
debugPrint("wgs输出===:Socket-远端用户或主播离开会议室:$jsonStr");
|
debugPrint("wgs输出===:Socket-远端用户或主播离开会议室:$jsonStr");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -858,20 +562,6 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
/// 强制退出
|
|
||||||
state.hubConnection.value?.on("ForceLogout", (e) {
|
|
||||||
// var jsonStr = const Utf8Decoder().convert(json.encode(uid).runes.toList());
|
|
||||||
var jsonStr = json.encode(e);
|
|
||||||
List listDynamic = jsonDecode(jsonStr);
|
|
||||||
debugPrint("wgs输出===:Socket-强制退出:${listDynamic[0]}");
|
|
||||||
state.isNormaExit.value = true;
|
|
||||||
ToastUtils.showSuccess("${listDynamic[0]}");
|
|
||||||
Future.delayed(const Duration(seconds: 1), () {
|
|
||||||
UserStore.to.erase();
|
|
||||||
Get.offAllNamed(Routes.loginPage);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
/// ------------------------------------------------------------------------------会议室聊天相关回调
|
/// ------------------------------------------------------------------------------会议室聊天相关回调
|
||||||
/// 会议室接收消息回调
|
/// 会议室接收消息回调
|
||||||
state.hubConnection.value?.on("ReceiveMessage", (e) {
|
state.hubConnection.value?.on("ReceiveMessage", (e) {
|
||||||
|
|
@ -882,12 +572,10 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
MeetingRoomMsg meetingRoomMsg = MeetingRoomMsg(list[0], list[1], list[2],
|
MeetingRoomMsg meetingRoomMsg = MeetingRoomMsg(list[0], list[1], list[2],
|
||||||
0, formatDate(dateTime, [HH, ':', nn, ':', ss]));
|
0, formatDate(dateTime, [HH, ':', nn, ':', ss]));
|
||||||
state.meetingRoomMsgs.value.add(meetingRoomMsg);
|
state.meetingRoomMsgs.value.add(meetingRoomMsg);
|
||||||
state.msgNum.value = state.msgNum.value += 1;
|
|
||||||
update();
|
update();
|
||||||
Future.delayed(const Duration(milliseconds: 100), () {
|
Future.delayed(const Duration(milliseconds: 100), () {
|
||||||
state.chatController
|
state.chatController
|
||||||
.jumpTo(state.chatController.position.maxScrollExtent);
|
.jumpTo(state.chatController.position.maxScrollExtent);
|
||||||
state.msgNum.value = 0;
|
|
||||||
});
|
});
|
||||||
debugPrint("wgs输出===:Socket-会议室接收消息:$jsonStr");
|
debugPrint("wgs输出===:Socket-会议室接收消息:$jsonStr");
|
||||||
});
|
});
|
||||||
|
|
@ -900,18 +588,13 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
var listDynamic = jsonDecode(jsonStr);
|
var listDynamic = jsonDecode(jsonStr);
|
||||||
MeetingRoomUser meetingRoomUser = MeetingRoomUser.fromJson(listDynamic);
|
MeetingRoomUser meetingRoomUser = MeetingRoomUser.fromJson(listDynamic);
|
||||||
if (meetingRoomUser.enableCamera == true) {
|
if (meetingRoomUser.enableCamera == true) {
|
||||||
debugPrint("wgs输出===:Socket-用户单独开摄像头${jsonStr}");
|
debugPrint("wgs输出===:Socket-用户单独开摄像头");
|
||||||
|
|
||||||
// 遍历会议室用户列表,更改摄像头状态
|
// 遍历会议室用户列表,更改摄像头状态
|
||||||
for (MeetingRoomUser mru in state.cacheUsers.value) {
|
for (MeetingRoomUser mru in state.cacheUsers.value) {
|
||||||
if (mru.uid == meetingRoomUser.uid) {
|
if (mru.uid == meetingRoomUser.uid) {
|
||||||
mru.enableCamera = true;
|
mru.enableCamera = true;
|
||||||
}
|
}
|
||||||
debugPrint(
|
|
||||||
"wgs输出===:Socket-用户单独开摄像头---${state.remoteUid.value}--${meetingRoomUser.uid}");
|
|
||||||
if (state.remoteUid.value == meetingRoomUser.uid) {
|
|
||||||
doHttpGetTvAnchor();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (meetingRoomUser.uid == UserStore.to.userInfoEntity.value!.uid) {
|
if (meetingRoomUser.uid == UserStore.to.userInfoEntity.value!.uid) {
|
||||||
|
|
@ -947,14 +630,13 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
muteLocalVideoStream(true);
|
muteLocalVideoStream(true);
|
||||||
// 停止本地预览
|
// 停止本地预览
|
||||||
stopPreview();
|
stopPreview();
|
||||||
// 关闭本地预览悬浮窗
|
|
||||||
if (state.floating.value?.isShowing == true) {
|
|
||||||
state.floating.value?.close();
|
|
||||||
}
|
|
||||||
// 当前全员观看主播是自己时
|
// 当前全员观看主播是自己时
|
||||||
if (state.remoteUid.value == "0") {
|
if (state.remoteUid.value == "0") {
|
||||||
state.remoteUid.value = "";
|
state.remoteUid.value = "";
|
||||||
doHttpGetTvAnchor();
|
}
|
||||||
|
// 关闭本地预览悬浮窗
|
||||||
|
if (state.floating.value?.isShowing == true) {
|
||||||
|
state.floating.value?.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -974,12 +656,8 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
/// 加入会议室
|
/// 加入会议室
|
||||||
/// isAgain:是否重新加入
|
/// isAgain:是否重新加入
|
||||||
Future<void> joinMeetingToSocket(bool isAgain) async {
|
Future<void> joinMeetingToSocket(bool isAgain) async {
|
||||||
await state.hubConnection.value?.invoke("joinChannel", args: [
|
await state.hubConnection.value?.invoke("joinChannel",
|
||||||
state.roomNumber.value,
|
args: [state.roomNumber.value, false, false, false]);
|
||||||
state.isOpenMicrophone.value,
|
|
||||||
state.isOpenCamera.value,
|
|
||||||
state.isSpeak.value
|
|
||||||
]);
|
|
||||||
mergeFetch(isAgain);
|
mergeFetch(isAgain);
|
||||||
/*if(isAgain == false){
|
/*if(isAgain == false){
|
||||||
mergeFetch(isAgain);
|
mergeFetch(isAgain);
|
||||||
|
|
@ -1018,10 +696,11 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
/// ------------------------------------------------------------------------------声网SDK相关
|
/// ------------------------------------------------------------------------------声网SDK相关
|
||||||
/// 初始化声网SDK
|
/// 初始化声网SDK
|
||||||
Future<void> initRtc() async {
|
Future<void> initRtc() async {
|
||||||
// 创建 RtcEngine 对象
|
// 请求麦克风、摄像头权限
|
||||||
await leaveMeetingToRtc();
|
PermissionService.requestPermissions();
|
||||||
|
|
||||||
state.rctEngine.value = createAgoraRtcEngine();
|
// 创建 RtcEngine 对象
|
||||||
|
state.rctEngine.value = createAgoraRtcEngineEx();
|
||||||
|
|
||||||
// 初始化 RtcEngine,设置频道场景为 channelProfileLiveBroadcasting(直播场景)
|
// 初始化 RtcEngine,设置频道场景为 channelProfileLiveBroadcasting(直播场景)
|
||||||
await state.rctEngine.value?.initialize(RtcEngineContext(
|
await state.rctEngine.value?.initialize(RtcEngineContext(
|
||||||
|
|
@ -1029,12 +708,10 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
channelProfile: ChannelProfileType.channelProfileLiveBroadcasting,
|
channelProfile: ChannelProfileType.channelProfileLiveBroadcasting,
|
||||||
// logConfig:const LogConfig()
|
// logConfig:const LogConfig()
|
||||||
));
|
));
|
||||||
state.rctEngine.value?.registerEventHandler(_rtcEngineEventHandler);
|
|
||||||
|
|
||||||
// 音频模块默认启动,所以这里不再调用启动方法
|
// 音频模块默认启动,所以这里不再调用启动方法
|
||||||
|
|
||||||
// 启用视频模块
|
// 启用视频模块
|
||||||
await enableVideo();
|
enableVideo();
|
||||||
// 设置默认音频路由为听筒
|
// 设置默认音频路由为听筒
|
||||||
await state.rctEngine.value?.setDefaultAudioRouteToSpeakerphone(false);
|
await state.rctEngine.value?.setDefaultAudioRouteToSpeakerphone(false);
|
||||||
// 打开用户音量回调
|
// 打开用户音量回调
|
||||||
|
|
@ -1044,12 +721,191 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
await state.rctEngine.value
|
await state.rctEngine.value
|
||||||
?.setDualStreamMode(mode: SimulcastStreamMode.enableSimulcastStream);
|
?.setDualStreamMode(mode: SimulcastStreamMode.enableSimulcastStream);
|
||||||
|
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_)=>joinMeetingToRtc());
|
joinMeetingToRtc();
|
||||||
|
|
||||||
|
// 回调
|
||||||
|
state.rctEngine.value?.registerEventHandler(
|
||||||
|
RtcEngineEventHandler(
|
||||||
|
// 成功加入会议室回调
|
||||||
|
onJoinChannelSuccess: (RtcConnection connection, int elapsed) {
|
||||||
|
state.isJoinSuccess.value = true;
|
||||||
|
debugPrint("wgs输出===:RTC-自己加入会议室,ID:${connection.localUid}");
|
||||||
|
},
|
||||||
|
|
||||||
// await joinMeetingToRtc();
|
// 成功离开会议室回调
|
||||||
|
onLeaveChannel: (RtcConnection connection, RtcStats stats) {
|
||||||
|
debugPrint("wgs输出===:RTC-自己离开会议室,ID:${connection.localUid}");
|
||||||
|
},
|
||||||
|
|
||||||
|
// 远端用户或主播加入当前会议室回调-主播角色才能接收该回调
|
||||||
|
onUserJoined: (RtcConnection connection, int remoteUid, int elapsed) {
|
||||||
|
debugPrint("wgs输出===:RTC-远端用户或主播加入会议室,用户或主机的ID:$remoteUid");
|
||||||
|
},
|
||||||
|
|
||||||
|
// 远端用户或主播离开当前会议室回调-主播角色才能接收该回调
|
||||||
|
onUserOffline: (RtcConnection connection, int remoteUid,
|
||||||
|
UserOfflineReasonType reason) async {
|
||||||
|
// 判断是否用户取消了共享
|
||||||
|
if (remoteUid.toString().length == 9) {
|
||||||
|
for (var i = 0; i < state.cacheUsers.value.length; i++) {
|
||||||
|
if (remoteUid.toString() ==
|
||||||
|
state.cacheUsers.value[i].screenShareId) {
|
||||||
|
state.cacheUsers.value[i].enableShare = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
update();
|
||||||
|
debugPrint("wgs输出===:RTC-远端用户或主播离开会议室,用户或主机的ID:$remoteUid");
|
||||||
|
},
|
||||||
|
|
||||||
|
// 音频路由发生变化回调
|
||||||
|
onAudioRoutingChanged: (int routing) {
|
||||||
|
debugPrint("wgs输出===:RTC-音频路由切换:$routing");
|
||||||
|
state.communicationMode.value = routing;
|
||||||
|
if (routing == 1) {
|
||||||
|
debugPrint("wgs输出===:RTC-音频路由切换为听筒");
|
||||||
|
} else if (routing == 3) {
|
||||||
|
debugPrint("wgs输出===:RTC-音频路由切换为扬声器");
|
||||||
|
} else {
|
||||||
|
debugPrint("wgs输出===:RTC-音频路由切换为外接设备");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 音频采集开关回调
|
||||||
|
onLocalAudioStateChanged: (RtcConnection connection,
|
||||||
|
LocalAudioStreamState state, LocalAudioStreamReason reason) {
|
||||||
|
debugPrint("wgs输出===:RTC-音频采集开关:$state");
|
||||||
|
},
|
||||||
|
|
||||||
|
// 远端视频状态发生改变回调
|
||||||
|
onRemoteVideoStateChanged: (RtcConnection connection,
|
||||||
|
int remoteUid,
|
||||||
|
RemoteVideoState remoteVideoState,
|
||||||
|
RemoteVideoStateReason remoteVideoStateReason,
|
||||||
|
int elapsed) {
|
||||||
|
debugPrint(
|
||||||
|
"wgs输出===:RTC-远端视频状态发生改变:ID-$remoteUid-状态-$remoteVideoStateReason");
|
||||||
|
if (remoteVideoStateReason ==
|
||||||
|
RemoteVideoStateReason.remoteVideoStateReasonRemoteMuted) {
|
||||||
|
// 远端用户停止发送视频流或远端用户禁用视频模块
|
||||||
|
if (remoteUid.toString().length != 9) {
|
||||||
|
// 摄像头
|
||||||
|
if (remoteUid.toString() == state.remoteUid.value) {
|
||||||
|
// 如果停止发送视频流或禁用视频模块的远端用户是当前全员观看主播
|
||||||
|
doHttpGetTvAnchor();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// 共享屏幕(此版本不做)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 用户音量提示回调
|
||||||
|
onAudioVolumeIndication: (RtcConnection connection,
|
||||||
|
List<AudioVolumeInfo> speakers,
|
||||||
|
int speakerNumber,
|
||||||
|
int totalVolume) {
|
||||||
|
if (speakers.isNotEmpty) {
|
||||||
|
for (AudioVolumeInfo avi in speakers) {
|
||||||
|
for (MeetingRoomUser mru in state.cacheUsers.value) {
|
||||||
|
// 用于更改语音布局里的用户列表麦克风
|
||||||
|
if (avi.uid == 0) {
|
||||||
|
//debugPrint("wgs输出===:RTC-用户音量提示(自己):${CountMicrophoneVolume.getVolume(avi.volume!)}");
|
||||||
|
mru.volume = CountMicrophoneVolume.getVolume(avi.volume!);
|
||||||
|
state.microphoneVolume.value =
|
||||||
|
CountMicrophoneVolume.getVolume(avi.volume!);
|
||||||
|
} else {
|
||||||
|
if (avi.uid.toString() == mru.uid) {
|
||||||
|
//debugPrint("wgs输出===:RTC-用户音量提示(远端用户):${speakers[0].uid}--${speakers[0].volume}");
|
||||||
|
mru.volume = CountMicrophoneVolume.getVolume(avi.volume!);
|
||||||
|
|
||||||
|
if (avi.volume != 0) {
|
||||||
|
state.spokesman.value = mru.userName;
|
||||||
|
state.spokesmanVolume.value =
|
||||||
|
CountMicrophoneVolume.getVolume(avi.volume!);
|
||||||
|
} else {
|
||||||
|
state.spokesman.value = "";
|
||||||
|
state.spokesmanVolume.value = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 切换用户角色回调
|
||||||
|
onClientRoleChanged: (RtcConnection connection,
|
||||||
|
ClientRoleType oldRole,
|
||||||
|
ClientRoleType newRole,
|
||||||
|
ClientRoleOptions newRoleOptions) {
|
||||||
|
debugPrint(
|
||||||
|
"wgs输出===:RTC-切换用户角色为:${newRole == ClientRoleType.clientRoleBroadcaster ? "主播" : "观众"}");
|
||||||
|
},
|
||||||
|
|
||||||
|
// token即将在30秒内过期回调
|
||||||
|
onTokenPrivilegeWillExpire: (RtcConnection connection, String token) {
|
||||||
|
doHttpGetMeetingToken(false);
|
||||||
|
},
|
||||||
|
|
||||||
|
// 本地视频状态发生改变回调
|
||||||
|
onLocalVideoStateChanged: (VideoSourceType source,
|
||||||
|
LocalVideoStreamState state, LocalVideoStreamReason reason) {
|
||||||
|
debugPrint("wgs输出===:RTC-本地视频状态发生改变:$source--$state--$reason");
|
||||||
|
},
|
||||||
|
|
||||||
|
// 网络连接状态回调
|
||||||
|
onConnectionStateChanged: (RtcConnection connection,
|
||||||
|
ConnectionStateType stateType,
|
||||||
|
ConnectionChangedReasonType reason) {
|
||||||
|
debugPrint("wgs输出===:RTC-网络连接状态发生改变:"
|
||||||
|
"会议室编号(${connection.channelId}),"
|
||||||
|
"网络状态($stateType-${AgoraUtil.getConnectionStateChangedType(stateType)}),"
|
||||||
|
"网络改变原因($reason-${AgoraUtil.getConnectionChangedReasonType(reason)})");
|
||||||
|
if (stateType == ConnectionStateType.connectionStateReconnecting) {
|
||||||
|
if (EasyLoading.isShow == false) {
|
||||||
|
ToastUtils.showLoadingToMask(
|
||||||
|
"网络故障,正在重连...", EasyLoadingMaskType.black);
|
||||||
|
}
|
||||||
|
} else if (stateType == ConnectionStateType.connectionStateConnected &&
|
||||||
|
reason ==
|
||||||
|
ConnectionChangedReasonType.connectionChangedRejoinSuccess) {
|
||||||
|
ToastUtils.dismiss();
|
||||||
|
if (EasyLoading.isShow == false) {
|
||||||
|
ToastUtils.showSuccessToMask("重连成功!", EasyLoadingMaskType.black);
|
||||||
|
}
|
||||||
|
} else if (reason ==
|
||||||
|
ConnectionChangedReasonType.connectionChangedLost) {
|
||||||
|
// 和服务器失去连接后,再延迟15秒(和signalR Socket一致),让SDK继续重连,如果重连不上则告知用户需要重新加入
|
||||||
|
Future.delayed(const Duration(milliseconds: 15000), () {
|
||||||
|
ToastUtils.dismiss();
|
||||||
|
if (state.isShowOkAlertDialog.value == false) {
|
||||||
|
showOkAlertDialog(
|
||||||
|
context: Get.context!,
|
||||||
|
title: "提示",
|
||||||
|
message: "网络错误,请重新加入会议室",
|
||||||
|
okLabel: "确定",
|
||||||
|
barrierDismissible: false,
|
||||||
|
).then((OkCancelResult value) {
|
||||||
|
Get.back();
|
||||||
|
Get.back();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取设备权限出错回调
|
||||||
|
/*onPermissionError: (PermissionType permissionType){
|
||||||
|
debugPrint("wgs输出===:RTC-获取设备权限出错:$permissionType");
|
||||||
|
if(permissionType == PermissionType.screenCapture){
|
||||||
|
// 获取共享屏幕出错(此版本不做)
|
||||||
|
state.isOpenShare.value = false;
|
||||||
|
stopScreenCapture();
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 加入会议室
|
/// 加入会议室
|
||||||
|
|
@ -1077,7 +933,6 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
|
|
||||||
/// 离开会议室
|
/// 离开会议室
|
||||||
Future<void> leaveMeetingToRtc() async {
|
Future<void> leaveMeetingToRtc() async {
|
||||||
state.rctEngine.value?.unregisterEventHandler(_rtcEngineEventHandler);
|
|
||||||
// 离开
|
// 离开
|
||||||
await state.rctEngine.value?.leaveChannel();
|
await state.rctEngine.value?.leaveChannel();
|
||||||
// 释放资源
|
// 释放资源
|
||||||
|
|
@ -1131,9 +986,4 @@ class MeetingMainLogic extends GetxController with RequestToolMixin {
|
||||||
Future<void> switchCamera() async {
|
Future<void> switchCamera() async {
|
||||||
await state.rctEngine.value?.switchCamera();
|
await state.rctEngine.value?.switchCamera();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 更新 Token
|
|
||||||
Future<void> renewToken(String token) async {
|
|
||||||
await state.rctEngine.value?.renewToken(token);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -44,9 +44,6 @@ class MeetingMainState {
|
||||||
/// 会议室token
|
/// 会议室token
|
||||||
late RxString meetingToken = "".obs;
|
late RxString meetingToken = "".obs;
|
||||||
|
|
||||||
/// 麦克风摄像头权限是否申请成功
|
|
||||||
late RxBool isCameraToMicrophonePermissions = false.obs;
|
|
||||||
|
|
||||||
/// 会议室信息
|
/// 会议室信息
|
||||||
late Rx<MeetingRoomInfo?> meetingRoomInfo = Rx(null);
|
late Rx<MeetingRoomInfo?> meetingRoomInfo = Rx(null);
|
||||||
/// 是否弹出showOkAlertDialog
|
/// 是否弹出showOkAlertDialog
|
||||||
|
|
@ -79,8 +76,6 @@ class MeetingMainState {
|
||||||
late RxBool isOpenShare = false.obs;
|
late RxBool isOpenShare = false.obs;
|
||||||
/// 当前视频主播ID
|
/// 当前视频主播ID
|
||||||
late RxString remoteUid = "".obs;
|
late RxString remoteUid = "".obs;
|
||||||
/// 当前视频主播ID-辅助判断用
|
|
||||||
late RxString remoteAssistantUid = "".obs;
|
|
||||||
/// 是否成功加入会议室
|
/// 是否成功加入会议室
|
||||||
late RxBool isJoinSuccess = false.obs;
|
late RxBool isJoinSuccess = false.obs;
|
||||||
|
|
||||||
|
|
@ -92,16 +87,13 @@ class MeetingMainState {
|
||||||
/// 聊天数据
|
/// 聊天数据
|
||||||
late RxList<MeetingRoomMsg> meetingRoomMsgs = RxList([]);
|
late RxList<MeetingRoomMsg> meetingRoomMsgs = RxList([]);
|
||||||
|
|
||||||
/// 聊天消息未读数量
|
|
||||||
late RxInt msgNum = 0.obs;
|
|
||||||
|
|
||||||
/// signalR 长连接相关
|
/// signalR 长连接相关
|
||||||
late RxString serviceUrl = "http://192.168.2.9:5192/session-manage".obs;
|
late RxString serviceUrl = "http://192.168.2.9:5192/session-manage".obs;
|
||||||
late Rx<HubConnection?> hubConnection = Rx(null);
|
late Rx<HubConnection?> hubConnection = Rx(null);
|
||||||
|
|
||||||
/// 声网相关
|
/// 声网相关
|
||||||
final String appId = "4a4f7be64fa1404ebda74784fe9ac381";
|
final String appId = "4a4f7be64fa1404ebda74784fe9ac381";
|
||||||
Rx<RtcEngine?> rctEngine = Rx<RtcEngine?>(null);
|
late Rx<RtcEngineEx?> rctEngine = Rx(null);
|
||||||
/// 是否自动订阅所有视频流
|
/// 是否自动订阅所有视频流
|
||||||
late RxBool isAutoSubscribeVideo = false.obs;
|
late RxBool isAutoSubscribeVideo = false.obs;
|
||||||
/// 是否自动订阅所有音频流
|
/// 是否自动订阅所有音频流
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,6 @@ import 'package:flutter_floating/floating/floating.dart';
|
||||||
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:liquid_progress_indicator_v2/liquid_progress_indicator.dart';
|
import 'package:liquid_progress_indicator_v2/liquid_progress_indicator.dart';
|
||||||
import 'package:permission_handler/permission_handler.dart';
|
|
||||||
import 'package:preload_page_view/preload_page_view.dart';
|
import 'package:preload_page_view/preload_page_view.dart';
|
||||||
import 'package:wgshare/common/config/app_config.dart';
|
import 'package:wgshare/common/config/app_config.dart';
|
||||||
import 'package:wgshare/common/store/user_store.dart';
|
import 'package:wgshare/common/store/user_store.dart';
|
||||||
|
|
@ -17,8 +16,6 @@ import 'package:wgshare/utils/toast_utils.dart';
|
||||||
|
|
||||||
import '../../utils/color_util.dart';
|
import '../../utils/color_util.dart';
|
||||||
import '../../utils/cus_behavior.dart';
|
import '../../utils/cus_behavior.dart';
|
||||||
import '../../utils/permission/PermissionService.dart';
|
|
||||||
import '../../view/public_dialog.dart';
|
|
||||||
import '../../view/view_svg_path.dart';
|
import '../../view/view_svg_path.dart';
|
||||||
import 'meeting_main_logic.dart';
|
import 'meeting_main_logic.dart';
|
||||||
import 'meeting_main_state.dart';
|
import 'meeting_main_state.dart';
|
||||||
|
|
@ -68,9 +65,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
),
|
),
|
||||||
backgroundColor: ColorUtil.Color_41_41_41,
|
backgroundColor: ColorUtil.Color_41_41_41,
|
||||||
),
|
),
|
||||||
body: Obx((){
|
body: Obx(() => Stack(
|
||||||
|
|
||||||
return Stack(
|
|
||||||
children: [
|
children: [
|
||||||
Column(
|
Column(
|
||||||
children: [
|
children: [
|
||||||
|
|
@ -88,7 +83,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
width: 92.w,
|
width: 92.w,
|
||||||
child: Row(
|
child: Row(
|
||||||
children: [
|
children: [
|
||||||
/*GestureDetector(
|
GestureDetector(
|
||||||
child: Image.asset(
|
child: Image.asset(
|
||||||
'assets/images/meeting_main_narrow.png',
|
'assets/images/meeting_main_narrow.png',
|
||||||
width: 20.w,
|
width: 20.w,
|
||||||
|
|
@ -96,11 +91,8 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
),
|
),
|
||||||
onTap: () {},
|
onTap: () {},
|
||||||
),
|
),
|
||||||
SizedBox(width: 16.w),*/
|
SizedBox(width: 16.w),
|
||||||
GestureDetector(
|
GestureDetector(
|
||||||
child: Container(
|
|
||||||
color: ColorUtil.Color_0_0_0_0,
|
|
||||||
padding: const EdgeInsets.only(top: 10, bottom: 10, right: 12),
|
|
||||||
child: Image.asset(
|
child: Image.asset(
|
||||||
state.communicationMode.value == 1
|
state.communicationMode.value == 1
|
||||||
? 'assets/images/meeting_main_receiver.png'
|
? 'assets/images/meeting_main_receiver.png'
|
||||||
|
|
@ -108,12 +100,9 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
width: 20.w,
|
width: 20.w,
|
||||||
height: 20.h,
|
height: 20.h,
|
||||||
),
|
),
|
||||||
),
|
|
||||||
onTap: () {
|
onTap: () {
|
||||||
if (state.communicationMode.value ==
|
if (state.communicationMode.value == 1 ||
|
||||||
1 ||
|
state.communicationMode.value == 3) {
|
||||||
state.communicationMode.value ==
|
|
||||||
3) {
|
|
||||||
logic.changeMeetingAudioState(true);
|
logic.changeMeetingAudioState(true);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -140,16 +129,13 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
GestureDetector(
|
GestureDetector(
|
||||||
child: Container(
|
|
||||||
color: ColorUtil.Color_0_0_0_0,
|
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
state.meetingRoomInfo.value
|
state.meetingRoomInfo.value?.roomName ??
|
||||||
?.roomName ??
|
|
||||||
'',
|
'',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: Colors.white,
|
color: Colors.white,
|
||||||
|
|
@ -174,7 +160,6 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
|
||||||
onTap: () {
|
onTap: () {
|
||||||
logic.changeMeetingInfoState(true);
|
logic.changeMeetingInfoState(true);
|
||||||
},
|
},
|
||||||
|
|
@ -186,15 +171,11 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
children: [
|
children: [
|
||||||
/// 退出会议
|
/// 退出会议
|
||||||
GestureDetector(
|
GestureDetector(
|
||||||
child: Container(
|
|
||||||
color: ColorUtil.Color_0_0_0_0,
|
|
||||||
padding: const EdgeInsets.only(top: 10, bottom: 10, left: 20),
|
|
||||||
child: Image.asset(
|
child: Image.asset(
|
||||||
'assets/images/meeting_leave.png',
|
'assets/images/meeting_leave.png',
|
||||||
width: 20.w,
|
width: 20.w,
|
||||||
height: 20.h,
|
height: 20.h,
|
||||||
),
|
),
|
||||||
),
|
|
||||||
onTap: () {
|
onTap: () {
|
||||||
Get.bottomSheet(
|
Get.bottomSheet(
|
||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
|
|
@ -222,38 +203,29 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
// 视频-共享
|
// 视频-共享
|
||||||
Visibility(
|
Visibility(
|
||||||
visible: state.pageState.value == 1,
|
visible: state.pageState.value == 1,
|
||||||
child: state.isJoinSuccess.value == true &&
|
child: state.isJoinSuccess.value == true && null != state.rctEngine.value && null != state.users.value && state.users.value.isNotEmpty
|
||||||
null != state.rctEngine.value &&
|
|
||||||
state.users.isNotEmpty
|
|
||||||
? Stack(
|
? Stack(
|
||||||
alignment: Alignment.center,
|
alignment: Alignment.center,
|
||||||
children: [
|
children: [
|
||||||
PreloadPageView.builder(
|
PreloadPageView.builder(
|
||||||
preloadPagesCount: 2,
|
preloadPagesCount: 2,
|
||||||
itemCount: 2,
|
itemCount: 2,
|
||||||
itemBuilder:
|
itemBuilder: (BuildContext context,
|
||||||
(BuildContext context,
|
|
||||||
int position) =>
|
int position) =>
|
||||||
returnPage(position),
|
returnPage(position),
|
||||||
controller:
|
controller: PreloadPageController(
|
||||||
PreloadPageController(
|
|
||||||
initialPage: 0),
|
initialPage: 0),
|
||||||
onPageChanged: (int position) {
|
onPageChanged: (int position) {
|
||||||
state.pageIndex.value =
|
state.pageIndex.value = position;
|
||||||
position;
|
if (state.isSpeak.value == true &&
|
||||||
if (state.isSpeak.value ==
|
state.isOpenCamera.value ==
|
||||||
true &&
|
true &&
|
||||||
state.isOpenCamera
|
state.remoteUid.value != "0") {
|
||||||
.value ==
|
|
||||||
true &&
|
|
||||||
state.remoteUid.value !=
|
|
||||||
"0") {
|
|
||||||
if (position == 0) {
|
if (position == 0) {
|
||||||
state.floating.value
|
state.floating.value
|
||||||
?.open(context);
|
?.open(context);
|
||||||
} else {
|
} else {
|
||||||
state.floating.value
|
state.floating.value?.close();
|
||||||
?.close();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -267,13 +239,12 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
Container(
|
Container(
|
||||||
width: 8.w,
|
width: 8.w,
|
||||||
height: 8.h,
|
height: 8.h,
|
||||||
margin:
|
margin: const EdgeInsets.only(
|
||||||
const EdgeInsets.only(
|
|
||||||
right: 6),
|
right: 6),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius:
|
borderRadius:
|
||||||
BorderRadius
|
BorderRadius.circular(
|
||||||
.circular(8),
|
8),
|
||||||
color: state.pageIndex
|
color: state.pageIndex
|
||||||
.value ==
|
.value ==
|
||||||
0
|
0
|
||||||
|
|
@ -285,13 +256,12 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
Container(
|
Container(
|
||||||
width: 8.w,
|
width: 8.w,
|
||||||
height: 8.h,
|
height: 8.h,
|
||||||
margin:
|
margin: const EdgeInsets.only(
|
||||||
const EdgeInsets.only(
|
|
||||||
left: 6),
|
left: 6),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius:
|
borderRadius:
|
||||||
BorderRadius
|
BorderRadius.circular(
|
||||||
.circular(8),
|
8),
|
||||||
color: state.pageIndex
|
color: state.pageIndex
|
||||||
.value ==
|
.value ==
|
||||||
1
|
1
|
||||||
|
|
@ -311,8 +281,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
)),
|
)),
|
||||||
|
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment:
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
children: [
|
||||||
GestureDetector(
|
GestureDetector(
|
||||||
child: Container(
|
child: Container(
|
||||||
|
|
@ -320,8 +289,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
height: 40.h,
|
height: 40.h,
|
||||||
margin: const EdgeInsets.only(
|
margin: const EdgeInsets.only(
|
||||||
left: 20, bottom: 40),
|
left: 20, bottom: 40),
|
||||||
padding:
|
padding: const EdgeInsets.only(left: 20),
|
||||||
const EdgeInsets.only(left: 20),
|
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: const BorderRadius.only(
|
borderRadius: const BorderRadius.only(
|
||||||
bottomLeft: Radius.circular(56),
|
bottomLeft: Radius.circular(56),
|
||||||
|
|
@ -330,16 +298,12 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
color: ColorUtil.Color_35_35_35_07,
|
color: ColorUtil.Color_35_35_35_07,
|
||||||
border: Border.all(
|
border: Border.all(
|
||||||
width: 1.w,
|
width: 1.w,
|
||||||
color:
|
color: ColorUtil.Color_99_111_158),
|
||||||
ColorUtil.Color_99_111_158),
|
|
||||||
),
|
),
|
||||||
child: Row(
|
child: Row(
|
||||||
crossAxisAlignment:
|
crossAxisAlignment:
|
||||||
CrossAxisAlignment.center,
|
CrossAxisAlignment.center,
|
||||||
mainAxisAlignment:
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
Row(
|
|
||||||
children: [
|
children: [
|
||||||
Image.asset(
|
Image.asset(
|
||||||
'assets/images/meeting_main_chat.png',
|
'assets/images/meeting_main_chat.png',
|
||||||
|
|
@ -351,30 +315,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
'说点什么...',
|
'说点什么...',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 14.sp,
|
fontSize: 14.sp,
|
||||||
color: ColorUtil
|
color: ColorUtil.Color_156_156_156),
|
||||||
.Color_156_156_156),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Visibility(
|
|
||||||
visible: state.msgNum.value > 0 ? true : false,
|
|
||||||
child: Container(
|
|
||||||
width: 18.w,
|
|
||||||
height: 18.h,
|
|
||||||
alignment: Alignment.center,
|
|
||||||
margin: const EdgeInsets.only(right: 12),
|
|
||||||
decoration: const BoxDecoration(
|
|
||||||
borderRadius: BorderRadius.all(Radius.circular(20)),
|
|
||||||
color: ColorUtil.Color_255_69_69,
|
|
||||||
),
|
|
||||||
child: Text(
|
|
||||||
"${state.msgNum.value}",
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 12.sp,
|
|
||||||
color: ColorUtil
|
|
||||||
.Color_255_255_255),
|
|
||||||
)
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
@ -383,12 +324,8 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
Get.bottomSheet(
|
Get.bottomSheet(
|
||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
chatBottomSheet(context));
|
chatBottomSheet(context));
|
||||||
|
|
||||||
state.msgNum.value = 0;
|
|
||||||
|
|
||||||
Future.delayed(
|
Future.delayed(
|
||||||
const Duration(milliseconds: 100),
|
const Duration(milliseconds: 100), () {
|
||||||
() {
|
|
||||||
state.chatController.jumpTo(state
|
state.chatController.jumpTo(state
|
||||||
.chatController
|
.chatController
|
||||||
.position
|
.position
|
||||||
|
|
@ -413,8 +350,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
'结束发言',
|
'结束发言',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 14.sp,
|
fontSize: 14.sp,
|
||||||
color: ColorUtil
|
color: ColorUtil.Color_255_255_255),
|
||||||
.Color_255_255_255),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
|
|
@ -439,9 +375,6 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
children: [
|
children: [
|
||||||
/// 音频
|
/// 音频
|
||||||
GestureDetector(
|
GestureDetector(
|
||||||
child: Container(
|
|
||||||
padding: const EdgeInsets.only(left: 6,right: 6),
|
|
||||||
color: ColorUtil.Color_0_0_0_0,
|
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
|
|
@ -449,8 +382,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
? Image.asset(
|
? Image.asset(
|
||||||
state.isSpeak.value == false
|
state.isSpeak.value == false
|
||||||
? 'assets/images/meeting_main_sqfy.png'
|
? 'assets/images/meeting_main_sqfy.png'
|
||||||
: state.isOpenMicrophone
|
: state.isOpenMicrophone.value ==
|
||||||
.value ==
|
|
||||||
true
|
true
|
||||||
? 'assets/images/meeting_main_microphone_default.png'
|
? 'assets/images/meeting_main_microphone_default.png'
|
||||||
: 'assets/images/meeting_main_sqfy.png',
|
: 'assets/images/meeting_main_sqfy.png',
|
||||||
|
|
@ -463,14 +395,13 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
height: 20.h,
|
height: 20.h,
|
||||||
child: LiquidCustomProgressIndicator(
|
child: LiquidCustomProgressIndicator(
|
||||||
value: state
|
value: state
|
||||||
.microphoneVolume
|
.microphoneVolume.value,
|
||||||
.value,
|
|
||||||
valueColor:
|
valueColor:
|
||||||
const AlwaysStoppedAnimation(
|
const AlwaysStoppedAnimation(
|
||||||
ColorUtil
|
ColorUtil
|
||||||
.Color_2_177_136),
|
.Color_2_177_136),
|
||||||
backgroundColor: ColorUtil
|
backgroundColor:
|
||||||
.Color_255_255_255,
|
ColorUtil.Color_255_255_255,
|
||||||
direction: Axis.vertical,
|
direction: Axis.vertical,
|
||||||
shapePath: ViewSvgPath
|
shapePath: ViewSvgPath
|
||||||
.getMicrpphonePath()),
|
.getMicrpphonePath()),
|
||||||
|
|
@ -484,8 +415,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
Text(
|
Text(
|
||||||
state.isSpeak.value == false
|
state.isSpeak.value == false
|
||||||
? '申请发言'
|
? '申请发言'
|
||||||
: state.isOpenMicrophone.value ==
|
: state.isOpenMicrophone.value == true
|
||||||
true
|
|
||||||
? "手动静音"
|
? "手动静音"
|
||||||
: "解除静音",
|
: "解除静音",
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
|
|
@ -494,7 +424,6 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
|
||||||
onTap: () {
|
onTap: () {
|
||||||
if (state.isSpeak.value == false) {
|
if (state.isSpeak.value == false) {
|
||||||
Get.bottomSheet(
|
Get.bottomSheet(
|
||||||
|
|
@ -502,8 +431,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
applySpeakPermissionBottomSheet(
|
applySpeakPermissionBottomSheet(
|
||||||
context, 1));
|
context, 1));
|
||||||
} else {
|
} else {
|
||||||
if (state.isOpenMicrophone.value ==
|
if (state.isOpenMicrophone.value == false) {
|
||||||
false) {
|
|
||||||
logic.doHttpSetMicr(true);
|
logic.doHttpSetMicr(true);
|
||||||
} else {
|
} else {
|
||||||
logic.doHttpSetMicr(false);
|
logic.doHttpSetMicr(false);
|
||||||
|
|
@ -514,9 +442,6 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
|
|
||||||
/// 视频
|
/// 视频
|
||||||
GestureDetector(
|
GestureDetector(
|
||||||
child: Container(
|
|
||||||
padding: const EdgeInsets.only(left: 6,right: 6),
|
|
||||||
color: ColorUtil.Color_0_0_0_0,
|
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
|
|
@ -543,7 +468,6 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
|
||||||
onTap: () {
|
onTap: () {
|
||||||
if (state.isSpeak.value == false) {
|
if (state.isSpeak.value == false) {
|
||||||
Get.bottomSheet(
|
Get.bottomSheet(
|
||||||
|
|
@ -596,9 +520,6 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
|
|
||||||
/// 成员
|
/// 成员
|
||||||
GestureDetector(
|
GestureDetector(
|
||||||
child: Container(
|
|
||||||
padding: const EdgeInsets.only(left: 6,right: 6),
|
|
||||||
color: ColorUtil.Color_0_0_0_0,
|
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
|
|
@ -616,7 +537,6 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
|
||||||
onTap: () {
|
onTap: () {
|
||||||
Get.bottomSheet(
|
Get.bottomSheet(
|
||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
|
|
@ -632,9 +552,9 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
meetingInfoFloatingLayer(),
|
meetingInfoFloatingLayer(),
|
||||||
meetingAudioFloatingLayer(),
|
meetingAudioFloatingLayer(),
|
||||||
],
|
],
|
||||||
|
))),
|
||||||
|
)
|
||||||
);
|
);
|
||||||
}),),
|
|
||||||
));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 退出会议底部弹窗
|
/// 退出会议底部弹窗
|
||||||
|
|
@ -752,10 +672,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
fontWeight: FontWeight.w500,
|
fontWeight: FontWeight.w500,
|
||||||
color: ColorUtil.Color_134_134_134),
|
color: ColorUtil.Color_134_134_134),
|
||||||
),
|
),
|
||||||
GestureDetector(
|
Row(
|
||||||
child: Container(
|
|
||||||
color: ColorUtil.Color_0_0_0_0,
|
|
||||||
child: Row(
|
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
state.roomNumber.value,
|
state.roomNumber.value,
|
||||||
|
|
@ -764,19 +681,13 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
color: ColorUtil.Color_202_202_202,
|
color: ColorUtil.Color_202_202_202,
|
||||||
fontWeight: FontWeight.w500),
|
fontWeight: FontWeight.w500),
|
||||||
),
|
),
|
||||||
const SizedBox(width: 12),
|
SizedBox(width: 12.w),
|
||||||
Image.asset(
|
Image.asset(
|
||||||
'assets/images/meeting_main_copy.png',
|
'assets/images/meeting_main_copy.png',
|
||||||
width: 18.w,
|
width: 18.w,
|
||||||
height: 18.h,
|
height: 18.h,
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
|
||||||
),
|
|
||||||
onTap: (){
|
|
||||||
Clipboard.setData(ClipboardData(text: state.roomNumber.value));
|
|
||||||
ToastUtils.showSuccess("复制成功");
|
|
||||||
},
|
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
@ -799,19 +710,12 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
fontWeight: FontWeight.w500,
|
fontWeight: FontWeight.w500,
|
||||||
color: ColorUtil.Color_134_134_134),
|
color: ColorUtil.Color_134_134_134),
|
||||||
),
|
),
|
||||||
Container(
|
Text(
|
||||||
width: 100,
|
|
||||||
margin: const EdgeInsets.only(left: 6),
|
|
||||||
alignment: Alignment.centerRight,
|
|
||||||
child: Text(
|
|
||||||
UserStore.to.userInfoEntity.value!.userName,
|
UserStore.to.userInfoEntity.value!.userName,
|
||||||
maxLines: 1,
|
|
||||||
overflow: TextOverflow.ellipsis,
|
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 12.sp,
|
fontSize: 12.sp,
|
||||||
color: ColorUtil.Color_202_202_202,
|
color: ColorUtil.Color_202_202_202,
|
||||||
fontWeight: FontWeight.w500),
|
fontWeight: FontWeight.w500),
|
||||||
),
|
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
@ -847,7 +751,6 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
SizedBox(height: 10.h),
|
SizedBox(height: 10.h),
|
||||||
GestureDetector(
|
GestureDetector(
|
||||||
child: Container(
|
child: Container(
|
||||||
color: ColorUtil.Color_0_0_0_0,
|
|
||||||
padding: const EdgeInsets.only(top: 10, bottom: 10),
|
padding: const EdgeInsets.only(top: 10, bottom: 10),
|
||||||
child: Row(
|
child: Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
|
@ -908,6 +811,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
color: ColorUtil.Color_57_57_57_08,
|
color: ColorUtil.Color_57_57_57_08,
|
||||||
child: Container(
|
child: Container(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
|
padding: const EdgeInsets.only(top: 16, bottom: 16),
|
||||||
margin: const EdgeInsets.only(left: 40, right: 40),
|
margin: const EdgeInsets.only(left: 40, right: 40),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: const BorderRadius.all(Radius.circular(6)),
|
borderRadius: const BorderRadius.all(Radius.circular(6)),
|
||||||
|
|
@ -937,8 +841,8 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
List<Widget> audioList() {
|
List<Widget> audioList() {
|
||||||
List<Widget> audioList = [];
|
List<Widget> audioList = [];
|
||||||
audioList.add(GestureDetector(
|
audioList.add(GestureDetector(
|
||||||
child: Container(
|
child: Column(children: [
|
||||||
child: Text(
|
Text(
|
||||||
'听筒',
|
'听筒',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 14.sp,
|
fontSize: 14.sp,
|
||||||
|
|
@ -949,24 +853,22 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
? ColorUtil.Color_85_117_242
|
? ColorUtil.Color_85_117_242
|
||||||
: ColorUtil.Color_134_134_134),
|
: ColorUtil.Color_134_134_134),
|
||||||
),
|
),
|
||||||
color: ColorUtil.Color_0_0_0_0,
|
Container(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
height: 46.h,
|
height: 1.h,
|
||||||
alignment: Alignment.center,
|
color: ColorUtil.Color_49_47_47,
|
||||||
),
|
margin: const EdgeInsets.only(top: 14, bottom: 14),
|
||||||
|
)
|
||||||
|
]),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
logic.setEnableSpeakerphone(1);
|
logic.setEnableSpeakerphone(1);
|
||||||
logic.changeMeetingAudioState(false);
|
logic.changeMeetingAudioState(false);
|
||||||
},
|
},
|
||||||
));
|
));
|
||||||
audioList.add(Container(
|
|
||||||
width: double.infinity,
|
|
||||||
height: 1.h,
|
|
||||||
color: ColorUtil.Color_49_47_47,
|
|
||||||
));
|
|
||||||
audioList.add(GestureDetector(
|
audioList.add(GestureDetector(
|
||||||
child: Container(
|
child: Column(
|
||||||
child: Text(
|
children: [
|
||||||
|
Text(
|
||||||
'扬声器',
|
'扬声器',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 14.sp,
|
fontSize: 14.sp,
|
||||||
|
|
@ -977,10 +879,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
? ColorUtil.Color_85_117_242
|
? ColorUtil.Color_85_117_242
|
||||||
: ColorUtil.Color_134_134_134),
|
: ColorUtil.Color_134_134_134),
|
||||||
),
|
),
|
||||||
color: ColorUtil.Color_0_0_0_0,
|
],
|
||||||
width: double.infinity,
|
|
||||||
height: 46.h,
|
|
||||||
alignment: Alignment.center,
|
|
||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
logic.setEnableSpeakerphone(3);
|
logic.setEnableSpeakerphone(3);
|
||||||
|
|
@ -1090,32 +989,9 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
PermissionService.checkPermission(permissionList: [Permission.microphone,Permission.camera]).then((value){
|
|
||||||
if(value == true){
|
|
||||||
state.defaulOpenState.value = defaulOpenState;
|
state.defaulOpenState.value = defaulOpenState;
|
||||||
logic.doHttpApplySpeak();
|
logic.doHttpApplySpeak();
|
||||||
Get.back();
|
Get.back();
|
||||||
}else{
|
|
||||||
publicDialog(context,
|
|
||||||
hideCancelBtn: true,
|
|
||||||
title: '请求权限说明',
|
|
||||||
describe:
|
|
||||||
'申请发言需要获取您的麦克风以及摄像头权限,用以确保能够正常进行会议。',
|
|
||||||
leftBtnStr: '拒绝',
|
|
||||||
rightBtnStr: '同意',
|
|
||||||
leftBtnCallback: () {
|
|
||||||
}, rightBtnCallback: () {
|
|
||||||
PermissionService.requestPermissions();
|
|
||||||
/*PermissionService.requestPermissions().then((value){
|
|
||||||
if(value == true){
|
|
||||||
state.defaulOpenState.value = defaulOpenState;
|
|
||||||
logic.doHttpApplySpeak();
|
|
||||||
Get.back();
|
|
||||||
}
|
|
||||||
});*/
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
@ -1280,8 +1156,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 14.sp,
|
fontSize: 14.sp,
|
||||||
fontWeight: FontWeight.w600,
|
fontWeight: FontWeight.w600,
|
||||||
color:
|
color: ColorUtil.Color_243_243_243),
|
||||||
ColorUtil.Color_243_243_243),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
SizedBox(width: 8.w),
|
SizedBox(width: 8.w),
|
||||||
|
|
@ -1325,8 +1200,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
children: [
|
children: [
|
||||||
Container(
|
Container(
|
||||||
child: Image.asset(
|
child: Image.asset(
|
||||||
state.users.value[index]
|
state.users.value[index].enableShare ==
|
||||||
.enableShare ==
|
|
||||||
true
|
true
|
||||||
? 'assets/images/meeting_main_share_currently.png'
|
? 'assets/images/meeting_main_share_currently.png'
|
||||||
: 'assets/images/meeting_main_share_currently_n.png',
|
: 'assets/images/meeting_main_share_currently_n.png',
|
||||||
|
|
@ -1519,14 +1393,13 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text: state.meetingRoomMsgs.value[index].userName,
|
text: state.meetingRoomMsgs.value[index].userName,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 12.sp,
|
fontSize: 12.sp, color: ColorUtil.Color_202_202_202),
|
||||||
color: ColorUtil.Color_202_202_202),
|
|
||||||
),
|
),
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text: " ${state.meetingRoomMsgs.value[index].time}",
|
text: " ${state.meetingRoomMsgs.value[index].time}",
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 10.sp,
|
fontSize: 10.sp, color: ColorUtil.Color_202_202_202
|
||||||
color: ColorUtil.Color_202_202_202),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
@ -1579,14 +1452,13 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text: "${state.meetingRoomMsgs.value[index].time} ",
|
text: "${state.meetingRoomMsgs.value[index].time} ",
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 10.sp,
|
fontSize: 10.sp, color: ColorUtil.Color_202_202_202
|
||||||
color: ColorUtil.Color_202_202_202),
|
),
|
||||||
),
|
),
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text: state.meetingRoomMsgs.value[index].userName,
|
text: state.meetingRoomMsgs.value[index].userName,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 12.sp,
|
fontSize: 12.sp, color: ColorUtil.Color_202_202_202),
|
||||||
color: ColorUtil.Color_202_202_202),
|
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
@ -1693,7 +1565,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
return Stack(
|
return Stack(
|
||||||
alignment: Alignment.center,
|
alignment: Alignment.center,
|
||||||
children: [
|
children: [
|
||||||
state.remoteAssistantUid.value != ""
|
state.remoteUid.value != ""
|
||||||
? AgoraVideoView(
|
? AgoraVideoView(
|
||||||
controller: VideoViewController(
|
controller: VideoViewController(
|
||||||
rtcEngine: state.rctEngine.value!,
|
rtcEngine: state.rctEngine.value!,
|
||||||
|
|
@ -1720,8 +1592,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
Text(
|
Text(
|
||||||
'主持人正在赶来的路上...',
|
'主持人正在赶来的路上...',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: ColorUtil.Color_255_255_255,
|
color: ColorUtil.Color_255_255_255, fontSize: 14.sp),
|
||||||
fontSize: 14.sp),
|
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
@ -1767,7 +1638,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
}));
|
}));
|
||||||
|
|
||||||
/// gridview
|
/// gridview
|
||||||
pageList.add(GetBuilder<MeetingMainLogic>(builder: (controll) {
|
pageList.add(GetBuilder<MeetingMainLogic>(builder: (controll){
|
||||||
return Container(
|
return Container(
|
||||||
color: ColorUtil.Color_57_57_57,
|
color: ColorUtil.Color_57_57_57,
|
||||||
child: GridView.builder(
|
child: GridView.builder(
|
||||||
|
|
@ -1775,19 +1646,17 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
crossAxisCount: 2, childAspectRatio: 0.8, crossAxisSpacing: 0),
|
crossAxisCount: 2, childAspectRatio: 0.8, crossAxisSpacing: 0),
|
||||||
itemCount: state.cacheUsers.value.length,
|
itemCount: state.cacheUsers.value.length,
|
||||||
itemBuilder: (BuildContext ctx, index) {
|
itemBuilder: (BuildContext ctx, index) {
|
||||||
return GestureDetector(
|
return Stack(
|
||||||
child: Stack(
|
|
||||||
children: [
|
children: [
|
||||||
state.cacheUsers.value[index].enableCamera == true
|
state.cacheUsers.value[index].enableCamera == true
|
||||||
? state.cacheUsers.value[index].uid ==
|
? state.cacheUsers.value[index].uid == UserStore.to.userInfoEntity.value!.uid
|
||||||
UserStore.to.userInfoEntity.value!.uid
|
|
||||||
? AgoraVideoView(
|
? AgoraVideoView(
|
||||||
controller: VideoViewController(
|
controller: VideoViewController(
|
||||||
rtcEngine: state.rctEngine.value!,
|
rtcEngine: state.rctEngine.value!,
|
||||||
canvas: const VideoCanvas(
|
canvas: const VideoCanvas(
|
||||||
uid: 0,
|
uid: 0,
|
||||||
setupMode: VideoViewSetupMode
|
setupMode:
|
||||||
.videoViewSetupAdd)),
|
VideoViewSetupMode.videoViewSetupAdd)),
|
||||||
)
|
)
|
||||||
: AgoraVideoView(
|
: AgoraVideoView(
|
||||||
controller: VideoViewController.remote(
|
controller: VideoViewController.remote(
|
||||||
|
|
@ -1845,8 +1714,7 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(2),
|
borderRadius: BorderRadius.circular(2),
|
||||||
color: ColorUtil.Color_0_0_0_96),
|
color: ColorUtil.Color_0_0_0_96),
|
||||||
child: state.cacheUsers.value[index].enableMicr ==
|
child: state.cacheUsers.value[index].enableMicr == true
|
||||||
true
|
|
||||||
? Row(
|
? Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
|
|
@ -1870,15 +1738,14 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
SizedBox(
|
SizedBox(
|
||||||
width: 70,
|
width: 70,
|
||||||
child: Text(
|
child: Text(
|
||||||
state
|
state.cacheUsers.value[index].userName,
|
||||||
.cacheUsers.value[index].userName,
|
|
||||||
maxLines: 1,
|
maxLines: 1,
|
||||||
overflow: TextOverflow.ellipsis,
|
overflow: TextOverflow.ellipsis,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 12.sp,
|
fontSize: 12.sp,
|
||||||
color:
|
color: ColorUtil.Color_255_255_255),
|
||||||
ColorUtil.Color_255_255_255),
|
)
|
||||||
))
|
)
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
: Row(
|
: Row(
|
||||||
|
|
@ -1893,15 +1760,14 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
SizedBox(
|
SizedBox(
|
||||||
width: 70,
|
width: 70,
|
||||||
child: Text(
|
child: Text(
|
||||||
state
|
state.cacheUsers.value[index].userName,
|
||||||
.cacheUsers.value[index].userName,
|
|
||||||
maxLines: 1,
|
maxLines: 1,
|
||||||
overflow: TextOverflow.ellipsis,
|
overflow: TextOverflow.ellipsis,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 12.sp,
|
fontSize: 12.sp,
|
||||||
color:
|
color: ColorUtil.Color_255_255_255),
|
||||||
ColorUtil.Color_255_255_255),
|
)
|
||||||
))
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
@ -1909,14 +1775,6 @@ class MeetingMainPageState extends State<MeetingMainPage> {
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
|
||||||
onTap: (){
|
|
||||||
if(state.cacheUsers.value[index].enableCamera == true){
|
|
||||||
logic.checkLargeScreen(state.cacheUsers.value[index].uid);
|
|
||||||
}else{
|
|
||||||
ToastUtils.showError("该用户暂未开启摄像头");
|
|
||||||
}
|
|
||||||
},
|
|
||||||
);
|
);
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -57,13 +57,11 @@ class MeetingMainVoiceComponent extends StatelessWidget {
|
||||||
),
|
),
|
||||||
SizedBox(height: 6.h),
|
SizedBox(height: 6.h),
|
||||||
users[index].enableMicr == true
|
users[index].enableMicr == true
|
||||||
? Text.rich(
|
? Row(
|
||||||
maxLines: 1,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
overflow: TextOverflow.ellipsis,
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
TextSpan(
|
|
||||||
children: [
|
children: [
|
||||||
WidgetSpan(
|
Container(
|
||||||
child: Container(
|
|
||||||
width: 20.w,
|
width: 20.w,
|
||||||
height: 20.h,
|
height: 20.h,
|
||||||
child: LiquidCustomProgressIndicator(
|
child: LiquidCustomProgressIndicator(
|
||||||
|
|
@ -73,42 +71,42 @@ class MeetingMainVoiceComponent extends StatelessWidget {
|
||||||
direction: Axis.vertical,
|
direction: Axis.vertical,
|
||||||
shapePath: ViewSvgPath.getMicrpphonePath()
|
shapePath: ViewSvgPath.getMicrpphonePath()
|
||||||
),
|
),
|
||||||
)
|
|
||||||
),
|
),
|
||||||
TextSpan(
|
SizedBox(
|
||||||
text: users[index].userName,
|
width: 70,
|
||||||
|
child: Text(
|
||||||
|
users[index].userName,
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 12.sp,
|
fontSize: 12.sp,
|
||||||
color: ColorUtil.Color_255_255_255),
|
color: ColorUtil.Color_255_255_255),
|
||||||
|
|
||||||
),
|
),
|
||||||
],
|
|
||||||
),
|
|
||||||
textAlign: TextAlign.left,
|
|
||||||
)
|
)
|
||||||
: Text.rich(
|
],
|
||||||
maxLines: 1,
|
)
|
||||||
overflow: TextOverflow.ellipsis,
|
: Row(
|
||||||
TextSpan(
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
WidgetSpan(
|
Image.asset(
|
||||||
child: Image.asset(
|
|
||||||
'assets/images/meeting_main_microphone_open.png',
|
'assets/images/meeting_main_microphone_open.png',
|
||||||
width: 20.w,
|
width: 20.w,
|
||||||
height: 20.h,
|
height: 20.h,
|
||||||
)
|
|
||||||
),
|
),
|
||||||
TextSpan(
|
SizedBox(
|
||||||
text: users[index].userName,
|
width: 70,
|
||||||
|
child: Text(
|
||||||
|
users[index].userName,
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 12.sp,
|
fontSize: 12.sp,
|
||||||
color: ColorUtil.Color_255_255_255),
|
color: ColorUtil.Color_255_255_255),
|
||||||
|
|
||||||
),
|
),
|
||||||
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
textAlign: TextAlign.left,
|
|
||||||
)
|
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
})),
|
})),
|
||||||
|
|
|
||||||
|
|
@ -7,4 +7,10 @@ import 'user_state.dart';
|
||||||
|
|
||||||
class UserLogic extends GetxController with RequestToolMixin {
|
class UserLogic extends GetxController with RequestToolMixin {
|
||||||
final UserState state = UserState();
|
final UserState state = UserState();
|
||||||
|
|
||||||
|
/// 退出登录
|
||||||
|
void logout(){
|
||||||
|
UserStore.to.erase();
|
||||||
|
Get.toNamed(Routes.loginPage);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@ class UserPageState extends State<UserPage> {
|
||||||
),
|
),
|
||||||
Container(
|
Container(
|
||||||
padding: const EdgeInsets.only(left: 16, right: 16),
|
padding: const EdgeInsets.only(left: 16, right: 16),
|
||||||
margin: const EdgeInsets.only(top: 30),
|
margin: const EdgeInsets.only(top: 20),
|
||||||
child: Row(
|
child: Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
children: [
|
children: [
|
||||||
|
|
|
||||||
|
|
@ -73,8 +73,6 @@ class ColorUtil {
|
||||||
|
|
||||||
static const Color_255_69_69 = Color.fromRGBO(255, 69, 69, 1);
|
static const Color_255_69_69 = Color.fromRGBO(255, 69, 69, 1);
|
||||||
|
|
||||||
static const Color_84_84_84 = Color.fromRGBO(84, 84, 84, 1);
|
|
||||||
|
|
||||||
/// 十六进制颜色,
|
/// 十六进制颜色,
|
||||||
/// hex, 十六进制值,例如:0xffffff,
|
/// hex, 十六进制值,例如:0xffffff,
|
||||||
/// alpha, 透明度 [0.0,1.0]
|
/// alpha, 透明度 [0.0,1.0]
|
||||||
|
|
|
||||||
|
|
@ -17,16 +17,9 @@ class AndroidPermissionHandler {
|
||||||
await requestMicrophonePermission();
|
await requestMicrophonePermission();
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<bool> requestCameraToMicrophonePermissions() async {
|
Future<void> requestCameraToMicrophonePermissions() async {
|
||||||
var isCameraPermission = false;
|
await requestCameraPermission();
|
||||||
var isMicrophonePermissio = false;
|
await requestMicrophonePermission();
|
||||||
if(await requestCameraPermission() == true){
|
|
||||||
isCameraPermission = true;
|
|
||||||
}
|
|
||||||
if(await requestMicrophonePermission() == true){
|
|
||||||
isMicrophonePermissio = true;
|
|
||||||
}
|
|
||||||
return isCameraPermission == true && isMicrophonePermissio == true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> requestLocationPermission() async {
|
Future<void> requestLocationPermission() async {
|
||||||
|
|
@ -65,12 +58,10 @@ class AndroidPermissionHandler {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<bool> requestCameraPermission() async {
|
Future<void> requestCameraPermission() async {
|
||||||
var isCameraPermission = false;
|
|
||||||
PermissionStatus status = await Permission.camera.request();
|
PermissionStatus status = await Permission.camera.request();
|
||||||
if (status.isGranted) {
|
if (status.isGranted) {
|
||||||
print("Android: 摄像头权限已授予");
|
print("Android: 摄像头权限已授予");
|
||||||
isCameraPermission = true;
|
|
||||||
} else if (status.isPermanentlyDenied) {
|
} else if (status.isPermanentlyDenied) {
|
||||||
print("Android: 摄像头权限被永久拒绝,请前往设置开启");
|
print("Android: 摄像头权限被永久拒绝,请前往设置开启");
|
||||||
ToastUtils.showError("权限被永久拒绝,请前往设置开启!");
|
ToastUtils.showError("权限被永久拒绝,请前往设置开启!");
|
||||||
|
|
@ -79,21 +70,17 @@ class AndroidPermissionHandler {
|
||||||
print("Android: 摄像头权限被拒绝");
|
print("Android: 摄像头权限被拒绝");
|
||||||
ToastUtils.showError("权限被拒绝,可能会导致相关功能不可用!");
|
ToastUtils.showError("权限被拒绝,可能会导致相关功能不可用!");
|
||||||
}
|
}
|
||||||
return isCameraPermission;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<bool> requestStoragePermission() async {
|
Future<void> requestStoragePermission() async {
|
||||||
var isStoragePermission = false;
|
PermissionStatus status = await Permission.storage.request();
|
||||||
PermissionStatus status = await Permission.manageExternalStorage.request();
|
|
||||||
if (status.isGranted) {
|
if (status.isGranted) {
|
||||||
print("Android: 存储权限已授予");
|
print("Android: 存储权限已授予");
|
||||||
isStoragePermission = true;
|
|
||||||
} else if (status.isPermanentlyDenied) {
|
} else if (status.isPermanentlyDenied) {
|
||||||
print("Android: 存储权限被永久拒绝,请前往设置开启");
|
print("Android: 存储权限被永久拒绝,请前往设置开启");
|
||||||
} else {
|
} else {
|
||||||
print("Android: 存储权限被拒绝");
|
print("Android: 存储权限被拒绝");
|
||||||
}
|
}
|
||||||
return isStoragePermission;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> requestNotificationPermission() async {
|
Future<void> requestNotificationPermission() async {
|
||||||
|
|
@ -118,12 +105,10 @@ class AndroidPermissionHandler {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future<bool> requestMicrophonePermission() async {
|
static Future<void> requestMicrophonePermission() async {
|
||||||
var isMicrophonePermission = false;
|
|
||||||
PermissionStatus status = await Permission.microphone.request();
|
PermissionStatus status = await Permission.microphone.request();
|
||||||
if (status.isGranted) {
|
if (status.isGranted) {
|
||||||
print("Android: 麦克风权限已授予");
|
print("Android: 麦克风权限已授予");
|
||||||
isMicrophonePermission = true;
|
|
||||||
} else if (status.isPermanentlyDenied) {
|
} else if (status.isPermanentlyDenied) {
|
||||||
print("Android: 麦克风权限被永久拒绝,请前往设置开启");
|
print("Android: 麦克风权限被永久拒绝,请前往设置开启");
|
||||||
ToastUtils.showError("权限被永久拒绝,请前往设置开启!");
|
ToastUtils.showError("权限被永久拒绝,请前往设置开启!");
|
||||||
|
|
@ -132,6 +117,5 @@ class AndroidPermissionHandler {
|
||||||
print("Android: 麦克风限被拒绝");
|
print("Android: 麦克风限被拒绝");
|
||||||
ToastUtils.showError("权限被拒绝,可能会导致相关功能不可用!");
|
ToastUtils.showError("权限被拒绝,可能会导致相关功能不可用!");
|
||||||
}
|
}
|
||||||
return isMicrophonePermission;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -13,16 +13,9 @@ class IosPermissionHandler {
|
||||||
await requestMicrophonePermission();
|
await requestMicrophonePermission();
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<bool> requestCameraToMicrophonePermissions() async {
|
Future<void> requestCameraToMicrophonePermissions() async {
|
||||||
var isCameraPermission = false;
|
await requestCameraPermission();
|
||||||
var isMicrophonePermissio = false;
|
await requestMicrophonePermission();
|
||||||
if(await requestCameraPermission() == true){
|
|
||||||
isCameraPermission = true;
|
|
||||||
}
|
|
||||||
if(await requestMicrophonePermission() == true){
|
|
||||||
isMicrophonePermissio = true;
|
|
||||||
}
|
|
||||||
return isCameraPermission == true && isMicrophonePermissio == true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> requestLocationPermission() async {
|
Future<void> requestLocationPermission() async {
|
||||||
|
|
@ -45,12 +38,10 @@ class IosPermissionHandler {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<bool> requestCameraPermission() async {
|
Future<void> requestCameraPermission() async {
|
||||||
var isCameraPermission = false;
|
|
||||||
PermissionStatus status = await Permission.camera.request();
|
PermissionStatus status = await Permission.camera.request();
|
||||||
if (status.isGranted) {
|
if (status.isGranted) {
|
||||||
print("iOS: 摄像头权限已授予");
|
print("iOS: 摄像头权限已授予");
|
||||||
isCameraPermission = true;
|
|
||||||
} else if (status.isPermanentlyDenied) {
|
} else if (status.isPermanentlyDenied) {
|
||||||
print("iOS: 摄像头权限被永久拒绝,请前往设置开启");
|
print("iOS: 摄像头权限被永久拒绝,请前往设置开启");
|
||||||
ToastUtils.showError("权限被永久拒绝,请前往设置开启!");
|
ToastUtils.showError("权限被永久拒绝,请前往设置开启!");
|
||||||
|
|
@ -59,21 +50,17 @@ class IosPermissionHandler {
|
||||||
print("iOS: 摄像头权限被拒绝");
|
print("iOS: 摄像头权限被拒绝");
|
||||||
ToastUtils.showError("权限被拒绝,可能会导致相关功能不可用!");
|
ToastUtils.showError("权限被拒绝,可能会导致相关功能不可用!");
|
||||||
}
|
}
|
||||||
return isCameraPermission;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<bool> requestStoragePermission() async {
|
Future<void> requestStoragePermission() async {
|
||||||
var isStoragePermission = false;
|
|
||||||
PermissionStatus status = await Permission.photos.request();
|
PermissionStatus status = await Permission.photos.request();
|
||||||
if (status.isGranted) {
|
if (status.isGranted) {
|
||||||
print("iOS: 存储权限已授予");
|
print("iOS: 存储权限已授予");
|
||||||
isStoragePermission = true;
|
|
||||||
} else if (status.isPermanentlyDenied) {
|
} else if (status.isPermanentlyDenied) {
|
||||||
print("iOS: 存储权限被永久拒绝,请前往设置开启");
|
print("iOS: 存储权限被永久拒绝,请前往设置开启");
|
||||||
} else {
|
} else {
|
||||||
print("iOS: 存储权限被拒绝");
|
print("iOS: 存储权限被拒绝");
|
||||||
}
|
}
|
||||||
return isStoragePermission;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> requestNotificationPermission() async {
|
Future<void> requestNotificationPermission() async {
|
||||||
|
|
@ -96,12 +83,10 @@ class IosPermissionHandler {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future<bool> requestMicrophonePermission() async {
|
static Future<void> requestMicrophonePermission() async {
|
||||||
var isMicrophonePermission = false;
|
|
||||||
PermissionStatus status = await Permission.microphone.request();
|
PermissionStatus status = await Permission.microphone.request();
|
||||||
if (status.isGranted) {
|
if (status.isGranted) {
|
||||||
print("iOS: 麦克风权限已授予");
|
print("iOS: 麦克风权限已授予");
|
||||||
isMicrophonePermission = true;
|
|
||||||
} else if (status.isPermanentlyDenied) {
|
} else if (status.isPermanentlyDenied) {
|
||||||
print("iOS: 麦克风权限被永久拒绝,请前往设置开启");
|
print("iOS: 麦克风权限被永久拒绝,请前往设置开启");
|
||||||
ToastUtils.showError("权限被永久拒绝,请前往设置开启!");
|
ToastUtils.showError("权限被永久拒绝,请前往设置开启!");
|
||||||
|
|
@ -110,6 +95,5 @@ class IosPermissionHandler {
|
||||||
print("iOS: 麦克风限被拒绝");
|
print("iOS: 麦克风限被拒绝");
|
||||||
ToastUtils.showError("权限被拒绝,可能会导致相关功能不可用!");
|
ToastUtils.showError("权限被拒绝,可能会导致相关功能不可用!");
|
||||||
}
|
}
|
||||||
return isMicrophonePermission;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,47 +1,16 @@
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'dart:ui';
|
|
||||||
|
|
||||||
import 'package:permission_handler/permission_handler.dart';
|
|
||||||
|
|
||||||
import 'AndroidPermissionHandler.dart';
|
import 'AndroidPermissionHandler.dart';
|
||||||
import 'IosPermissionHandler.dart';
|
import 'IosPermissionHandler.dart';
|
||||||
|
|
||||||
class PermissionService {
|
class PermissionService {
|
||||||
static Future<bool> requestPermissions() async {
|
static Future<void> requestPermissions() async {
|
||||||
var isRequestPermissions = false;
|
|
||||||
if (Platform.isIOS) {
|
if (Platform.isIOS) {
|
||||||
// 调用iOS权限处理逻辑
|
// 调用iOS权限处理逻辑
|
||||||
isRequestPermissions = await IosPermissionHandler().requestCameraToMicrophonePermissions();
|
await IosPermissionHandler().requestCameraToMicrophonePermissions();
|
||||||
} else if (Platform.isAndroid) {
|
} else if (Platform.isAndroid) {
|
||||||
// 调用Android权限处理逻辑
|
// 调用Android权限处理逻辑
|
||||||
isRequestPermissions = await AndroidPermissionHandler().requestCameraToMicrophonePermissions();
|
await AndroidPermissionHandler().requestCameraToMicrophonePermissions();
|
||||||
}
|
}
|
||||||
return isRequestPermissions;
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future<bool> requestStoragePermissions() async {
|
|
||||||
var isRequestPermissions = false;
|
|
||||||
if (Platform.isIOS) {
|
|
||||||
// 调用iOS权限处理逻辑
|
|
||||||
isRequestPermissions = await IosPermissionHandler().requestStoragePermission();
|
|
||||||
} else if (Platform.isAndroid) {
|
|
||||||
// 调用Android权限处理逻辑
|
|
||||||
isRequestPermissions = await AndroidPermissionHandler().requestStoragePermission();
|
|
||||||
}
|
|
||||||
return isRequestPermissions;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 检测是否有权限
|
|
||||||
static Future<bool> checkPermission({required List<Permission> permissionList}) async {
|
|
||||||
var isRequestPermissions = true;
|
|
||||||
///遍历当前权限申请列表
|
|
||||||
for (Permission permission in permissionList) {
|
|
||||||
PermissionStatus status = await permission.status;
|
|
||||||
///如果有不允许状态
|
|
||||||
if (!status.isGranted) {
|
|
||||||
isRequestPermissions = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return isRequestPermissions;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,23 +0,0 @@
|
||||||
import 'package:flutter/cupertino.dart';
|
|
||||||
import 'package:get/get.dart';
|
|
||||||
import 'package:get/get_core/src/get_main.dart';
|
|
||||||
|
|
||||||
class RouteUtil {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取当前路由
|
|
||||||
*/
|
|
||||||
static String getRoute(){
|
|
||||||
var routePath = Get.currentRoute;
|
|
||||||
return routePath;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取context
|
|
||||||
*/
|
|
||||||
static BuildContext getContext(){
|
|
||||||
var context = Get.context!;
|
|
||||||
return context;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,175 +0,0 @@
|
||||||
import 'dart:io';
|
|
||||||
|
|
||||||
import 'package:dio/dio.dart';
|
|
||||||
import 'package:flutter/cupertino.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:flutter/services.dart';
|
|
||||||
import 'package:flutter_screenutil/src/size_extension.dart';
|
|
||||||
import 'package:get/get.dart';
|
|
||||||
import 'package:get/get_core/src/get_main.dart';
|
|
||||||
import 'package:install_plugin/install_plugin.dart';
|
|
||||||
import 'package:path_provider/path_provider.dart';
|
|
||||||
import 'package:wgshare/utils/color_util.dart';
|
|
||||||
import 'package:wgshare/utils/toast_utils.dart';
|
|
||||||
import 'package:wgshare/view/upgrade/util/load_file_cancel_request.dart';
|
|
||||||
|
|
||||||
publicDialog(BuildContext context,
|
|
||||||
{String title = "提示",
|
|
||||||
required String describe,
|
|
||||||
btnWidth = 116.0,
|
|
||||||
btnHeight = 42.0,
|
|
||||||
required String leftBtnStr,
|
|
||||||
required String rightBtnStr,
|
|
||||||
bool hideCancelBtn = false,
|
|
||||||
required Function leftBtnCallback,
|
|
||||||
required Function rightBtnCallback}) {
|
|
||||||
showDialog(
|
|
||||||
context: context,
|
|
||||||
barrierDismissible: hideCancelBtn,
|
|
||||||
builder: (_) => PopScope(
|
|
||||||
canPop: hideCancelBtn,
|
|
||||||
child: HintDialog(title, describe, btnWidth, btnHeight, leftBtnStr,
|
|
||||||
rightBtnStr, hideCancelBtn,leftBtnCallback,rightBtnCallback),
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
class HintDialog extends StatefulWidget {
|
|
||||||
final String title; //标题
|
|
||||||
final String describe; //描述
|
|
||||||
final double btnWidth; //按钮宽度
|
|
||||||
final double btnHeight; //按钮高度
|
|
||||||
final String leftBtnStr; // 左侧按钮内容
|
|
||||||
final String rightBtnStr; //右侧按钮内容
|
|
||||||
final bool hideCancelBtn; //是否隐藏取消btn(实际用途为是否可以点击空白和返回键关闭)
|
|
||||||
final Function leftBtnCallback;
|
|
||||||
final Function rightBtnCallback;
|
|
||||||
|
|
||||||
HintDialog(
|
|
||||||
this.title,
|
|
||||||
this.describe,
|
|
||||||
this.btnWidth,
|
|
||||||
this.btnHeight,
|
|
||||||
this.leftBtnStr,
|
|
||||||
this.rightBtnStr,
|
|
||||||
this.hideCancelBtn,
|
|
||||||
this.leftBtnCallback,
|
|
||||||
this.rightBtnCallback);
|
|
||||||
|
|
||||||
@override
|
|
||||||
State<StatefulWidget> createState() {
|
|
||||||
return HintDialogState();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class HintDialogState extends State<HintDialog> {
|
|
||||||
@override
|
|
||||||
void initState() {
|
|
||||||
super.initState();
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return Center(
|
|
||||||
child: Container(
|
|
||||||
height: 250.h,
|
|
||||||
margin: const EdgeInsets.only(left: 40, right: 40),
|
|
||||||
padding:
|
|
||||||
const EdgeInsets.only(top: 20, bottom: 20, left: 12, right: 12),
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: const Color.fromRGBO(255, 255, 255, 1),
|
|
||||||
borderRadius: BorderRadius.circular(8),
|
|
||||||
),
|
|
||||||
child: _contentStyle(),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
///内容区域样式
|
|
||||||
_contentStyle() {
|
|
||||||
return Column(
|
|
||||||
children: <Widget>[
|
|
||||||
_title(),
|
|
||||||
Expanded(
|
|
||||||
child: _hintMsg(),
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
GestureDetector(
|
|
||||||
child: Container(
|
|
||||||
width: widget.btnWidth,
|
|
||||||
height: widget.btnHeight,
|
|
||||||
decoration: const BoxDecoration(
|
|
||||||
borderRadius: BorderRadius.all(Radius.circular(99)),
|
|
||||||
color: ColorUtil.Color_230_230_230,
|
|
||||||
),
|
|
||||||
margin: const EdgeInsets.only(top: 12, left: 12),
|
|
||||||
alignment: Alignment.center,
|
|
||||||
child: Text(
|
|
||||||
widget.leftBtnStr,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 14.sp, color: ColorUtil.Color_255_255_255),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
onTap: () {
|
|
||||||
Get.back();
|
|
||||||
widget.leftBtnCallback();
|
|
||||||
},
|
|
||||||
),
|
|
||||||
GestureDetector(
|
|
||||||
child: Container(
|
|
||||||
width: widget.btnWidth,
|
|
||||||
height: widget.btnHeight,
|
|
||||||
decoration: const BoxDecoration(
|
|
||||||
borderRadius: BorderRadius.all(Radius.circular(99)),
|
|
||||||
color: ColorUtil.Color_85_117_242,
|
|
||||||
),
|
|
||||||
margin: const EdgeInsets.only(top: 12, right: 12),
|
|
||||||
alignment: Alignment.center,
|
|
||||||
child: Text(
|
|
||||||
widget.rightBtnStr,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 14.sp, color: ColorUtil.Color_255_255_255),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
onTap: () {
|
|
||||||
Get.back();
|
|
||||||
widget.rightBtnCallback();
|
|
||||||
},
|
|
||||||
)
|
|
||||||
],
|
|
||||||
)
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
///提示标题布局
|
|
||||||
_title() {
|
|
||||||
return Container(
|
|
||||||
alignment: Alignment.center,
|
|
||||||
margin: const EdgeInsets.only(bottom: 12),
|
|
||||||
child: Text(widget.title,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 16.sp,
|
|
||||||
color: ColorUtil.Color_85_117_242,
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
decoration: TextDecoration.none)),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
///提示信息布局
|
|
||||||
_hintMsg() {
|
|
||||||
return SingleChildScrollView(
|
|
||||||
child: Container(
|
|
||||||
alignment: Alignment.topLeft,
|
|
||||||
margin: const EdgeInsets.only(left: 8, right: 8),
|
|
||||||
child: Text(widget.describe,
|
|
||||||
style: const TextStyle(
|
|
||||||
fontSize: 14,
|
|
||||||
color: ColorUtil.Color_89_88_88,
|
|
||||||
decoration: TextDecoration.none,
|
|
||||||
height: 1.4)),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,218 +0,0 @@
|
||||||
import 'dart:io';
|
|
||||||
|
|
||||||
import 'package:flutter/cupertino.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:flutter/services.dart';
|
|
||||||
import 'package:flutter_screenutil/src/size_extension.dart';
|
|
||||||
import 'package:get/get.dart';
|
|
||||||
import 'package:install_plugin/install_plugin.dart';
|
|
||||||
import 'package:path_provider/path_provider.dart';
|
|
||||||
import 'package:permission_handler/permission_handler.dart';
|
|
||||||
import 'package:wgshare/utils/color_util.dart';
|
|
||||||
import 'package:wgshare/utils/toast_utils.dart';
|
|
||||||
import 'package:wgshare/view/upgrade/util/load_file_cancel_request.dart';
|
|
||||||
|
|
||||||
import '../../common/store/business_store.dart';
|
|
||||||
import '../../utils/permission/PermissionService.dart';
|
|
||||||
import '../public_dialog.dart';
|
|
||||||
|
|
||||||
hideUpgradeDialog(
|
|
||||||
BuildContext context,
|
|
||||||
String describe,
|
|
||||||
String apkSavePath,
|
|
||||||
String appStoreUrl,
|
|
||||||
int versionCode,{
|
|
||||||
btnWidth = 116.0,
|
|
||||||
btnHeight = 42.0,
|
|
||||||
bool hideCancelBtn = false,
|
|
||||||
}) {
|
|
||||||
showDialog(
|
|
||||||
context: context,
|
|
||||||
barrierDismissible: hideCancelBtn,
|
|
||||||
builder: (_) => PopScope(
|
|
||||||
canPop: hideCancelBtn,
|
|
||||||
child: HintDialog(describe, apkSavePath, appStoreUrl, versionCode, btnWidth,
|
|
||||||
btnHeight, hideCancelBtn),
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
class HintDialog extends StatefulWidget {
|
|
||||||
final String describe; //版本更新内容
|
|
||||||
final String apkSavePath;
|
|
||||||
final String appStoreUrl;
|
|
||||||
final int versionCode;
|
|
||||||
final double btnWidth; //按钮宽度
|
|
||||||
final double btnHeight; //按钮高度
|
|
||||||
final bool hideCancelBtn; //是否隐藏取消btn(实际用途还是否可以点击空白和返回键关闭)
|
|
||||||
|
|
||||||
HintDialog(this.describe, this.apkSavePath, this.appStoreUrl, this.versionCode, this.btnWidth,
|
|
||||||
this.btnHeight, this.hideCancelBtn);
|
|
||||||
|
|
||||||
@override
|
|
||||||
State<StatefulWidget> createState() {
|
|
||||||
return HintDialogState();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class HintDialogState extends State<HintDialog> {
|
|
||||||
// 安装按钮状态,0:未点击、1:安装成功、2:安装失败
|
|
||||||
int confirmBtnType = 0;
|
|
||||||
|
|
||||||
// 按钮文字
|
|
||||||
String btnStr = "立即安装";
|
|
||||||
|
|
||||||
// apk路径
|
|
||||||
late String apkPath;
|
|
||||||
|
|
||||||
late loadFileCancelRequest loadRequest;
|
|
||||||
|
|
||||||
@override
|
|
||||||
void initState() {
|
|
||||||
super.initState();
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return Center(
|
|
||||||
child: Container(
|
|
||||||
height: 400.h,
|
|
||||||
margin: const EdgeInsets.only(left: 40, right: 40),
|
|
||||||
padding:
|
|
||||||
const EdgeInsets.only(top: 20, bottom: 20, left: 12, right: 12),
|
|
||||||
decoration: const BoxDecoration(
|
|
||||||
image: DecorationImage(
|
|
||||||
image: AssetImage('assets/images/upappbg.png'),
|
|
||||||
fit: BoxFit.fill,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
child: _contentStyle(),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
///内容区域样式
|
|
||||||
_contentStyle() {
|
|
||||||
return Column(
|
|
||||||
children: <Widget>[
|
|
||||||
// _title(),
|
|
||||||
Expanded(
|
|
||||||
child: Container(),
|
|
||||||
),
|
|
||||||
_hintMsg(),
|
|
||||||
GestureDetector(
|
|
||||||
child: Container(
|
|
||||||
width: double.infinity,
|
|
||||||
height: 50.h,
|
|
||||||
decoration: const BoxDecoration(
|
|
||||||
borderRadius: BorderRadius.all(Radius.circular(6)),
|
|
||||||
color: ColorUtil.Color_85_117_242,
|
|
||||||
),
|
|
||||||
margin: const EdgeInsets.only(top: 12),
|
|
||||||
alignment: Alignment.center,
|
|
||||||
child: Text(
|
|
||||||
btnStr,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 14.sp, color: ColorUtil.Color_255_255_255),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
onTap: () {
|
|
||||||
if (Platform.isIOS) {
|
|
||||||
_gotoAppStore();
|
|
||||||
} else {
|
|
||||||
if (confirmBtnType == 0) {
|
|
||||||
PermissionService.checkPermission(permissionList: [Permission.manageExternalStorage]).then((value){
|
|
||||||
if(value == true){
|
|
||||||
_installApk();
|
|
||||||
}else{
|
|
||||||
publicDialog(Get.context!,
|
|
||||||
hideCancelBtn: true,
|
|
||||||
title: '请求权限说明',
|
|
||||||
describe:
|
|
||||||
'APP需要获取您的文件访问权限,用以确保新版本下载后可以正常安装。',
|
|
||||||
leftBtnStr: '拒绝',
|
|
||||||
rightBtnStr: '同意',
|
|
||||||
leftBtnCallback: () {
|
|
||||||
BusinessStore.to.setIsRefuseHomeCheckPermission(true);
|
|
||||||
}, rightBtnCallback: () {
|
|
||||||
PermissionService.requestStoragePermissions().then((value){
|
|
||||||
if(value == true){
|
|
||||||
_installApk();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/*if (confirmBtnType == 1) {
|
|
||||||
SystemNavigator.pop();
|
|
||||||
}
|
|
||||||
if (confirmBtnType == 2) {
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
}*/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
),
|
|
||||||
Visibility(
|
|
||||||
visible: widget.hideCancelBtn,
|
|
||||||
child: GestureDetector(
|
|
||||||
child: Container(
|
|
||||||
margin: const EdgeInsets.only(top: 20),
|
|
||||||
child: Text(
|
|
||||||
"跳过此版本",
|
|
||||||
style:
|
|
||||||
TextStyle(fontSize: 14.sp, color: ColorUtil.Color_84_84_84),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
onTap: () {
|
|
||||||
BusinessStore.to.setSkipUpVersion(widget.versionCode);
|
|
||||||
Get.back();
|
|
||||||
},
|
|
||||||
),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
///提示信息布局
|
|
||||||
_hintMsg() {
|
|
||||||
return SingleChildScrollView(
|
|
||||||
child: Container(
|
|
||||||
alignment: Alignment.topLeft,
|
|
||||||
margin: const EdgeInsets.only(),
|
|
||||||
child: Text(widget.describe,
|
|
||||||
style: const TextStyle(
|
|
||||||
fontSize: 14,
|
|
||||||
color: ColorUtil.Color_244_244_244,
|
|
||||||
decoration: TextDecoration.none,
|
|
||||||
height: 1.4)),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 安装APK
|
|
||||||
_installApk() async {
|
|
||||||
await InstallPlugin.installApk(widget.apkSavePath, appId: "com.yuanxuan.wgshare").then((result) {
|
|
||||||
debugPrint("检查更新-安卓安装成功:$result");
|
|
||||||
/*setState(() {
|
|
||||||
confirmBtnType = 2;
|
|
||||||
btnStr = "关闭APP,重新打开";
|
|
||||||
});*/
|
|
||||||
BusinessStore.to.erase();
|
|
||||||
}).catchError((error) {
|
|
||||||
debugPrint("检查更新-安卓安装失败:$error");
|
|
||||||
/*setState(() {
|
|
||||||
confirmBtnType = 2;
|
|
||||||
btnStr = "跳过";
|
|
||||||
});*/
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 跳转苹果应用商店
|
|
||||||
_gotoAppStore() async {
|
|
||||||
await InstallPlugin.install(widget.appStoreUrl).then((result) {
|
|
||||||
debugPrint("检查更新-苹果安装成功:$result");
|
|
||||||
}).catchError((error) {
|
|
||||||
debugPrint("检查更新-苹果安装失败:$error");
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,56 +0,0 @@
|
||||||
import 'package:json_annotation/json_annotation.dart';
|
|
||||||
|
|
||||||
part 'upgrade_entity.g.dart';
|
|
||||||
|
|
||||||
@JsonSerializable()
|
|
||||||
class UpgradeEntity extends Object {
|
|
||||||
|
|
||||||
@JsonKey(name: 'code')
|
|
||||||
int code;
|
|
||||||
|
|
||||||
@JsonKey(name: 'message')
|
|
||||||
String message;
|
|
||||||
|
|
||||||
@JsonKey(name: 'success')
|
|
||||||
bool success;
|
|
||||||
|
|
||||||
@JsonKey(name: 'data')
|
|
||||||
UpgradeData data;
|
|
||||||
|
|
||||||
UpgradeEntity(this.code,this.message,this.success,this.data,);
|
|
||||||
|
|
||||||
factory UpgradeEntity.fromJson(Map<String, dynamic> srcJson) => _$UpgradeEntityFromJson(srcJson);
|
|
||||||
|
|
||||||
Map<String, dynamic> toJson() => _$UpgradeEntityToJson(this);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@JsonSerializable()
|
|
||||||
class UpgradeData extends Object {
|
|
||||||
|
|
||||||
@JsonKey(name: 'versionCode')
|
|
||||||
int versionCode;
|
|
||||||
|
|
||||||
@JsonKey(name: 'versionName')
|
|
||||||
String versionName;
|
|
||||||
|
|
||||||
@JsonKey(name: 'updateType')
|
|
||||||
int updateType;
|
|
||||||
|
|
||||||
@JsonKey(name: 'versionDescribe')
|
|
||||||
String versionDescribe;
|
|
||||||
|
|
||||||
@JsonKey(name: 'androidurl')
|
|
||||||
String androidurl;
|
|
||||||
|
|
||||||
@JsonKey(name: 'appStoreUrl')
|
|
||||||
String appStoreUrl;
|
|
||||||
|
|
||||||
UpgradeData(this.versionCode,this.versionName,this.updateType,this.versionDescribe,this.androidurl,this.appStoreUrl);
|
|
||||||
|
|
||||||
factory UpgradeData.fromJson(Map<String, dynamic> srcJson) => _$UpgradeDataFromJson(srcJson);
|
|
||||||
|
|
||||||
Map<String, dynamic> toJson() => _$UpgradeDataToJson(this);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,149 +0,0 @@
|
||||||
import 'dart:convert';
|
|
||||||
import 'dart:io';
|
|
||||||
|
|
||||||
import 'package:al_downloader/al_downloader.dart';
|
|
||||||
import 'package:dio/dio.dart';
|
|
||||||
import 'package:flutter/cupertino.dart';
|
|
||||||
import 'package:package_info_plus/package_info_plus.dart';
|
|
||||||
import 'package:path_provider/path_provider.dart';
|
|
||||||
import 'package:wgshare/utils/toast_utils.dart';
|
|
||||||
import 'package:wgshare/view/upgrade/hide_upgrade_dialog.dart';
|
|
||||||
import '../../../common/models/app_updata_info_entity.dart';
|
|
||||||
import '../../../common/store/business_store.dart';
|
|
||||||
import '../../../utils/routeUtil.dart';
|
|
||||||
import 'entity/upgrade_entity.dart';
|
|
||||||
|
|
||||||
class HideCheckVersion{
|
|
||||||
Future<Map> request(String url) async{
|
|
||||||
Response response = await Dio().get(url);
|
|
||||||
return response.data;
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> doHttpHideCheckVersion() async {
|
|
||||||
PackageInfo packageInfo = await PackageInfo.fromPlatform();
|
|
||||||
String versionCode = packageInfo.buildNumber;
|
|
||||||
|
|
||||||
if(null != BusinessStore.to.appUpdataInfoEntity.value){
|
|
||||||
ToastUtils.showSuccess('00000');
|
|
||||||
if(int.tryParse(versionCode)! < BusinessStore.to.appUpdataInfoEntity.value!.versionCode){
|
|
||||||
ToastUtils.showSuccess('11111--缓存跳过版本${BusinessStore.to.skipUpVersion}-缓存安装版本${BusinessStore.to.appUpdataInfoEntity.value!.versionCode}');
|
|
||||||
if(null != BusinessStore.to.skipUpVersion){
|
|
||||||
if(BusinessStore.to.skipUpVersion! < BusinessStore.to.appUpdataInfoEntity.value!.versionCode){
|
|
||||||
hideUpgradeDialog(
|
|
||||||
RouteUtil.getContext(),
|
|
||||||
BusinessStore.to.appUpdataInfoEntity.value!.versionDescribe,
|
|
||||||
hideCancelBtn: BusinessStore.to.appUpdataInfoEntity.value!.updateType == 1 ? false : true,
|
|
||||||
BusinessStore.to.appUpdataInfoEntity.value!.apkSavePath,
|
|
||||||
BusinessStore.to.appUpdataInfoEntity.value!.appStoreUrl,
|
|
||||||
BusinessStore.to.appUpdataInfoEntity.value!.versionCode,
|
|
||||||
);
|
|
||||||
}else{
|
|
||||||
ToastUtils.showSuccess('22222');
|
|
||||||
doHttpUp();
|
|
||||||
}
|
|
||||||
}else{
|
|
||||||
doHttpUp();
|
|
||||||
}
|
|
||||||
}else{
|
|
||||||
ToastUtils.showSuccess('33333');
|
|
||||||
BusinessStore.to.erase();
|
|
||||||
}
|
|
||||||
}else{
|
|
||||||
ToastUtils.showSuccess('44444');
|
|
||||||
doHttpUp();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> doHttpUp() async {
|
|
||||||
PackageInfo packageInfo = await PackageInfo.fromPlatform();
|
|
||||||
String versionCode = packageInfo.buildNumber;
|
|
||||||
|
|
||||||
Future<Map> map = request("http://192.168.2.9:8827/latest.json");
|
|
||||||
map.then((result) async {
|
|
||||||
var jsonStr = json.encode(result);
|
|
||||||
var listDynamic = jsonDecode(jsonStr);
|
|
||||||
UpgradeEntity upgradeEntity = UpgradeEntity.fromJson(listDynamic);
|
|
||||||
|
|
||||||
debugPrint('55555${upgradeEntity.code}-${upgradeEntity.data.versionCode}-${upgradeEntity.data.androidurl}');
|
|
||||||
ToastUtils.showSuccess('55555${upgradeEntity.code}-${upgradeEntity.data.versionCode}-${upgradeEntity.data.androidurl}');
|
|
||||||
|
|
||||||
if(upgradeEntity.code == 200){
|
|
||||||
|
|
||||||
debugPrint("检查更新-服务器版本信息:$jsonStr");
|
|
||||||
debugPrint("检查更新-当前版本号:$versionCode");
|
|
||||||
|
|
||||||
if(int.tryParse(versionCode)! < upgradeEntity.data.versionCode){
|
|
||||||
if((BusinessStore.to.skipUpVersion ?? 0) < upgradeEntity.data.versionCode){
|
|
||||||
if (Platform.isAndroid) {
|
|
||||||
/// 下载APK
|
|
||||||
try {
|
|
||||||
var appDocDir = await getTemporaryDirectory();
|
|
||||||
var apkSavePath = "${appDocDir.path}/wgshare_up.apk";
|
|
||||||
// String url = "https://www.onlinedown.net/iopdfbhjl/632869?module=download&t=website&v=20241229163449";
|
|
||||||
// String url = "https://s3.cn-north-1.amazonaws.com.cn/mtab.kezaihui.com/apk/takeaway_phone_release_1.apk";
|
|
||||||
String url = upgradeEntity.data.androidurl;
|
|
||||||
ALDownloader.download(url,
|
|
||||||
directoryPath: "${appDocDir.path}/",
|
|
||||||
fileName: "wgshare_up.apk",
|
|
||||||
handlerInterface:
|
|
||||||
ALDownloaderHandlerInterface(progressHandler: (progress) {
|
|
||||||
debugPrint('检查更新 | 下载进度 = $progress, url = $url');
|
|
||||||
ToastUtils.showSuccess('下载进度$progress');
|
|
||||||
}, succeededHandler: () {
|
|
||||||
debugPrint('检查更新 | 下载成功, url = $url');
|
|
||||||
debugPrint('检查更新,当前路由是:${RouteUtil.getRoute()}');
|
|
||||||
debugPrint('检查更新,APK保存路径:$apkSavePath');
|
|
||||||
|
|
||||||
BusinessStore.to.setAppUpdataInfo(AppUpdataInfoEntity(
|
|
||||||
upgradeEntity.data.versionCode,
|
|
||||||
upgradeEntity.data.versionName,
|
|
||||||
upgradeEntity.data.updateType,
|
|
||||||
upgradeEntity.data.versionDescribe,
|
|
||||||
upgradeEntity.data.androidurl,
|
|
||||||
upgradeEntity.data.appStoreUrl,
|
|
||||||
apkSavePath
|
|
||||||
));
|
|
||||||
|
|
||||||
if (RouteUtil.getRoute() == '/meetingMainPage') {
|
|
||||||
ToastUtils.showInfo(
|
|
||||||
"新版本静默下载完毕\n将择机通知安装",
|
|
||||||
duration: const Duration(milliseconds: 3000));
|
|
||||||
} else {
|
|
||||||
hideUpgradeDialog(
|
|
||||||
RouteUtil.getContext(),
|
|
||||||
upgradeEntity.data.versionDescribe,
|
|
||||||
hideCancelBtn: upgradeEntity.data.updateType == 1 ? false : true,
|
|
||||||
apkSavePath,
|
|
||||||
'',
|
|
||||||
upgradeEntity.data.versionCode,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}, failedHandler: () {
|
|
||||||
debugPrint('检查更新 | 下载失败, url = $url');
|
|
||||||
}, pausedHandler: () {
|
|
||||||
debugPrint('检查更新 | 下载暂停, url = $url');
|
|
||||||
}));
|
|
||||||
} catch (e) {
|
|
||||||
debugPrint("检查更新-安卓下载失败:$e");
|
|
||||||
}
|
|
||||||
}else{
|
|
||||||
hideUpgradeDialog(
|
|
||||||
RouteUtil.getContext(),
|
|
||||||
upgradeEntity.data.versionDescribe,
|
|
||||||
hideCancelBtn: upgradeEntity.data.updateType == 1 ? false : true,
|
|
||||||
'',
|
|
||||||
upgradeEntity.data.appStoreUrl,
|
|
||||||
upgradeEntity.data.versionCode,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}else{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}else{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
||||||
import 'dart:convert';
|
|
||||||
|
|
||||||
import 'package:dio/dio.dart';
|
|
||||||
import 'package:flutter/cupertino.dart';
|
|
||||||
import 'package:package_info_plus/package_info_plus.dart';
|
|
||||||
import '../upgrade_dialog.dart';
|
|
||||||
import 'entity/upgrade_entity.dart';
|
|
||||||
|
|
||||||
Future<Map> request(String url) async{
|
|
||||||
Response response = await Dio().get(url);
|
|
||||||
return response.data;
|
|
||||||
}
|
|
||||||
void doHttpCheckVersion(BuildContext context){
|
|
||||||
Future<Map> map = request("https://meeting-api.23544.com/meeting/mobile/latest.json");
|
|
||||||
map.then((result) async {
|
|
||||||
var jsonStr = json.encode(result);
|
|
||||||
var listDynamic = jsonDecode(jsonStr);
|
|
||||||
UpgradeEntity upgradeEntity = UpgradeEntity.fromJson(listDynamic);
|
|
||||||
|
|
||||||
if(upgradeEntity.code == 200){
|
|
||||||
PackageInfo packageInfo = await PackageInfo.fromPlatform();
|
|
||||||
String versionCode = packageInfo.buildNumber;
|
|
||||||
if(int.tryParse(versionCode)! < 2){
|
|
||||||
debugPrint("检查更新-服务器版本信息:$jsonStr");
|
|
||||||
debugPrint("检查更新-当前版本号:$versionCode");
|
|
||||||
upgradeDialog(
|
|
||||||
context,
|
|
||||||
upgradeEntity.data.versionDescribe,
|
|
||||||
hideCancelBtn: /*upgradeEntity.data.updateType == 1 ? false : true*/true,
|
|
||||||
title: '版本更新 v${upgradeEntity.data.versionName}',
|
|
||||||
/*upgradeEntity.data.url*/'https://s3.cn-north-1.amazonaws.com.cn/mtab.kezaihui.com/apk/takeaway_phone_release_1.apk',
|
|
||||||
upgradeEntity.data.appStoreUrl,
|
|
||||||
upgradeEntity.data.versionName
|
|
||||||
);
|
|
||||||
}else{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}else{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
@ -1,290 +0,0 @@
|
||||||
import 'dart:io';
|
|
||||||
|
|
||||||
import 'package:flutter/cupertino.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:flutter/services.dart';
|
|
||||||
import 'package:flutter_screenutil/src/size_extension.dart';
|
|
||||||
import 'package:get/get.dart';
|
|
||||||
import 'package:install_plugin/install_plugin.dart';
|
|
||||||
import 'package:path_provider/path_provider.dart';
|
|
||||||
import 'package:permission_handler/permission_handler.dart';
|
|
||||||
import 'package:wgshare/utils/color_util.dart';
|
|
||||||
import 'package:wgshare/utils/toast_utils.dart';
|
|
||||||
import 'package:wgshare/view/upgrade/util/load_file_cancel_request.dart';
|
|
||||||
|
|
||||||
import '../../utils/permission/PermissionService.dart';
|
|
||||||
import '../public_dialog.dart';
|
|
||||||
|
|
||||||
upgradeDialog(
|
|
||||||
BuildContext context,
|
|
||||||
String describe,
|
|
||||||
String url,
|
|
||||||
String appStoreUrl,
|
|
||||||
String versionName, {
|
|
||||||
String title = "提示",
|
|
||||||
btnWidth = 116.0,
|
|
||||||
btnHeight = 42.0,
|
|
||||||
bool hideCancelBtn = false,
|
|
||||||
}) {
|
|
||||||
showDialog(
|
|
||||||
context: context,
|
|
||||||
barrierDismissible: hideCancelBtn,
|
|
||||||
builder: (_) => PopScope(
|
|
||||||
canPop: hideCancelBtn,
|
|
||||||
child: HintDialog(title, describe, url, appStoreUrl, versionName,
|
|
||||||
btnWidth, btnHeight, hideCancelBtn),
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
class HintDialog extends StatefulWidget {
|
|
||||||
final String title; //标题
|
|
||||||
final String describe; //版本更新内容
|
|
||||||
final String url;
|
|
||||||
final String appStoreUrl;
|
|
||||||
final String versionName;
|
|
||||||
final double btnWidth; //按钮宽度
|
|
||||||
final double btnHeight; //按钮高度
|
|
||||||
final bool hideCancelBtn; //是否隐藏取消btn(实际用途还是否可以点击空白和返回键关闭)
|
|
||||||
|
|
||||||
HintDialog(this.title, this.describe, this.url, this.appStoreUrl,
|
|
||||||
this.versionName, this.btnWidth, this.btnHeight, this.hideCancelBtn);
|
|
||||||
|
|
||||||
@override
|
|
||||||
State<StatefulWidget> createState() {
|
|
||||||
return HintDialogState();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class HintDialogState extends State<HintDialog> {
|
|
||||||
// 安装按钮状态,0:未点击、1:点击下载、2:下载成功、3:安装成功、4:安装失败
|
|
||||||
int confirmBtnType = 0;
|
|
||||||
|
|
||||||
// 按钮文字
|
|
||||||
String btnStr = "立即更新";
|
|
||||||
|
|
||||||
// 下载进度
|
|
||||||
double progressValue = 0.0;
|
|
||||||
|
|
||||||
// apk路径
|
|
||||||
late String apkPath;
|
|
||||||
|
|
||||||
late loadFileCancelRequest loadRequest;
|
|
||||||
|
|
||||||
@override
|
|
||||||
void initState() {
|
|
||||||
super.initState();
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return Center(
|
|
||||||
child: Container(
|
|
||||||
height: 400.h,
|
|
||||||
margin: const EdgeInsets.only(left: 40, right: 40),
|
|
||||||
padding:
|
|
||||||
const EdgeInsets.only(top: 20, bottom: 20, left: 12, right: 12),
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
image: DecorationImage(
|
|
||||||
image: AssetImage('assets/images/upappbg.png'),
|
|
||||||
fit: BoxFit.fill,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
child: _contentStyle(),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
///内容区域样式
|
|
||||||
_contentStyle() {
|
|
||||||
return Column(
|
|
||||||
children: <Widget>[
|
|
||||||
// _title(),
|
|
||||||
Expanded(
|
|
||||||
child: Container(),
|
|
||||||
),
|
|
||||||
_hintMsg(),
|
|
||||||
Visibility(
|
|
||||||
visible: confirmBtnType == 1 ? true : false,
|
|
||||||
child: Container(
|
|
||||||
width: double.infinity,
|
|
||||||
height: 4.h,
|
|
||||||
color: ColorUtil.Color_85_117_242,
|
|
||||||
margin: const EdgeInsets.only(top: 12, left: 2, right: 2),
|
|
||||||
child: LinearProgressIndicator(
|
|
||||||
value: progressValue,
|
|
||||||
valueColor:
|
|
||||||
const AlwaysStoppedAnimation(ColorUtil.Color_85_117_242),
|
|
||||||
backgroundColor: ColorUtil.Color_185_184_184,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
GestureDetector(
|
|
||||||
child: Container(
|
|
||||||
width: double.infinity,
|
|
||||||
height: 50.h,
|
|
||||||
decoration: const BoxDecoration(
|
|
||||||
borderRadius: BorderRadius.all(Radius.circular(6)),
|
|
||||||
color: ColorUtil.Color_85_117_242,
|
|
||||||
),
|
|
||||||
margin: const EdgeInsets.only(top: 12),
|
|
||||||
alignment: Alignment.center,
|
|
||||||
child: Text(
|
|
||||||
btnStr,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 14.sp, color: ColorUtil.Color_255_255_255),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
onTap: () {
|
|
||||||
if (Platform.isIOS) {
|
|
||||||
_gotoAppStore();
|
|
||||||
} else {
|
|
||||||
if (confirmBtnType == 0) {
|
|
||||||
_downloadApk();
|
|
||||||
}
|
|
||||||
if (confirmBtnType == 1) {
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
}
|
|
||||||
if (confirmBtnType == 2) {
|
|
||||||
PermissionService.checkPermission(permissionList: [Permission.manageExternalStorage]).then((value){
|
|
||||||
if(value == true){
|
|
||||||
// 下载完成,调用安装APK函数
|
|
||||||
_installApk(apkPath);
|
|
||||||
}else{
|
|
||||||
publicDialog(context,
|
|
||||||
hideCancelBtn: true,
|
|
||||||
title: '请求权限说明',
|
|
||||||
describe:
|
|
||||||
'APP需要获取您的文件访问权限,用以确保新版本下载后可以正常安装。',
|
|
||||||
leftBtnStr: '拒绝',
|
|
||||||
rightBtnStr: '同意',
|
|
||||||
leftBtnCallback: () {
|
|
||||||
}, rightBtnCallback: () {
|
|
||||||
PermissionService.requestStoragePermissions();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (confirmBtnType == 3) {
|
|
||||||
SystemNavigator.pop();
|
|
||||||
}
|
|
||||||
if (confirmBtnType == 4) {
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
),
|
|
||||||
Visibility(
|
|
||||||
visible: widget.hideCancelBtn,
|
|
||||||
child: GestureDetector(
|
|
||||||
child: Container(
|
|
||||||
margin: const EdgeInsets.only(top: 20),
|
|
||||||
child: Text(
|
|
||||||
"跳过此版本",
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 14.sp,
|
|
||||||
color: ColorUtil.Color_84_84_84
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
onTap: (){
|
|
||||||
Get.back();
|
|
||||||
},
|
|
||||||
),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
///提示标题布局
|
|
||||||
_title() {
|
|
||||||
return Container(
|
|
||||||
alignment: Alignment.center,
|
|
||||||
margin: const EdgeInsets.only(bottom: 12),
|
|
||||||
child: Text(widget.title,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 16.sp,
|
|
||||||
color: ColorUtil.Color_85_117_242,
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
decoration: TextDecoration.none)),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
///提示信息布局
|
|
||||||
_hintMsg() {
|
|
||||||
return SingleChildScrollView(
|
|
||||||
child: Container(
|
|
||||||
alignment: Alignment.topLeft,
|
|
||||||
margin: const EdgeInsets.only(),
|
|
||||||
child: Text(widget.describe,
|
|
||||||
style: const TextStyle(
|
|
||||||
fontSize: 14,
|
|
||||||
color: ColorUtil.Color_244_244_244,
|
|
||||||
decoration: TextDecoration.none,
|
|
||||||
height: 1.4)),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 下载APK
|
|
||||||
_downloadApk() async {
|
|
||||||
loadRequest = loadFileCancelRequest();
|
|
||||||
try {
|
|
||||||
// 设置apk下载路径
|
|
||||||
var appDocDir = await getTemporaryDirectory();
|
|
||||||
apkPath = "${appDocDir.path}/wgshare_${widget.versionName}.apk";
|
|
||||||
|
|
||||||
loadRequest.load(widget.url, apkPath);
|
|
||||||
|
|
||||||
loadRequest.setProgressCallbackListener((progress) {
|
|
||||||
setState(() {
|
|
||||||
progressValue = progress;
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
loadRequest.setSuccessCallbackListener(() {
|
|
||||||
setState(() {
|
|
||||||
confirmBtnType = 2;
|
|
||||||
btnStr = "安装";
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
setState(() {
|
|
||||||
confirmBtnType = 1;
|
|
||||||
btnStr = "取消";
|
|
||||||
});
|
|
||||||
} catch (e) {
|
|
||||||
debugPrint("检查更新-安卓下载失败:$e");
|
|
||||||
setState(() {
|
|
||||||
confirmBtnType = 0;
|
|
||||||
btnStr = "更新";
|
|
||||||
});
|
|
||||||
ToastUtils.showError("下载失败");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 安装APK
|
|
||||||
_installApk(String path) async {
|
|
||||||
await InstallPlugin.installApk(path, appId: "com.yuanxuan.wgshare").then((result) {
|
|
||||||
debugPrint("检查更新-安卓安装成功:$result");
|
|
||||||
setState(() {
|
|
||||||
confirmBtnType = 3;
|
|
||||||
btnStr = "关闭APP,重新打开";
|
|
||||||
});
|
|
||||||
}).catchError((error) {
|
|
||||||
debugPrint("检查更新-安卓安装失败:$error");
|
|
||||||
setState(() {
|
|
||||||
confirmBtnType = 4;
|
|
||||||
btnStr = "跳过";
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 跳转苹果应用商店
|
|
||||||
_gotoAppStore() async {
|
|
||||||
await InstallPlugin.install(widget.appStoreUrl).then((result){
|
|
||||||
debugPrint("检查更新-苹果安装成功:$result");
|
|
||||||
}).catchError((error){
|
|
||||||
debugPrint("检查更新-苹果安装失败:$error");
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,36 +0,0 @@
|
||||||
import 'package:dio/dio.dart';
|
|
||||||
import 'package:flutter/cupertino.dart';
|
|
||||||
|
|
||||||
class loadFileCancelRequest{
|
|
||||||
|
|
||||||
late Function progressCallback;
|
|
||||||
late Function successCallback;
|
|
||||||
|
|
||||||
CancelToken token = CancelToken();
|
|
||||||
|
|
||||||
load(String url, String path) async {
|
|
||||||
Dio dio = Dio();
|
|
||||||
await dio.download(url, path, cancelToken: token, onReceiveProgress: (received, total) {
|
|
||||||
if (total != -1) {
|
|
||||||
// 下载进度
|
|
||||||
progressCallback((received / total));
|
|
||||||
debugPrint("检查更新-下载进度:${(received / total)}");
|
|
||||||
}
|
|
||||||
}).then((onValue){
|
|
||||||
// 下载成功
|
|
||||||
successCallback();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
cancel() {
|
|
||||||
token.cancel('取消请求');
|
|
||||||
}
|
|
||||||
|
|
||||||
setProgressCallbackListener(Function progressCallback){
|
|
||||||
this.progressCallback = progressCallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
setSuccessCallbackListener(Function successCallback){
|
|
||||||
this.successCallback = successCallback;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -17,7 +17,6 @@ import macos_window_utils
|
||||||
import package_info_plus
|
import package_info_plus
|
||||||
import path_provider_foundation
|
import path_provider_foundation
|
||||||
import sqflite_darwin
|
import sqflite_darwin
|
||||||
import wakelock_plus
|
|
||||||
|
|
||||||
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
|
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
|
||||||
AgoraRtcNgPlugin.register(with: registry.registrar(forPlugin: "AgoraRtcNgPlugin"))
|
AgoraRtcNgPlugin.register(with: registry.registrar(forPlugin: "AgoraRtcNgPlugin"))
|
||||||
|
|
@ -32,5 +31,4 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
|
||||||
FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin"))
|
FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin"))
|
||||||
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
|
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
|
||||||
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
|
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
|
||||||
WakelockPlusMacosPlugin.register(with: registry.registrar(forPlugin: "WakelockPlusMacosPlugin"))
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -30,14 +30,6 @@ packages:
|
||||||
url: "https://pub.flutter-io.cn"
|
url: "https://pub.flutter-io.cn"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "6.5.0"
|
version: "6.5.0"
|
||||||
al_downloader:
|
|
||||||
dependency: "direct main"
|
|
||||||
description:
|
|
||||||
name: al_downloader
|
|
||||||
sha256: "00b96b113da7e013f532527238e2f8e5219834f6b4e52df6ff8b12f26eda7101"
|
|
||||||
url: "https://pub.flutter-io.cn"
|
|
||||||
source: hosted
|
|
||||||
version: "1.8.4"
|
|
||||||
analyzer:
|
analyzer:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
@ -254,14 +246,6 @@ packages:
|
||||||
url: "https://pub.flutter-io.cn"
|
url: "https://pub.flutter-io.cn"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.0.9"
|
version: "2.0.9"
|
||||||
dbus:
|
|
||||||
dependency: transitive
|
|
||||||
description:
|
|
||||||
name: dbus
|
|
||||||
sha256: "365c771ac3b0e58845f39ec6deebc76e3276aa9922b0cc60840712094d9047ac"
|
|
||||||
url: "https://pub.flutter-io.cn"
|
|
||||||
source: hosted
|
|
||||||
version: "0.7.10"
|
|
||||||
device_info_plus:
|
device_info_plus:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
|
@ -363,14 +347,6 @@ packages:
|
||||||
url: "https://pub.flutter-io.cn"
|
url: "https://pub.flutter-io.cn"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.3.1"
|
version: "3.3.1"
|
||||||
flutter_downloader:
|
|
||||||
dependency: transitive
|
|
||||||
description:
|
|
||||||
name: flutter_downloader
|
|
||||||
sha256: "2b126083d2e6b7c09755bca12012c4c734bcf7666cf07ba00c508fcb83e8d0d7"
|
|
||||||
url: "https://pub.flutter-io.cn"
|
|
||||||
source: hosted
|
|
||||||
version: "1.11.1"
|
|
||||||
flutter_easyloading:
|
flutter_easyloading:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
|
@ -658,14 +634,6 @@ packages:
|
||||||
url: "https://pub.flutter-io.cn"
|
url: "https://pub.flutter-io.cn"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "4.0.2"
|
version: "4.0.2"
|
||||||
install_plugin:
|
|
||||||
dependency: "direct main"
|
|
||||||
description:
|
|
||||||
name: install_plugin
|
|
||||||
sha256: "6fb67ba0781e75de4f2f2266ed25e835bfd277c5bfc2ed034af52774355857c6"
|
|
||||||
url: "https://pub.flutter-io.cn"
|
|
||||||
source: hosted
|
|
||||||
version: "2.1.0"
|
|
||||||
intersperse:
|
intersperse:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
@ -702,10 +670,10 @@ packages:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: js
|
name: js
|
||||||
sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
|
sha256: c1b2e9b5ea78c45e1a0788d29606ba27dc5f71f019f32ca5140f61ef071838cf
|
||||||
url: "https://pub.flutter-io.cn"
|
url: "https://pub.flutter-io.cn"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.6.7"
|
version: "0.7.1"
|
||||||
json_annotation:
|
json_annotation:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
|
@ -875,7 +843,7 @@ packages:
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.9.0"
|
version: "1.9.0"
|
||||||
path_provider:
|
path_provider:
|
||||||
dependency: "direct main"
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: path_provider
|
name: path_provider
|
||||||
sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
|
sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
|
||||||
|
|
@ -970,14 +938,6 @@ packages:
|
||||||
url: "https://pub.flutter-io.cn"
|
url: "https://pub.flutter-io.cn"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.2.1"
|
version: "0.2.1"
|
||||||
petitparser:
|
|
||||||
dependency: transitive
|
|
||||||
description:
|
|
||||||
name: petitparser
|
|
||||||
sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27
|
|
||||||
url: "https://pub.flutter-io.cn"
|
|
||||||
source: hosted
|
|
||||||
version: "6.0.2"
|
|
||||||
photo_view:
|
photo_view:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
|
@ -1050,14 +1010,6 @@ packages:
|
||||||
url: "https://pub.flutter-io.cn"
|
url: "https://pub.flutter-io.cn"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.0.0"
|
version: "2.0.0"
|
||||||
queue:
|
|
||||||
dependency: transitive
|
|
||||||
description:
|
|
||||||
name: queue
|
|
||||||
sha256: "9a41ecadc15db79010108c06eae229a45c56b18db699760f34e8c9ac9b831ff9"
|
|
||||||
url: "https://pub.flutter-io.cn"
|
|
||||||
source: hosted
|
|
||||||
version: "3.1.0+2"
|
|
||||||
retrofit:
|
retrofit:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
|
@ -1311,22 +1263,6 @@ packages:
|
||||||
url: "https://pub.flutter-io.cn"
|
url: "https://pub.flutter-io.cn"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "14.2.5"
|
version: "14.2.5"
|
||||||
wakelock_plus:
|
|
||||||
dependency: "direct main"
|
|
||||||
description:
|
|
||||||
name: wakelock_plus
|
|
||||||
sha256: "36c88af0b930121941345306d259ec4cc4ecca3b151c02e3a9e71aede83c615e"
|
|
||||||
url: "https://pub.flutter-io.cn"
|
|
||||||
source: hosted
|
|
||||||
version: "1.2.10"
|
|
||||||
wakelock_plus_platform_interface:
|
|
||||||
dependency: transitive
|
|
||||||
description:
|
|
||||||
name: wakelock_plus_platform_interface
|
|
||||||
sha256: "70e780bc99796e1db82fe764b1e7dcb89a86f1e5b3afb1db354de50f2e41eb7a"
|
|
||||||
url: "https://pub.flutter-io.cn"
|
|
||||||
source: hosted
|
|
||||||
version: "1.2.2"
|
|
||||||
watcher:
|
watcher:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
@ -1375,14 +1311,6 @@ packages:
|
||||||
url: "https://pub.flutter-io.cn"
|
url: "https://pub.flutter-io.cn"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.1.0"
|
version: "1.1.0"
|
||||||
xml:
|
|
||||||
dependency: transitive
|
|
||||||
description:
|
|
||||||
name: xml
|
|
||||||
sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226
|
|
||||||
url: "https://pub.flutter-io.cn"
|
|
||||||
source: hosted
|
|
||||||
version: "6.5.0"
|
|
||||||
yaml:
|
yaml:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
|
||||||
|
|
@ -92,18 +92,6 @@ dependencies:
|
||||||
# 弹窗
|
# 弹窗
|
||||||
adaptive_dialog: ^2.3.0
|
adaptive_dialog: ^2.3.0
|
||||||
|
|
||||||
# 安装apk
|
|
||||||
install_plugin: ^2.1.0
|
|
||||||
|
|
||||||
# 文件目录
|
|
||||||
path_provider: ^2.0.2
|
|
||||||
|
|
||||||
# 后台下载
|
|
||||||
al_downloader: ^1.8.2
|
|
||||||
|
|
||||||
# 屏幕常亮
|
|
||||||
wakelock_plus: ^1.2.10
|
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
|
|
|
||||||