├── linux ├── .gitignore ├── main.cc ├── flutter │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ ├── generated_plugins.cmake │ └── CMakeLists.txt ├── my_application.h ├── my_application.cc └── CMakeLists.txt ├── ios ├── Flutter │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── AppFrameworkInfo.plist ├── Runner │ ├── Runner-Bridging-Header.h │ ├── Assets.xcassets │ │ ├── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ ├── README.md │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── Contents.json │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.storyboard │ └── Info.plist ├── Runner.xcodeproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── WorkspaceSettings.xcsettings │ │ └── IDEWorkspaceChecks.plist ├── RunnerTests │ └── RunnerTests.swift └── .gitignore ├── macos ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Runner │ ├── Configs │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ ├── Warnings.xcconfig │ │ └── AppInfo.xcconfig │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ ├── app_icon_64.png │ │ │ └── Contents.json │ ├── AppDelegate.swift │ ├── Release.entitlements │ ├── DebugProfile.entitlements │ ├── MainFlutterWindow.swift │ └── Info.plist ├── .gitignore ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner.xcodeproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme └── RunnerTests │ └── RunnerTests.swift ├── lib ├── entity │ ├── index.dart │ ├── user.dart │ ├── menu.dart │ ├── timeline │ │ ├── time_line_entity.dart │ │ └── result.dart │ └── timeline_likesAndcomments │ │ ├── time_line_like_comments_entity.dart │ │ └── result.dart ├── pages │ ├── index.dart │ ├── test.dart │ └── post.dart ├── utils │ ├── index.dart │ ├── toast.dart │ ├── config.dart │ ├── wx_http.dart │ ├── asset_picker.dart │ ├── compress.dart │ └── bottom_sheet.dart ├── widgets │ ├── global.dart │ ├── index.dart │ ├── my_divider.dart │ ├── space.dart │ ├── slide_appbar.dart │ ├── camera │ │ ├── widget │ │ │ ├── count_down.dart │ │ │ ├── take_video.dart │ │ │ └── take_photo.dart │ │ └── camera.dart │ ├── appbar.dart │ ├── text.dart │ ├── player.dart │ └── gallery.dart ├── main.dart └── api │ └── timeline.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── manifest.json └── index.html ├── android ├── gradle.properties ├── app │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── values │ │ │ │ │ └── styles.xml │ │ │ │ └── values-night │ │ │ │ │ └── styles.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── wechat_moments │ │ │ │ │ └── MainActivity.kt │ │ │ ├── FlutterMultiDexApplication.java │ │ │ └── AndroidManifest.xml │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ └── profile │ │ │ └── AndroidManifest.xml │ └── build.gradle ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── .gitignore ├── settings.gradle └── build.gradle ├── windows ├── runner │ ├── resources │ │ └── app_icon.ico │ ├── resource.h │ ├── utils.h │ ├── runner.exe.manifest │ ├── flutter_window.h │ ├── main.cpp │ ├── CMakeLists.txt │ ├── utils.cpp │ ├── flutter_window.cpp │ ├── Runner.rc │ ├── win32_window.h │ └── win32_window.cpp ├── flutter │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ ├── generated_plugins.cmake │ └── CMakeLists.txt ├── .gitignore └── CMakeLists.txt ├── README.md ├── .gitignore ├── test └── widget_test.dart ├── analysis_options.yaml ├── .metadata └── pubspec.yaml /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /lib/entity/index.dart: -------------------------------------------------------------------------------- 1 | library entity; 2 | 3 | export 'menu.dart'; 4 | export 'user.dart'; -------------------------------------------------------------------------------- /lib/pages/index.dart: -------------------------------------------------------------------------------- 1 | library pages; 2 | 3 | export 'post.dart'; 4 | export 'timeline.dart'; -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Debug.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | 5 | -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Release.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- 1 | # Flutter-related 2 | **/Flutter/ephemeral/ 3 | **/Pods/ 4 | 5 | # Xcode-related 6 | **/dgph 7 | **/xcuserdata/ 8 | -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luckyduck233/wechat_moments/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /lib/entity/user.dart: -------------------------------------------------------------------------------- 1 | class UserModel{ 2 | UserModel({this.nickname, this.avatorUrl, this.coverUrl}); 3 | 4 | final String? nickname; 5 | final String? avatorUrl; 6 | final String? coverUrl; 7 | 8 | 9 | } -------------------------------------------------------------------------------- /lib/utils/index.dart: -------------------------------------------------------------------------------- 1 | library utils; 2 | 3 | export 'asset_picker.dart'; 4 | export 'bottom_sheet.dart'; 5 | export 'compress.dart'; 6 | export 'config.dart'; 7 | export 'toast.dart'; 8 | export 'wx_http.dart'; -------------------------------------------------------------------------------- /lib/widgets/global.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class Global { 4 | /// 路由监控 5 | static final RouteObserver routeObserver = 6 | RouteObserver(); 7 | } 8 | -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- 1 | #include "my_application.h" 2 | 3 | int main(int argc, char** argv) { 4 | g_autoptr(MyApplication) app = my_application_new(); 5 | return g_application_run(G_APPLICATION(app), argc, argv); 6 | } 7 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/wechat_moments/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.wechat_moments 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #include "generated_plugin_registrant.h" 8 | 9 | 10 | void fl_register_plugins(FlPluginRegistry* registry) { 11 | } 12 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip 6 | -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #include "generated_plugin_registrant.h" 8 | 9 | 10 | void RegisterPlugins(flutter::PluginRegistry* registry) { 11 | } 12 | -------------------------------------------------------------------------------- /lib/widgets/index.dart: -------------------------------------------------------------------------------- 1 | library mywidgets; 2 | 3 | export 'slide_appbar.dart'; 4 | export 'gallery.dart'; 5 | export 'my_divider.dart'; 6 | export 'player.dart'; 7 | export 'appbar.dart'; 8 | export 'space.dart'; 9 | export 'text.dart'; 10 | export 'global.dart'; 11 | -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | @NSApplicationMain 5 | class AppDelegate: FlutterAppDelegate { 6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { 7 | return true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | **/*.keystore 13 | **/*.jks 14 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- 1 | import Flutter 2 | import UIKit 3 | import XCTest 4 | 5 | class RunnerTests: XCTestCase { 6 | 7 | func testExample() { 8 | // If you add code to the Runner application, consider adding tests here. 9 | // See https://developer.apple.com/documentation/xctest for more information about using XCTest. 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- 1 | import FlutterMacOS 2 | import Cocoa 3 | import XCTest 4 | 5 | class RunnerTests: XCTestCase { 6 | 7 | func testExample() { 8 | // If you add code to the Runner application, consider adding tests here. 9 | // See https://developer.apple.com/documentation/xctest for more information about using XCTest. 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral/ 2 | 3 | # Visual Studio user-specific files. 4 | *.suo 5 | *.user 6 | *.userosscache 7 | *.sln.docstates 8 | 9 | # Visual Studio build-related files. 10 | x64/ 11 | x86/ 12 | 13 | # Visual Studio cache files 14 | # files ending in .cache can be ignored 15 | *.[Cc]ache 16 | # but keep track of directories ending in .cache 17 | !*.[Cc]ache/ 18 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #ifndef GENERATED_PLUGIN_REGISTRANT_ 8 | #define GENERATED_PLUGIN_REGISTRANT_ 9 | 10 | #include 11 | 12 | // Registers Flutter plugins. 13 | void fl_register_plugins(FlPluginRegistry* registry); 14 | 15 | #endif // GENERATED_PLUGIN_REGISTRANT_ 16 | -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #ifndef GENERATED_PLUGIN_REGISTRANT_ 8 | #define GENERATED_PLUGIN_REGISTRANT_ 9 | 10 | #include 11 | 12 | // Registers Flutter plugins. 13 | void RegisterPlugins(flutter::PluginRegistry* registry); 14 | 15 | #endif // GENERATED_PLUGIN_REGISTRANT_ 16 | -------------------------------------------------------------------------------- /lib/widgets/my_divider.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class MyDividerWidget extends StatelessWidget { 4 | const MyDividerWidget({Key? key, this.height}) : super(key: key); 5 | 6 | final double? height; 7 | 8 | @override 9 | Widget build(BuildContext context) { 10 | return Container( 11 | height: height ?? 1, 12 | color: Colors.grey[200], 13 | ); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /lib/entity/menu.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | ///菜单项 数据模型 4 | class MenuItemModel { 5 | MenuItemModel({ 6 | this.icon, 7 | this.title, 8 | this.rightText, 9 | this.onTap, 10 | }); 11 | 12 | ///图标 13 | final IconData? icon; 14 | 15 | ///标题 16 | final String? title; 17 | 18 | ///右侧文字 19 | final String? rightText; 20 | 21 | ///点击事件 22 | final Function()? onTap; 23 | } 24 | -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.cs.allow-jit 8 | 9 | com.apple.security.network.server 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/main/FlutterMultiDexApplication.java: -------------------------------------------------------------------------------- 1 | package io.flutter.app; 2 | 3 | import android.content.Context; 4 | import androidx.multidex.MultiDex; 5 | import io.flutter.multidex.FlutterMultiDexApplication; 6 | 7 | public class MainApplication extends FlutterMultiDexApplication { 8 | @Override 9 | protected void attachBaseContext(Context base) { 10 | super.attachBaseContext(base); 11 | MultiDex.install(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /lib/utils/toast.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:fluttertoast/fluttertoast.dart'; 3 | 4 | class MyToast { 5 | ///提示 tip 6 | static void show(String msg) { 7 | Fluttertoast.showToast( 8 | msg: msg, 9 | toastLength: Toast.LENGTH_SHORT, 10 | gravity: ToastGravity.CENTER, 11 | backgroundColor: Colors.black87, 12 | textColor: Colors.white, 13 | fontSize: 16.0, 14 | ); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- 1 | #ifndef FLUTTER_MY_APPLICATION_H_ 2 | #define FLUTTER_MY_APPLICATION_H_ 3 | 4 | #include 5 | 6 | G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION, 7 | GtkApplication) 8 | 9 | /** 10 | * my_application_new: 11 | * 12 | * Creates a new Flutter-based application. 13 | * 14 | * Returns: a new #MyApplication. 15 | */ 16 | MyApplication* my_application_new(); 17 | 18 | #endif // FLUTTER_MY_APPLICATION_H_ 19 | -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | class MainFlutterWindow: NSWindow { 5 | override func awakeFromNib() { 6 | let flutterViewController = FlutterViewController() 7 | let windowFrame = self.frame 8 | self.contentViewController = flutterViewController 9 | self.setFrame(windowFrame, display: true) 10 | 11 | RegisterGeneratedPlugins(registry: flutterViewController) 12 | 13 | super.awakeFromNib() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by Runner.rc 4 | // 5 | #define IDI_APP_ICON 101 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40001 13 | #define _APS_NEXT_CONTROL_VALUE 1001 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") 4 | def properties = new Properties() 5 | 6 | assert localPropertiesFile.exists() 7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } 8 | 9 | def flutterSdkPath = properties.getProperty("flutter.sdk") 10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" 12 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # wechat_moments 2 | 3 | A new Flutter project. 4 | 5 | ## Getting Started 6 | 7 | This project is a starting point for a Flutter application. 8 | 9 | A few resources to get you started if this is your first Flutter project: 10 | 11 | - [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) 12 | - [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) 13 | 14 | For help getting started with Flutter development, view the 15 | [online documentation](https://docs.flutter.dev/), which offers tutorials, 16 | samples, guidance on mobile development, and a full API reference. 17 | -------------------------------------------------------------------------------- /lib/widgets/space.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | ///横向间距 4 | class SpaceHorizontalWidget extends StatelessWidget { 5 | const SpaceHorizontalWidget({super.key, this.space}); 6 | 7 | final double? space; 8 | 9 | @override 10 | Widget build(BuildContext context) { 11 | return SizedBox(width: space ?? 10); 12 | } 13 | } 14 | 15 | ///垂直间距 16 | class SpaceVerticalWidget extends StatelessWidget { 17 | const SpaceVerticalWidget({super.key, this.space}); 18 | 19 | final double? space; 20 | 21 | @override 22 | Widget build(BuildContext context) { 23 | return SizedBox(height: space ?? 10); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- 1 | WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings 2 | GCC_WARN_UNDECLARED_SELECTOR = YES 3 | CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES 4 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE 5 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES 6 | CLANG_WARN_PRAGMA_PACK = YES 7 | CLANG_WARN_STRICT_PROTOTYPES = YES 8 | CLANG_WARN_COMMA = YES 9 | GCC_WARN_STRICT_SELECTOR_MATCH = YES 10 | CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES 11 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES 12 | GCC_WARN_SHADOW = YES 13 | CLANG_WARN_UNREACHABLE_CODE = YES 14 | -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- 1 | // Application-level settings for the Runner target. 2 | // 3 | // This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the 4 | // future. If not, the values below would default to using the project name when this becomes a 5 | // 'flutter create' template. 6 | 7 | // The application's name. By default this is also the title of the Flutter window. 8 | PRODUCT_NAME = wechat_moments 9 | 10 | // The application's bundle identifier 11 | PRODUCT_BUNDLE_IDENTIFIER = com.example.wechatMoments 12 | 13 | // The copyright displayed in application information 14 | PRODUCT_COPYRIGHT = Copyright © 2023 com.example. All rights reserved. 15 | -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | import FlutterMacOS 6 | import Foundation 7 | 8 | import path_provider_macos 9 | import photo_manager 10 | import video_compress 11 | import wakelock_macos 12 | 13 | func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { 14 | PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) 15 | PhotoManagerPlugin.register(with: registry.registrar(forPlugin: "PhotoManagerPlugin")) 16 | VideoCompressPlugin.register(with: registry.registrar(forPlugin: "VideoCompressPlugin")) 17 | WakelockMacosPlugin.register(with: registry.registrar(forPlugin: "WakelockMacosPlugin")) 18 | } 19 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | **/dgph 2 | *.mode1v3 3 | *.mode2v3 4 | *.moved-aside 5 | *.pbxuser 6 | *.perspectivev3 7 | **/*sync/ 8 | .sconsign.dblite 9 | .tags* 10 | **/.vagrant/ 11 | **/DerivedData/ 12 | Icon? 13 | **/Pods/ 14 | **/.symlinks/ 15 | profile 16 | xcuserdata 17 | **/.generated/ 18 | Flutter/App.framework 19 | Flutter/Flutter.framework 20 | Flutter/Flutter.podspec 21 | Flutter/Generated.xcconfig 22 | Flutter/ephemeral/ 23 | Flutter/app.flx 24 | Flutter/app.zip 25 | Flutter/flutter_assets/ 26 | Flutter/flutter_export_environment.sh 27 | ServiceDefinitions.json 28 | Runner/GeneratedPluginRegistrant.* 29 | 30 | # Exceptions to above rules. 31 | !default.mode1v3 32 | !default.mode2v3 33 | !default.pbxuser 34 | !default.perspectivev3 35 | -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- 1 | #ifndef RUNNER_UTILS_H_ 2 | #define RUNNER_UTILS_H_ 3 | 4 | #include 5 | #include 6 | 7 | // Creates a console for the process, and redirects stdout and stderr to 8 | // it for both the runner and the Flutter library. 9 | void CreateAndAttachConsole(); 10 | 11 | // Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string 12 | // encoded in UTF-8. Returns an empty std::string on failure. 13 | std::string Utf8FromUtf16(const wchar_t* utf16_string); 14 | 15 | // Gets the command line arguments passed in as a std::vector, 16 | // encoded in UTF-8. Returns an empty std::vector on failure. 17 | std::vector GetCommandLineArguments(); 18 | 19 | #endif // RUNNER_UTILS_H_ 20 | -------------------------------------------------------------------------------- /lib/pages/test.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:wechat_moments/widgets/appbar.dart'; 3 | 4 | class TestPage extends StatefulWidget { 5 | const TestPage({Key? key}) : super(key: key); 6 | 7 | @override 8 | State createState() => _TestPageState(); 9 | } 10 | 11 | class _TestPageState extends State { 12 | @override 13 | Widget build(BuildContext context) { 14 | return Scaffold( 15 | appBar: MyAppBar( 16 | leading: GestureDetector( 17 | onTap: () { 18 | Navigator.pop(context); 19 | }, 20 | child: const Icon( 21 | Icons.arrow_back_ios_outlined, 22 | color: Colors.grey, 23 | ), 24 | ), 25 | ), 26 | body: const Center( 27 | child: Text("测试页面"), 28 | ), 29 | ); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Generated file, do not edit. 3 | # 4 | 5 | list(APPEND FLUTTER_PLUGIN_LIST 6 | ) 7 | 8 | list(APPEND FLUTTER_FFI_PLUGIN_LIST 9 | ) 10 | 11 | set(PLUGIN_BUNDLED_LIBRARIES) 12 | 13 | foreach(plugin ${FLUTTER_PLUGIN_LIST}) 14 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) 15 | target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) 16 | list(APPEND PLUGIN_BUNDLED_LIBRARIES $) 17 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) 18 | endforeach(plugin) 19 | 20 | foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) 21 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin}) 22 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) 23 | endforeach(ffi_plugin) 24 | -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Generated file, do not edit. 3 | # 4 | 5 | list(APPEND FLUTTER_PLUGIN_LIST 6 | ) 7 | 8 | list(APPEND FLUTTER_FFI_PLUGIN_LIST 9 | ) 10 | 11 | set(PLUGIN_BUNDLED_LIBRARIES) 12 | 13 | foreach(plugin ${FLUTTER_PLUGIN_LIST}) 14 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) 15 | target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) 16 | list(APPEND PLUGIN_BUNDLED_LIBRARIES $) 17 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) 18 | endforeach(plugin) 19 | 20 | foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) 21 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin}) 22 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) 23 | endforeach(ffi_plugin) 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | migrate_working_dir/ 12 | 13 | # IntelliJ related 14 | *.iml 15 | *.ipr 16 | *.iws 17 | .idea/ 18 | 19 | # The .vscode folder contains launch configuration and tasks you configure in 20 | # VS Code which you may wish to be included in version control, so this line 21 | # is commented out by default. 22 | #.vscode/ 23 | 24 | # Flutter/Dart/Pub related 25 | **/doc/api/ 26 | **/ios/Flutter/.last_build_id 27 | .dart_tool/ 28 | .flutter-plugins 29 | .flutter-plugins-dependencies 30 | .packages 31 | .pub-cache/ 32 | .pub/ 33 | /build/ 34 | 35 | # Symbolication related 36 | app.*.symbols 37 | 38 | # Obfuscation related 39 | app.*.map.json 40 | 41 | # Android Studio will place build artifacts here 42 | /android/app/debug 43 | /android/app/profile 44 | /android/app/release 45 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 11.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /lib/utils/config.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | ///Apifox 4 | ///请求朋友圈列表数据接口 5 | const String apiBaseUrl = "https://mock.apifox.cn/m1/2837307-0-default/"; 6 | ///朋友圈列表数据 7 | const String apiMoments = "/moments/news"; 8 | const String requestToken = "45DLJcRNodsbpykbih3EHT7sDI80ufUU"; 9 | 10 | ///间距 default=10 11 | const double spacing = 10.0; 12 | 13 | ///图片选取数量 14 | const int maxAssets = 9; 15 | 16 | ///强调色 17 | const Color accentColor = Colors.yellowAccent; 18 | 19 | ///文字辅助色 20 | const Color secondaryTextColor = Colors.lightBlueAccent; 21 | 22 | ///文字强调色 23 | const Color textEmphasizeColor = Color.fromRGBO(23, 75, 115, 1); 24 | 25 | ///图片border 26 | const double imageBorder = 3.0; 27 | 28 | /// 视频录制最大时间 秒 29 | const int maxVideoDuration = 30; 30 | 31 | ///页面 padding 32 | const double pagePadding = 12; 33 | 34 | ///appbar 朋友圈滚动时appbar颜色 35 | const Color appbarColorIsScroll = Color(0xFFEDEDED); 36 | -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PerMonitorV2 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /lib/entity/timeline/time_line_entity.dart: -------------------------------------------------------------------------------- 1 | import 'dart:convert'; 2 | 3 | import 'package:wechat_moments/entity/timeline/result.dart'; 4 | 5 | /// 将json转为实体类 6 | TimeLineEntity timeLineEntityFromJson(String str) => TimeLineEntity.fromJson(json.decode(str)); 7 | 8 | ///将实体类转为json 9 | String timeLineEntityToJson(TimeLineEntity data) => json.encode(data.toJson()); 10 | 11 | 12 | class TimeLineEntity { 13 | int code; 14 | String message; 15 | List result; 16 | 17 | TimeLineEntity({ 18 | required this.code, 19 | required this.message, 20 | required this.result, 21 | }); 22 | 23 | factory TimeLineEntity.fromJson(Map json) => TimeLineEntity( 24 | code: json["code"], 25 | message: json["message"], 26 | result: List.from(json["result"].map((x) => Result.fromJson(x))), 27 | ); 28 | 29 | Map toJson() => { 30 | "code": code, 31 | "message": message, 32 | "result": List.from(result.map((x) => x.toJson())), 33 | }; 34 | } -------------------------------------------------------------------------------- /lib/widgets/slide_appbar.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class SlideAppbarWidget extends StatelessWidget implements PreferredSizeWidget { 4 | const SlideAppbarWidget({ 5 | Key? key, 6 | required this.child, 7 | required this.controller, 8 | required this.visible, 9 | }) : super(key: key); 10 | 11 | final PreferredSizeWidget child; 12 | final AnimationController controller; 13 | final bool visible; 14 | 15 | @override 16 | // TODO: implement preferredSize 17 | Size get preferredSize => child.preferredSize; 18 | 19 | @override 20 | Widget build(BuildContext context) { 21 | visible ? controller.reverse() : controller.forward(); 22 | return SlideTransition( 23 | position: Tween( 24 | begin: Offset.zero, 25 | end: const Offset(0, -1), 26 | ).animate( 27 | CurvedAnimation( 28 | parent: controller, 29 | curve: Curves.fastOutSlowIn, 30 | ), 31 | ), 32 | child: child, 33 | ); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter/services.dart'; 3 | import 'package:wechat_moments/pages/index.dart'; 4 | import 'package:wechat_moments/widgets/global.dart'; 5 | 6 | void main() { 7 | runApp(const MyApp()); 8 | } 9 | 10 | class MyApp extends StatefulWidget { 11 | const MyApp({Key? key}) : super(key: key); 12 | 13 | @override 14 | State createState() => _MyAppState(); 15 | } 16 | 17 | class _MyAppState extends State { 18 | @override 19 | Widget build(BuildContext context) { 20 | // 设置状态栏颜色为透明 21 | SystemChrome.setSystemUIOverlayStyle( 22 | const SystemUiOverlayStyle( 23 | statusBarColor: Colors.transparent, 24 | ), 25 | ); 26 | 27 | return MaterialApp( 28 | debugShowCheckedModeBanner: false, 29 | navigatorObservers: [ 30 | Global.routeObserver 31 | ], 32 | theme: ThemeData( 33 | primarySwatch: Colors.green, 34 | ), 35 | home: const TimeLinePage(), 36 | ); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wechat_moments", 3 | "short_name": "wechat_moments", 4 | "start_url": ".", 5 | "display": "standalone", 6 | "background_color": "#0175C2", 7 | "theme_color": "#0175C2", 8 | "description": "A new Flutter project.", 9 | "orientation": "portrait-primary", 10 | "prefer_related_applications": false, 11 | "icons": [ 12 | { 13 | "src": "icons/Icon-192.png", 14 | "sizes": "192x192", 15 | "type": "image/png" 16 | }, 17 | { 18 | "src": "icons/Icon-512.png", 19 | "sizes": "512x512", 20 | "type": "image/png" 21 | }, 22 | { 23 | "src": "icons/Icon-maskable-192.png", 24 | "sizes": "192x192", 25 | "type": "image/png", 26 | "purpose": "maskable" 27 | }, 28 | { 29 | "src": "icons/Icon-maskable-512.png", 30 | "sizes": "512x512", 31 | "type": "image/png", 32 | "purpose": "maskable" 33 | } 34 | ] 35 | } 36 | -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- 1 | #ifndef RUNNER_FLUTTER_WINDOW_H_ 2 | #define RUNNER_FLUTTER_WINDOW_H_ 3 | 4 | #include 5 | #include 6 | 7 | #include 8 | 9 | #include "win32_window.h" 10 | 11 | // A window that does nothing but host a Flutter view. 12 | class FlutterWindow : public Win32Window { 13 | public: 14 | // Creates a new FlutterWindow hosting a Flutter view running |project|. 15 | explicit FlutterWindow(const flutter::DartProject& project); 16 | virtual ~FlutterWindow(); 17 | 18 | protected: 19 | // Win32Window: 20 | bool OnCreate() override; 21 | void OnDestroy() override; 22 | LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, 23 | LPARAM const lparam) noexcept override; 24 | 25 | private: 26 | // The project to run. 27 | flutter::DartProject project_; 28 | 29 | // The Flutter instance hosted by this window. 30 | std::unique_ptr flutter_controller_; 31 | }; 32 | 33 | #endif // RUNNER_FLUTTER_WINDOW_H_ 34 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /lib/entity/timeline_likesAndcomments/time_line_like_comments_entity.dart: -------------------------------------------------------------------------------- 1 | import 'dart:convert'; 2 | 3 | import '../timeline_likesAndcomments/result.dart'; 4 | 5 | TimeLineLikesCommentsEntity timeLineLikesCommentsEntityFromJson(String str) => TimeLineLikesCommentsEntity.fromJson(json.decode(str)); 6 | 7 | String timeLineLikesCommentsEntityToJson(TimeLineLikesCommentsEntity data) => json.encode(data.toJson()); 8 | 9 | class TimeLineLikesCommentsEntity { 10 | int code; 11 | String message; 12 | List result; 13 | 14 | TimeLineLikesCommentsEntity({ 15 | required this.code, 16 | required this.message, 17 | required this.result, 18 | }); 19 | 20 | factory TimeLineLikesCommentsEntity.fromJson(Map json) => TimeLineLikesCommentsEntity( 21 | code: json["code"], 22 | message: json["message"], 23 | result: List.from(json["result"].map((x) => Result.fromJson(x))), 24 | ); 25 | 26 | Map toJson() => { 27 | "code": code, 28 | "message": message, 29 | "result": List.from(result.map((x) => x.toJson())), 30 | }; 31 | } -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.7.10' 3 | repositories { 4 | // google() 5 | // mavenCentral() 6 | maven { url 'https://maven.aliyun.com/repository/google' } 7 | maven { url 'https://maven.aliyun.com/repository/jcenter' } 8 | maven { url 'https://maven.aliyun.com/nexus/content/groups/public' } 9 | } 10 | 11 | dependencies { 12 | classpath 'com.android.tools.build:gradle:7.2.0' 13 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 14 | } 15 | } 16 | 17 | allprojects { 18 | repositories { 19 | // google() 20 | // mavenCentral() 21 | maven { url 'https://maven.aliyun.com/repository/google' } 22 | maven { url 'https://maven.aliyun.com/repository/jcenter' } 23 | maven { url 'https://maven.aliyun.com/nexus/content/groups/public' } 24 | } 25 | } 26 | 27 | rootProject.buildDir = '../build' 28 | subprojects { 29 | project.buildDir = "${rootProject.buildDir}/${project.name}" 30 | } 31 | subprojects { 32 | project.evaluationDependsOn(':app') 33 | } 34 | 35 | tasks.register("clean", Delete) { 36 | delete rootProject.buildDir 37 | } 38 | -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter widget test. 2 | // 3 | // To perform an interaction with a widget in your test, use the WidgetTester 4 | // utility in the flutter_test package. For example, you can send tap and scroll 5 | // gestures. You can also use WidgetTester to find child widgets in the widget 6 | // tree, read text, and verify that the values of widget properties are correct. 7 | 8 | import 'package:flutter/material.dart'; 9 | import 'package:flutter_test/flutter_test.dart'; 10 | 11 | import 'package:wechat_moments/main.dart'; 12 | 13 | void main() { 14 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 15 | // Build our app and trigger a frame. 16 | await tester.pumpWidget(const MyApp()); 17 | 18 | // Verify that our counter starts at 0. 19 | expect(find.text('0'), findsOneWidget); 20 | expect(find.text('1'), findsNothing); 21 | 22 | // Tap the '+' icon and trigger a frame. 23 | await tester.tap(find.byIcon(Icons.add)); 24 | await tester.pump(); 25 | 26 | // Verify that our counter has incremented. 27 | expect(find.text('0'), findsNothing); 28 | expect(find.text('1'), findsOneWidget); 29 | }); 30 | } 31 | -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | $(FLUTTER_BUILD_NAME) 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSMinimumSystemVersion 24 | $(MACOSX_DEPLOYMENT_TARGET) 25 | NSHumanReadableCopyright 26 | $(PRODUCT_COPYRIGHT) 27 | NSMainNibFile 28 | MainMenu 29 | NSPrincipalClass 30 | NSApplication 31 | 32 | 33 | -------------------------------------------------------------------------------- /lib/api/timeline.dart: -------------------------------------------------------------------------------- 1 | import 'package:dio/dio.dart'; 2 | // import 'package:wechat_moments/entity/timeline/result.dart'; 3 | 4 | import '../entity/timeline_likesAndcomments/time_line_like_comments_entity.dart'; 5 | import '../entity/timeline_likesAndcomments/result.dart'; 6 | 7 | ///朋友圈api 8 | class TimelineApi { 9 | // 翻页列表 10 | // static Future> getPageList({Map? data}) async { 11 | // // 默认的请求数据 12 | // Map defaultPostData = Map(); 13 | // defaultPostData["pages"] = 5; 14 | // 15 | // Response res = 16 | // await WxHttpUtil().post(apiMoments, data: data ??= defaultPostData); 17 | // 18 | // 19 | // var timeLineEntity = timeLineEntityFromJson(res.toString()); 20 | // 21 | // List items = []; 22 | // 23 | // for (var item in timeLineEntity.result) { 24 | // items.add(item); 25 | // } 26 | // 27 | // return items; 28 | // } 29 | 30 | // 获取res的数据 31 | static Future> getData({required Response response}) async{ 32 | 33 | TimeLineLikesCommentsEntity entity = timeLineLikesCommentsEntityFromJson(response.toString()); 34 | 35 | List items = []; 36 | 37 | for(var item in entity.result){ 38 | items.add(item); 39 | } 40 | 41 | return items; 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /lib/widgets/camera/widget/count_down.dart: -------------------------------------------------------------------------------- 1 | import 'dart:async'; 2 | 3 | import 'package:flutter/material.dart'; 4 | 5 | class Countdown extends StatefulWidget { 6 | const Countdown({ 7 | Key? key, 8 | required this.time, 9 | required this.callback, 10 | }) : super(key: key); 11 | 12 | final Duration? time; 13 | final Function callback; 14 | 15 | @override 16 | State createState() => _CountdownState(); 17 | } 18 | 19 | class _CountdownState extends State { 20 | late Duration _currentTime; 21 | late final Timer _timer; 22 | 23 | @override 24 | void initState() { 25 | super.initState(); 26 | print("6666666"); 27 | _currentTime = widget.time!; 28 | _timer = Timer.periodic(Duration(seconds: 1), (timer) { 29 | final newTime = _currentTime - Duration(seconds: 1); 30 | if (newTime == Duration.zero) { 31 | widget.callback(); 32 | _timer.cancel(); 33 | } else { 34 | setState(() { 35 | _currentTime = newTime; 36 | }); 37 | } 38 | }); 39 | } 40 | 41 | @override 42 | void dispose() { 43 | super.dispose(); 44 | _timer.cancel(); 45 | } 46 | 47 | @override 48 | Widget build(BuildContext context) { 49 | return Text( 50 | "${_currentTime.inSeconds}", 51 | style: const TextStyle( 52 | color: Colors.white, 53 | fontSize: 32, 54 | ), 55 | ); 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | #include "flutter_window.h" 6 | #include "utils.h" 7 | 8 | int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, 9 | _In_ wchar_t *command_line, _In_ int show_command) { 10 | // Attach to console when present (e.g., 'flutter run') or create a 11 | // new console when running with a debugger. 12 | if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { 13 | CreateAndAttachConsole(); 14 | } 15 | 16 | // Initialize COM, so that it is available for use in the library and/or 17 | // plugins. 18 | ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); 19 | 20 | flutter::DartProject project(L"data"); 21 | 22 | std::vector command_line_arguments = 23 | GetCommandLineArguments(); 24 | 25 | project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); 26 | 27 | FlutterWindow window(project); 28 | Win32Window::Point origin(10, 10); 29 | Win32Window::Size size(1280, 720); 30 | if (!window.Create(L"wechat_moments", origin, size)) { 31 | return EXIT_FAILURE; 32 | } 33 | window.SetQuitOnClose(true); 34 | 35 | ::MSG msg; 36 | while (::GetMessage(&msg, nullptr, 0, 0)) { 37 | ::TranslateMessage(&msg); 38 | ::DispatchMessage(&msg); 39 | } 40 | 41 | ::CoUninitialize(); 42 | return EXIT_SUCCESS; 43 | } 44 | -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | # This file configures the analyzer, which statically analyzes Dart code to 2 | # check for errors, warnings, and lints. 3 | # 4 | # The issues identified by the analyzer are surfaced in the UI of Dart-enabled 5 | # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be 6 | # invoked from the command line by running `flutter analyze`. 7 | 8 | # The following line activates a set of recommended lints for Flutter apps, 9 | # packages, and plugins designed to encourage good coding practices. 10 | include: package:flutter_lints/flutter.yaml 11 | 12 | linter: 13 | # The lint rules applied to this project can be customized in the 14 | # section below to disable rules from the `package:flutter_lints/flutter.yaml` 15 | # included above or to enable additional rules. A list of all available lints 16 | # and their documentation is published at 17 | # https://dart-lang.github.io/linter/lints/index.html. 18 | # 19 | # Instead of disabling a lint rule for the entire project in the 20 | # section below, it can also be suppressed for a single line of code 21 | # or a specific dart file by using the `// ignore: name_of_lint` and 22 | # `// ignore_for_file: name_of_lint` syntax on the line or in the file 23 | # producing the lint. 24 | rules: 25 | # avoid_print: false # Uncomment to disable the `avoid_print` rule 26 | # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule 27 | 28 | # Additional information about this file can be found at 29 | # https://dart.dev/guides/language/analysis-options 30 | -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "16x16", 5 | "idiom" : "mac", 6 | "filename" : "app_icon_16.png", 7 | "scale" : "1x" 8 | }, 9 | { 10 | "size" : "16x16", 11 | "idiom" : "mac", 12 | "filename" : "app_icon_32.png", 13 | "scale" : "2x" 14 | }, 15 | { 16 | "size" : "32x32", 17 | "idiom" : "mac", 18 | "filename" : "app_icon_32.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "32x32", 23 | "idiom" : "mac", 24 | "filename" : "app_icon_64.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "128x128", 29 | "idiom" : "mac", 30 | "filename" : "app_icon_128.png", 31 | "scale" : "1x" 32 | }, 33 | { 34 | "size" : "128x128", 35 | "idiom" : "mac", 36 | "filename" : "app_icon_256.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "256x256", 41 | "idiom" : "mac", 42 | "filename" : "app_icon_256.png", 43 | "scale" : "1x" 44 | }, 45 | { 46 | "size" : "256x256", 47 | "idiom" : "mac", 48 | "filename" : "app_icon_512.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "512x512", 53 | "idiom" : "mac", 54 | "filename" : "app_icon_512.png", 55 | "scale" : "1x" 56 | }, 57 | { 58 | "size" : "512x512", 59 | "idiom" : "mac", 60 | "filename" : "app_icon_1024.png", 61 | "scale" : "2x" 62 | } 63 | ], 64 | "info" : { 65 | "version" : 1, 66 | "author" : "xcode" 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /lib/widgets/appbar.dart: -------------------------------------------------------------------------------- 1 | import 'package:animate_do/animate_do.dart'; 2 | import 'package:flutter/cupertino.dart'; 3 | import 'package:flutter/material.dart'; 4 | 5 | class MyAppBar extends StatelessWidget implements PreferredSizeWidget { 6 | MyAppBar( 7 | {super.key, 8 | this.backgroundColor, 9 | this.elevation, 10 | this.leading, 11 | this.actions, 12 | this.title, 13 | this.centerTitle, 14 | this.isAnimated, 15 | this.isShow}); 16 | 17 | ///appbar的背景颜色 18 | final Color? backgroundColor; 19 | 20 | ///appbar的海拔阴影 21 | final double? elevation; 22 | 23 | /// 在[title]之前的小组件 24 | final Widget? leading; 25 | 26 | /// 在[title]之后的小组件 27 | final List? actions; 28 | 29 | ///appbar 标题 30 | final Widget? title; 31 | 32 | ///是否使用动画 33 | final bool? isAnimated; 34 | 35 | ///是否显示动画 36 | final bool? isShow; 37 | 38 | final bool? centerTitle; 39 | 40 | @override 41 | // TODO: implement preferredSize 42 | Size get preferredSize => const Size.fromHeight(55); 43 | 44 | Widget _mainView() { 45 | var appBar = AppBar( 46 | title: title, 47 | backgroundColor: backgroundColor ?? Colors.transparent, 48 | elevation: elevation ?? 0, 49 | leading: leading, 50 | actions: actions, 51 | centerTitle: centerTitle, 52 | ); 53 | 54 | // 如果使用动画,则返回被动画组件嵌套的appbar,并且如果需要显示,则让appbar向下逐渐淡入,否则向上逐渐淡出 55 | return isAnimated == true 56 | ? isShow == true 57 | ? FadeInDown( 58 | duration: const Duration(milliseconds: 300), child: appBar) 59 | : FadeOutUp( 60 | duration: const Duration(milliseconds: 300), child: appBar) 61 | : appBar; 62 | } 63 | 64 | @override 65 | Widget build(BuildContext context) { 66 | return _mainView(); 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled. 5 | 6 | version: 7 | revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 8 | channel: stable 9 | 10 | project_type: app 11 | 12 | # Tracks metadata for the flutter migrate command 13 | migration: 14 | platforms: 15 | - platform: root 16 | create_revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 17 | base_revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 18 | - platform: android 19 | create_revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 20 | base_revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 21 | - platform: ios 22 | create_revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 23 | base_revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 24 | - platform: linux 25 | create_revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 26 | base_revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 27 | - platform: macos 28 | create_revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 29 | base_revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 30 | - platform: web 31 | create_revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 32 | base_revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 33 | - platform: windows 34 | create_revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 35 | base_revision: d3d8effc686d73e0114d71abdcccef63fa1f25d2 36 | 37 | # User provided section 38 | 39 | # List of Local paths (relative to this file) that should be 40 | # ignored by the migrate tool. 41 | # 42 | # Files that are not part of the templates will be ignored by default. 43 | unmanaged_files: 44 | - 'lib/main.dart' 45 | - 'ios/Runner.xcodeproj/project.pbxproj' 46 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleDisplayName 8 | Wechat Moments 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | wechat_moments 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | $(FLUTTER_BUILD_NAME) 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | $(FLUTTER_BUILD_NUMBER) 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIMainStoryboardFile 30 | Main 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UISupportedInterfaceOrientations~ipad 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationPortraitUpsideDown 41 | UIInterfaceOrientationLandscapeLeft 42 | UIInterfaceOrientationLandscapeRight 43 | 44 | UIViewControllerBasedStatusBarAppearance 45 | 46 | CADisableMinimumFrameDurationOnPhone 47 | 48 | UIApplicationSupportsIndirectInputEvents 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.14) 2 | project(runner LANGUAGES CXX) 3 | 4 | # Define the application target. To change its name, change BINARY_NAME in the 5 | # top-level CMakeLists.txt, not the value here, or `flutter run` will no longer 6 | # work. 7 | # 8 | # Any new source files that you add to the application should be added here. 9 | add_executable(${BINARY_NAME} WIN32 10 | "flutter_window.cpp" 11 | "main.cpp" 12 | "utils.cpp" 13 | "win32_window.cpp" 14 | "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" 15 | "Runner.rc" 16 | "runner.exe.manifest" 17 | ) 18 | 19 | # Apply the standard set of build settings. This can be removed for applications 20 | # that need different build settings. 21 | apply_standard_settings(${BINARY_NAME}) 22 | 23 | # Add preprocessor definitions for the build version. 24 | target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION=\"${FLUTTER_VERSION}\"") 25 | target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}") 26 | target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}") 27 | target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}") 28 | target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}") 29 | 30 | # Disable Windows macros that collide with C++ standard library functions. 31 | target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") 32 | 33 | # Add dependency libraries and include directories. Add any application-specific 34 | # dependencies here. 35 | target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) 36 | target_link_libraries(${BINARY_NAME} PRIVATE "dwmapi.lib") 37 | target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") 38 | 39 | # Run the Flutter tool portions of the build. This must not be removed. 40 | add_dependencies(${BINARY_NAME} flutter_assemble) 41 | -------------------------------------------------------------------------------- /lib/utils/wx_http.dart: -------------------------------------------------------------------------------- 1 | import 'package:dio/dio.dart'; 2 | 3 | import 'index.dart'; 4 | 5 | ///微信http 6 | class WxHttpUtil { 7 | static final WxHttpUtil _instance = WxHttpUtil._internal(); 8 | 9 | factory WxHttpUtil() { 10 | return _instance; 11 | } 12 | 13 | Dio? _dio; 14 | 15 | WxHttpUtil._internal() { 16 | if (_dio == null) { 17 | _dio = Dio(); 18 | _dio?.options = BaseOptions( 19 | baseUrl: apiBaseUrl, 20 | connectTimeout: const Duration(seconds: 10), 21 | //10秒 22 | receiveTimeout: const Duration(seconds: 5), 23 | //5秒 24 | headers: { 25 | "apifoxToken": requestToken, 26 | }, 27 | contentType: "application/json; charset=utf-8", 28 | responseType: ResponseType.json, 29 | ); 30 | } 31 | } 32 | 33 | ///get请求 34 | Future get(String url, {Map? params}) async { 35 | Response response = await _dio!.get(url, queryParameters: params); 36 | return response; 37 | } 38 | 39 | ///post请求 40 | Future post(String url, {Map? data}) async { 41 | late Response response; 42 | try { 43 | response = await _dio!.post(url, data: data); 44 | }on DioError catch(e){ 45 | formatError(e); 46 | } 47 | return response; 48 | } 49 | 50 | // error统一处理 51 | void formatError(DioError e) { 52 | print("post error---------------------------------------------$e"); 53 | DioErrorType errorType = e.type; 54 | MyToast.show("${e.message ?? e.toString()}请检查网络连接"); 55 | if (errorType == DioErrorType.connectionTimeout) { 56 | print("连接超时"); 57 | } else if (errorType == DioErrorType.receiveTimeout) { 58 | print("响应超时"); 59 | } else if (errorType == DioErrorType.sendTimeout) { 60 | print("发送超时"); 61 | } else if (errorType == DioErrorType.cancel) { 62 | print("请求取消"); 63 | } else if (errorType == DioErrorType.badResponse) { 64 | print("出现异常"); 65 | } else { 66 | print("其它异常"); 67 | } 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- 1 | #include "utils.h" 2 | 3 | #include 4 | #include 5 | #include 6 | #include 7 | 8 | #include 9 | 10 | void CreateAndAttachConsole() { 11 | if (::AllocConsole()) { 12 | FILE *unused; 13 | if (freopen_s(&unused, "CONOUT$", "w", stdout)) { 14 | _dup2(_fileno(stdout), 1); 15 | } 16 | if (freopen_s(&unused, "CONOUT$", "w", stderr)) { 17 | _dup2(_fileno(stdout), 2); 18 | } 19 | std::ios::sync_with_stdio(); 20 | FlutterDesktopResyncOutputStreams(); 21 | } 22 | } 23 | 24 | std::vector GetCommandLineArguments() { 25 | // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use. 26 | int argc; 27 | wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc); 28 | if (argv == nullptr) { 29 | return std::vector(); 30 | } 31 | 32 | std::vector command_line_arguments; 33 | 34 | // Skip the first argument as it's the binary name. 35 | for (int i = 1; i < argc; i++) { 36 | command_line_arguments.push_back(Utf8FromUtf16(argv[i])); 37 | } 38 | 39 | ::LocalFree(argv); 40 | 41 | return command_line_arguments; 42 | } 43 | 44 | std::string Utf8FromUtf16(const wchar_t* utf16_string) { 45 | if (utf16_string == nullptr) { 46 | return std::string(); 47 | } 48 | int target_length = ::WideCharToMultiByte( 49 | CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, 50 | -1, nullptr, 0, nullptr, nullptr) 51 | -1; // remove the trailing null character 52 | int input_length = (int)wcslen(utf16_string); 53 | std::string utf8_string; 54 | if (target_length <= 0 || target_length > utf8_string.max_size()) { 55 | return utf8_string; 56 | } 57 | utf8_string.resize(target_length); 58 | int converted_length = ::WideCharToMultiByte( 59 | CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, 60 | input_length, utf8_string.data(), target_length, nullptr, nullptr); 61 | if (converted_length == 0) { 62 | return std::string(); 63 | } 64 | return utf8_string; 65 | } 66 | -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | wechat_moments 33 | 34 | 35 | 39 | 40 | 41 | 42 | 43 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- 1 | #include "flutter_window.h" 2 | 3 | #include 4 | 5 | #include "flutter/generated_plugin_registrant.h" 6 | 7 | FlutterWindow::FlutterWindow(const flutter::DartProject& project) 8 | : project_(project) {} 9 | 10 | FlutterWindow::~FlutterWindow() {} 11 | 12 | bool FlutterWindow::OnCreate() { 13 | if (!Win32Window::OnCreate()) { 14 | return false; 15 | } 16 | 17 | RECT frame = GetClientArea(); 18 | 19 | // The size here must match the window dimensions to avoid unnecessary surface 20 | // creation / destruction in the startup path. 21 | flutter_controller_ = std::make_unique( 22 | frame.right - frame.left, frame.bottom - frame.top, project_); 23 | // Ensure that basic setup of the controller was successful. 24 | if (!flutter_controller_->engine() || !flutter_controller_->view()) { 25 | return false; 26 | } 27 | RegisterPlugins(flutter_controller_->engine()); 28 | SetChildContent(flutter_controller_->view()->GetNativeWindow()); 29 | 30 | flutter_controller_->engine()->SetNextFrameCallback([&]() { 31 | this->Show(); 32 | }); 33 | 34 | return true; 35 | } 36 | 37 | void FlutterWindow::OnDestroy() { 38 | if (flutter_controller_) { 39 | flutter_controller_ = nullptr; 40 | } 41 | 42 | Win32Window::OnDestroy(); 43 | } 44 | 45 | LRESULT 46 | FlutterWindow::MessageHandler(HWND hwnd, UINT const message, 47 | WPARAM const wparam, 48 | LPARAM const lparam) noexcept { 49 | // Give Flutter, including plugins, an opportunity to handle window messages. 50 | if (flutter_controller_) { 51 | std::optional result = 52 | flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, 53 | lparam); 54 | if (result) { 55 | return *result; 56 | } 57 | } 58 | 59 | switch (message) { 60 | case WM_FONTCHANGE: 61 | flutter_controller_->engine()->ReloadSystemFonts(); 62 | break; 63 | } 64 | 65 | return Win32Window::MessageHandler(hwnd, message, wparam, lparam); 66 | } 67 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 14 | 22 | 26 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /lib/utils/asset_picker.dart: -------------------------------------------------------------------------------- 1 | import 'package:camerawesome/camerawesome_plugin.dart'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:wechat_assets_picker/wechat_assets_picker.dart'; 4 | import 'package:wechat_moments/widgets/camera/camera.dart'; 5 | 6 | import 'config.dart'; 7 | 8 | class MyAssetPicker { 9 | ///相册 10 | static Future?> getAsset({ 11 | required BuildContext context, 12 | List? selectedAssets, 13 | int maxAssets = maxAssets, 14 | RequestType requestType = RequestType.image, 15 | }) async { 16 | List? result = await AssetPicker.pickAssets( 17 | context, 18 | pickerConfig: AssetPickerConfig( 19 | selectedAssets: selectedAssets, 20 | requestType: requestType, 21 | maxAssets: maxAssets, 22 | ), 23 | ); 24 | return result; 25 | } 26 | 27 | /// 拍摄照片 28 | static Future takePhoto(BuildContext context) async { 29 | final result = await Navigator.of(context).push( 30 | MaterialPageRoute( 31 | builder: (bc) { 32 | return const CameraPage(); 33 | }, 34 | ), 35 | ); 36 | return result; 37 | } 38 | 39 | ///拍摄视频 40 | static Future takeVideo(BuildContext context) async { 41 | final result = await Navigator.of(context).push( 42 | MaterialPageRoute( 43 | builder: (bc) { 44 | return const CameraPage( 45 | captureMode: CaptureMode.video, 46 | maxVideoDuration: Duration(seconds: maxVideoDuration), 47 | ); 48 | }, 49 | ), 50 | ); 51 | return result; 52 | } 53 | 54 | ///弹出底部选择栏 55 | static Future showBottomSheet(BuildContext context, 56 | {Widget? child}) { 57 | return showModalBottomSheet( 58 | context: context, 59 | useSafeArea: true, 60 | shape: const RoundedRectangleBorder( 61 | borderRadius: BorderRadius.only( 62 | topLeft: Radius.circular(10), 63 | topRight: Radius.circular(10), 64 | ), 65 | ), 66 | builder: (BuildContext context) { 67 | return Padding( 68 | padding: const EdgeInsets.symmetric( 69 | vertical: 16, 70 | ), 71 | child: child, 72 | ); 73 | }, 74 | ); 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /lib/entity/timeline/result.dart: -------------------------------------------------------------------------------- 1 | import 'dart:convert'; 2 | 3 | /// 将json转为实体类 4 | Result resultEntityFromJson(String str) => Result.fromJson(json.decode(str)); 5 | 6 | ///将实体类转为json 7 | String resultEntityToJson(Result data) => json.encode(data.toJson()); 8 | 9 | 10 | class Result { 11 | double id; 12 | Video video; 13 | String content; 14 | User user; 15 | String publishDate; 16 | String location; 17 | bool isLike; 18 | List images; 19 | 20 | Result({ 21 | required this.id, 22 | required this.video, 23 | required this.content, 24 | required this.user, 25 | required this.publishDate, 26 | required this.location, 27 | required this.isLike, 28 | required this.images, 29 | }); 30 | 31 | factory Result.fromJson(Map json) => Result( 32 | id: json["id"]?.toDouble(), 33 | video: Video.fromJson(json["video"]), 34 | content: json["content"], 35 | user: User.fromJson(json["user"]), 36 | publishDate: json["publishDate"], 37 | location: json["location"], 38 | isLike: json["is_like"], 39 | images: List.from(json["images"].map((x) => x)), 40 | ); 41 | 42 | Map toJson() => { 43 | "id": id, 44 | "video": video.toJson(), 45 | "content": content, 46 | "user": user.toJson(), 47 | "publishDate": publishDate, 48 | "location": location, 49 | "is_like": isLike, 50 | "images": List.from(images.map((x) => x)), 51 | }; 52 | } 53 | class User { 54 | String uid; 55 | String nickname; 56 | String avator; 57 | 58 | User({ 59 | required this.uid, 60 | required this.nickname, 61 | required this.avator, 62 | }); 63 | 64 | factory User.fromJson(Map json) => User( 65 | uid: json["uid"], 66 | nickname: json["nickname"], 67 | avator: json["avator"], 68 | ); 69 | 70 | Map toJson() => { 71 | "uid": uid, 72 | "nickname": nickname, 73 | "avator": avator, 74 | }; 75 | } 76 | 77 | class Video { 78 | String cover; 79 | String url; 80 | 81 | Video({ 82 | required this.cover, 83 | required this.url, 84 | }); 85 | 86 | factory Video.fromJson(Map json) => Video( 87 | cover: json["cover"], 88 | url: json["url"], 89 | ); 90 | 91 | Map toJson() => { 92 | "cover": cover, 93 | "url": url, 94 | }; 95 | } -------------------------------------------------------------------------------- /lib/utils/compress.dart: -------------------------------------------------------------------------------- 1 | import 'dart:io'; 2 | import 'dart:typed_data'; 3 | 4 | import 'package:flutter_image_compress/flutter_image_compress.dart'; 5 | import 'package:video_compress/video_compress.dart'; 6 | 7 | ///压缩返回类型 8 | class CompressMediaFile { 9 | /// 缩略图 10 | final File? thumbnail; 11 | 12 | /// 媒体文件 13 | final MediaInfo? video; 14 | 15 | CompressMediaFile({this.thumbnail, this.video}); 16 | } 17 | 18 | ///压缩类 19 | class DuCompress { 20 | /// 压缩File类型的图片 21 | static Future compressAndGetFile( 22 | XFile file, 23 | String targetPath, { 24 | int minWidth = 1920, 25 | int minHeight = 1080, 26 | }) async { 27 | return await FlutterImageCompress.compressAndGetFile( 28 | // file 是一个 File 类型的参数,它表示要压缩的文件。你可以传入一个 File 对象,它指向你要压缩的图片文件。 29 | file.path, 30 | // targetPath 是一个字符串,它表示压缩后的文件的输出路径。你可以指定一个文件路径,压缩后的文件将会被保存在这个路径下。 31 | targetPath, 32 | 33 | minWidth: minWidth, 34 | minHeight: minHeight, 35 | // 压缩的质量 36 | quality: 70, 37 | // 转换的格式 38 | format: CompressFormat.jpeg, 39 | ); 40 | } 41 | 42 | /// 压缩Uint8List类型的图片 43 | static Future compressWithList( 44 | Uint8List uint8list, { 45 | int minWidth = 1920, 46 | int minHeight = 1080, 47 | }) async { 48 | return await FlutterImageCompress.compressWithList( 49 | uint8list, 50 | minWidth: minWidth, 51 | minHeight: minHeight, 52 | quality: 70, 53 | format: CompressFormat.jpeg, 54 | ); 55 | } 56 | 57 | /// 压缩视频 58 | static Future video(File file) async { 59 | // 使用Future.wait()处理多个异步事件 60 | var result = await Future.wait([ 61 | VideoCompress.compressVideo(file.path, 62 | quality: VideoQuality.Res640x480Quality, 63 | deleteOrigin: false, 64 | includeAudio: true, 65 | frameRate: 25), 66 | VideoCompress.getFileThumbnail( 67 | 68 | file.path, 69 | quality: 70, 70 | position: -1000, 71 | ), 72 | ]); 73 | return CompressMediaFile( 74 | video: result.first as MediaInfo, 75 | thumbnail: result.last as File, 76 | ); 77 | } 78 | 79 | ///清理缓存 80 | static Future clean() async { 81 | return await VideoCompress.deleteAllCache(); 82 | } 83 | 84 | ///取消 85 | static Future cancel() async { 86 | return await VideoCompress.cancelCompression(); 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply plugin: 'kotlin-android' 26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 27 | 28 | android { 29 | namespace "com.example.wechat_moments" 30 | compileSdkVersion flutter.compileSdkVersion 31 | ndkVersion flutter.ndkVersion 32 | 33 | compileOptions { 34 | sourceCompatibility JavaVersion.VERSION_1_8 35 | targetCompatibility JavaVersion.VERSION_1_8 36 | } 37 | 38 | kotlinOptions { 39 | jvmTarget = '1.8' 40 | } 41 | 42 | sourceSets { 43 | main.java.srcDirs += 'src/main/kotlin' 44 | } 45 | 46 | defaultConfig { 47 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 48 | applicationId "com.example.wechat_moments" 49 | // You can update the following values to match your application needs. 50 | // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. 51 | minSdkVersion 21 52 | targetSdkVersion flutter.targetSdkVersion 53 | versionCode flutterVersionCode.toInteger() 54 | versionName flutterVersionName 55 | multiDexEnabled true 56 | } 57 | 58 | buildTypes { 59 | release { 60 | // TODO: Add your own signing config for the release build. 61 | // Signing with the debug keys for now, so `flutter run --release` works. 62 | signingConfig signingConfigs.debug 63 | } 64 | } 65 | } 66 | 67 | flutter { 68 | source '../..' 69 | } 70 | 71 | dependencies { 72 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 73 | implementation 'androidx.multidex:multidex:2.0.1' 74 | } 75 | -------------------------------------------------------------------------------- /lib/widgets/camera/camera.dart: -------------------------------------------------------------------------------- 1 | import 'package:camerawesome/camerawesome_plugin.dart'; 2 | import 'package:camerawesome/pigeon.dart'; 3 | import 'package:flutter/material.dart'; 4 | import 'package:flutter/widgets.dart'; 5 | import 'package:path_provider/path_provider.dart'; 6 | import 'package:uuid/uuid.dart'; 7 | import 'package:wechat_moments/widgets/camera/widget/take_photo.dart'; 8 | import 'package:wechat_moments/widgets/camera/widget/take_video.dart'; 9 | 10 | class CameraPage extends StatelessWidget { 11 | const CameraPage({ 12 | Key? key, 13 | this.captureMode = CaptureMode.photo, 14 | this.maxVideoDuration, 15 | }) : super(key: key); 16 | 17 | // 拍照、视频 18 | final CaptureMode captureMode; 19 | 20 | // 视频最大时长 21 | final Duration? maxVideoDuration; 22 | 23 | // 生成文件路径 24 | Future _buildFilePath() async { 25 | // 获取临时文件路径,获取的就是app安装后里的cache目录 26 | final extDir = await getTemporaryDirectory(); 27 | // 文件类型扩展名 28 | final extendName = captureMode == CaptureMode.photo ? "jpg" : "mp4"; 29 | final finalPath = "${extDir.path}/${Uuid().v4()}.${extendName}"; 30 | print("文件路径:${finalPath}"); 31 | return finalPath; 32 | } 33 | 34 | @override 35 | Widget build(BuildContext context) { 36 | return Scaffold( 37 | body: CameraAwesomeBuilder.custom( 38 | saveConfig: captureMode == CaptureMode.photo 39 | ? SaveConfig.photo(pathBuilder: _buildFilePath) 40 | : SaveConfig.video(pathBuilder: _buildFilePath), 41 | builder: ( 42 | CameraState state, 43 | PreviewSize previewSize, 44 | Rect previewRect, 45 | ) { 46 | return state.when( 47 | // 拍照 48 | onPhotoMode: (PhotoCameraState state) { 49 | return TakePhotoPage( 50 | cameraState: state, 51 | ); 52 | }, 53 | // 拍视频 54 | onVideoMode: (VideoCameraState state) { 55 | return TakeVideoPage( 56 | cameraState: state, 57 | ); 58 | }, 59 | // 拍摄中 60 | onVideoRecordingMode: (VideoRecordingCameraState state) { 61 | return TakeVideoPage( 62 | cameraState: state, 63 | ); 64 | }, 65 | // 启动摄像头 66 | onPreparingCamera: (PreparingCameraState state) { 67 | return const Center( 68 | child: CircularProgressIndicator(), 69 | ); 70 | }, 71 | ); 72 | }, 73 | // 图像生成的配置信息 74 | imageAnalysisConfig: 75 | AnalysisConfig(outputFormat: InputAnalysisImageFormat.jpeg), 76 | ), 77 | ); 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # This file controls Flutter-level build steps. It should not be edited. 2 | cmake_minimum_required(VERSION 3.10) 3 | 4 | set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") 5 | 6 | # Configuration provided via flutter tool. 7 | include(${EPHEMERAL_DIR}/generated_config.cmake) 8 | 9 | # TODO: Move the rest of this into files in ephemeral. See 10 | # https://github.com/flutter/flutter/issues/57146. 11 | 12 | # Serves the same purpose as list(TRANSFORM ... PREPEND ...), 13 | # which isn't available in 3.10. 14 | function(list_prepend LIST_NAME PREFIX) 15 | set(NEW_LIST "") 16 | foreach(element ${${LIST_NAME}}) 17 | list(APPEND NEW_LIST "${PREFIX}${element}") 18 | endforeach(element) 19 | set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE) 20 | endfunction() 21 | 22 | # === Flutter Library === 23 | # System-level dependencies. 24 | find_package(PkgConfig REQUIRED) 25 | pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) 26 | pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0) 27 | pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0) 28 | 29 | set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so") 30 | 31 | # Published to parent scope for install step. 32 | set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) 33 | set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) 34 | set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) 35 | set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE) 36 | 37 | list(APPEND FLUTTER_LIBRARY_HEADERS 38 | "fl_basic_message_channel.h" 39 | "fl_binary_codec.h" 40 | "fl_binary_messenger.h" 41 | "fl_dart_project.h" 42 | "fl_engine.h" 43 | "fl_json_message_codec.h" 44 | "fl_json_method_codec.h" 45 | "fl_message_codec.h" 46 | "fl_method_call.h" 47 | "fl_method_channel.h" 48 | "fl_method_codec.h" 49 | "fl_method_response.h" 50 | "fl_plugin_registrar.h" 51 | "fl_plugin_registry.h" 52 | "fl_standard_message_codec.h" 53 | "fl_standard_method_codec.h" 54 | "fl_string_codec.h" 55 | "fl_value.h" 56 | "fl_view.h" 57 | "flutter_linux.h" 58 | ) 59 | list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/") 60 | add_library(flutter INTERFACE) 61 | target_include_directories(flutter INTERFACE 62 | "${EPHEMERAL_DIR}" 63 | ) 64 | target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}") 65 | target_link_libraries(flutter INTERFACE 66 | PkgConfig::GTK 67 | PkgConfig::GLIB 68 | PkgConfig::GIO 69 | ) 70 | add_dependencies(flutter flutter_assemble) 71 | 72 | # === Flutter tool backend === 73 | # _phony_ is a non-existent file to force this command to run every time, 74 | # since currently there's no way to get a full input/output list from the 75 | # flutter tool. 76 | add_custom_command( 77 | OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} 78 | ${CMAKE_CURRENT_BINARY_DIR}/_phony_ 79 | COMMAND ${CMAKE_COMMAND} -E env 80 | ${FLUTTER_TOOL_ENVIRONMENT} 81 | "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh" 82 | ${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE} 83 | VERBATIM 84 | ) 85 | add_custom_target(flutter_assemble DEPENDS 86 | "${FLUTTER_LIBRARY}" 87 | ${FLUTTER_LIBRARY_HEADERS} 88 | ) 89 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-60x60@2x.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "60x60", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-60x60@3x.png", 55 | "scale" : "3x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-App-20x20@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "20x20", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-App-20x20@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-29x29@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-29x29@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-40x40@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "40x40", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-40x40@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-76x76@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "76x76", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-76x76@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "83.5x83.5", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-App-83.5x83.5@2x.png", 109 | "scale" : "2x" 110 | }, 111 | { 112 | "size" : "1024x1024", 113 | "idiom" : "ios-marketing", 114 | "filename" : "Icon-App-1024x1024@1x.png", 115 | "scale" : "1x" 116 | } 117 | ], 118 | "info" : { 119 | "version" : 1, 120 | "author" : "xcode" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /lib/entity/timeline_likesAndcomments/result.dart: -------------------------------------------------------------------------------- 1 | class Result { 2 | double id; 3 | Video video; 4 | String content; 5 | User user; 6 | String publishDate; 7 | String location; 8 | String postType; 9 | bool isLike; 10 | List images; 11 | List likes; 12 | List comments; 13 | 14 | Result({ 15 | required this.id, 16 | required this.video, 17 | required this.content, 18 | required this.user, 19 | required this.publishDate, 20 | required this.postType, 21 | required this.location, 22 | required this.isLike, 23 | required this.images, 24 | required this.likes, 25 | required this.comments, 26 | }); 27 | 28 | factory Result.fromJson(Map json) => Result( 29 | id: json["id"]?.toDouble(), 30 | video: Video.fromJson(json["video"]), 31 | content: json["content"], 32 | user: User.fromJson(json["user"]), 33 | publishDate: json["publishDate"], 34 | location: json["location"], 35 | isLike: json["is_like"], 36 | postType: json["post_type"], 37 | images: List.from(json["images"].map((x) => x)), 38 | likes: List.from(json["likes"].map((x) => User.fromJson(x))), 39 | comments: List.from(json["comments"].map((x) => Comment.fromJson(x))), 40 | ); 41 | 42 | Map toJson() => { 43 | "id": id, 44 | "video": video.toJson(), 45 | "content": content, 46 | "user": user.toJson(), 47 | "publishDate": publishDate, 48 | "location": location, 49 | "is_like": isLike, 50 | "post_type":postType, 51 | "images": List.from(images.map((x) => x)), 52 | "likes": List.from(likes.map((x) => x.toJson())), 53 | "comments": List.from(comments.map((x) => x.toJson())), 54 | }; 55 | } 56 | 57 | class Comment { 58 | User user; 59 | String content; 60 | DateTime publishDate; 61 | 62 | Comment({ 63 | required this.user, 64 | required this.content, 65 | required this.publishDate, 66 | }); 67 | 68 | factory Comment.fromJson(Map json) => Comment( 69 | user: User.fromJson(json["user"]), 70 | content: json["content"], 71 | publishDate: DateTime.parse(json["publishDate"]), 72 | ); 73 | 74 | Map toJson() => { 75 | "user": user.toJson(), 76 | "content": content, 77 | "publishDate": publishDate.toIso8601String(), 78 | }; 79 | } 80 | 81 | class User { 82 | String uid; 83 | String nickname; 84 | String avator; 85 | 86 | User({ 87 | required this.uid, 88 | required this.nickname, 89 | required this.avator, 90 | }); 91 | 92 | factory User.fromJson(Map json) => User( 93 | uid: json["uid"], 94 | nickname: json["nickname"], 95 | avator: json["avator"], 96 | ); 97 | 98 | Map toJson() => { 99 | "uid": uid, 100 | "nickname": nickname, 101 | "avator": avator, 102 | }; 103 | } 104 | 105 | class Video { 106 | String cover; 107 | String url; 108 | 109 | Video({ 110 | required this.cover, 111 | required this.url, 112 | }); 113 | 114 | factory Video.fromJson(Map json) => Video( 115 | cover: json["cover"], 116 | url: json["url"], 117 | ); 118 | 119 | Map toJson() => { 120 | "cover": cover, 121 | "url": url, 122 | }; 123 | } -------------------------------------------------------------------------------- /lib/widgets/camera/widget/take_video.dart: -------------------------------------------------------------------------------- 1 | import 'dart:io'; 2 | 3 | import 'package:camerawesome/camerawesome_plugin.dart'; 4 | import 'package:flutter/material.dart'; 5 | import 'package:wechat_camera_picker/wechat_camera_picker.dart'; 6 | import 'package:wechat_moments/utils/compress.dart'; 7 | import 'package:wechat_moments/widgets/camera/widget/count_down.dart'; 8 | 9 | // ignore: must_be_immutable 10 | class TakeVideoPage extends StatefulWidget { 11 | Duration get _defaultMaxVideoDuration => const Duration(seconds: 30); 12 | 13 | Duration? maxVideoDuration; 14 | 15 | TakeVideoPage( 16 | {Key? key, required this.cameraState, Duration? maxVideoDuration}) 17 | : super(key: key) { 18 | this.maxVideoDuration = maxVideoDuration ?? _defaultMaxVideoDuration; 19 | } 20 | 21 | final CameraState cameraState; 22 | 23 | // 24 | // 25 | // Duration? maxVideoDuration = const Duration(seconds: 30); 26 | 27 | @override 28 | State createState() => _TakeVideoPageState(); 29 | } 30 | 31 | class _TakeVideoPageState extends State { 32 | @override 33 | void initState() { 34 | super.initState(); 35 | widget.cameraState.captureState$.listen((event) async { 36 | if (event != null && event.status == MediaCaptureStatus.success) { 37 | String filePath = event.filePath; 38 | String fileTitle = filePath.split("/").last; 39 | 40 | File file = File(filePath); 41 | 42 | // 压缩视频 43 | CompressMediaFile getCompressMediaFile =await DuCompress.video(file); 44 | 45 | // 获取压缩后的视频文件 46 | File? getVideoFile = getCompressMediaFile.video?.file; 47 | 48 | if(getVideoFile==null){ 49 | throw "VideoFile error"; 50 | } 51 | 52 | // 转换为AssetEntity 53 | AssetEntity? asset = await PhotoManager.editor.saveVideo( 54 | getVideoFile, 55 | title: fileTitle, 56 | ); 57 | 58 | // 删除临时文件 59 | await file.delete(); 60 | await getVideoFile.delete(); 61 | 62 | Navigator.pop( 63 | context, 64 | asset, 65 | ); 66 | } 67 | }); 68 | } 69 | 70 | Widget _rightArea() { 71 | //如果cameraState处于正在录制的状态即cameraState是VideoRecordingCameraState,那么才会出现倒计时的组件 72 | if (widget.cameraState is VideoRecordingCameraState && 73 | widget.maxVideoDuration != null) { 74 | return Countdown( 75 | time: widget.maxVideoDuration, 76 | callback: () { 77 | (widget.cameraState as VideoRecordingCameraState).stopRecording(); 78 | }); 79 | } else { 80 | return const SizedBox( 81 | width: 32 + 20 * 2, 82 | ); 83 | } 84 | } 85 | 86 | Widget _mainView() { 87 | return Align( 88 | alignment: Alignment.bottomCenter, 89 | child: Container( 90 | color: Colors.black54, 91 | height: 150, 92 | child: Row( 93 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 94 | children: [ 95 | AwesomeCameraSwitchButton(state: widget.cameraState), 96 | AwesomeCaptureButton(state: widget.cameraState), 97 | //倒计时 98 | _rightArea(), 99 | ], 100 | ), 101 | ), 102 | ); 103 | } 104 | 105 | @override 106 | Widget build(BuildContext context) { 107 | return _mainView(); 108 | } 109 | } 110 | -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- 1 | // Microsoft Visual C++ generated resource script. 2 | // 3 | #pragma code_page(65001) 4 | #include "resource.h" 5 | 6 | #define APSTUDIO_READONLY_SYMBOLS 7 | ///////////////////////////////////////////////////////////////////////////// 8 | // 9 | // Generated from the TEXTINCLUDE 2 resource. 10 | // 11 | #include "winres.h" 12 | 13 | ///////////////////////////////////////////////////////////////////////////// 14 | #undef APSTUDIO_READONLY_SYMBOLS 15 | 16 | ///////////////////////////////////////////////////////////////////////////// 17 | // English (United States) resources 18 | 19 | #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) 20 | LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 21 | 22 | #ifdef APSTUDIO_INVOKED 23 | ///////////////////////////////////////////////////////////////////////////// 24 | // 25 | // TEXTINCLUDE 26 | // 27 | 28 | 1 TEXTINCLUDE 29 | BEGIN 30 | "resource.h\0" 31 | END 32 | 33 | 2 TEXTINCLUDE 34 | BEGIN 35 | "#include ""winres.h""\r\n" 36 | "\0" 37 | END 38 | 39 | 3 TEXTINCLUDE 40 | BEGIN 41 | "\r\n" 42 | "\0" 43 | END 44 | 45 | #endif // APSTUDIO_INVOKED 46 | 47 | 48 | ///////////////////////////////////////////////////////////////////////////// 49 | // 50 | // Icon 51 | // 52 | 53 | // Icon with lowest ID value placed first to ensure application icon 54 | // remains consistent on all systems. 55 | IDI_APP_ICON ICON "resources\\app_icon.ico" 56 | 57 | 58 | ///////////////////////////////////////////////////////////////////////////// 59 | // 60 | // Version 61 | // 62 | 63 | #if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD) 64 | #define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD 65 | #else 66 | #define VERSION_AS_NUMBER 1,0,0,0 67 | #endif 68 | 69 | #if defined(FLUTTER_VERSION) 70 | #define VERSION_AS_STRING FLUTTER_VERSION 71 | #else 72 | #define VERSION_AS_STRING "1.0.0" 73 | #endif 74 | 75 | VS_VERSION_INFO VERSIONINFO 76 | FILEVERSION VERSION_AS_NUMBER 77 | PRODUCTVERSION VERSION_AS_NUMBER 78 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK 79 | #ifdef _DEBUG 80 | FILEFLAGS VS_FF_DEBUG 81 | #else 82 | FILEFLAGS 0x0L 83 | #endif 84 | FILEOS VOS__WINDOWS32 85 | FILETYPE VFT_APP 86 | FILESUBTYPE 0x0L 87 | BEGIN 88 | BLOCK "StringFileInfo" 89 | BEGIN 90 | BLOCK "040904e4" 91 | BEGIN 92 | VALUE "CompanyName", "com.example" "\0" 93 | VALUE "FileDescription", "wechat_moments" "\0" 94 | VALUE "FileVersion", VERSION_AS_STRING "\0" 95 | VALUE "InternalName", "wechat_moments" "\0" 96 | VALUE "LegalCopyright", "Copyright (C) 2023 com.example. All rights reserved." "\0" 97 | VALUE "OriginalFilename", "wechat_moments.exe" "\0" 98 | VALUE "ProductName", "wechat_moments" "\0" 99 | VALUE "ProductVersion", VERSION_AS_STRING "\0" 100 | END 101 | END 102 | BLOCK "VarFileInfo" 103 | BEGIN 104 | VALUE "Translation", 0x409, 1252 105 | END 106 | END 107 | 108 | #endif // English (United States) resources 109 | ///////////////////////////////////////////////////////////////////////////// 110 | 111 | 112 | 113 | #ifndef APSTUDIO_INVOKED 114 | ///////////////////////////////////////////////////////////////////////////// 115 | // 116 | // Generated from the TEXTINCLUDE 3 resource. 117 | // 118 | 119 | 120 | ///////////////////////////////////////////////////////////////////////////// 121 | #endif // not APSTUDIO_INVOKED 122 | -------------------------------------------------------------------------------- /lib/widgets/camera/widget/take_photo.dart: -------------------------------------------------------------------------------- 1 | import 'dart:io'; 2 | import 'dart:typed_data'; 3 | 4 | import 'package:camerawesome/camerawesome_plugin.dart'; 5 | import 'package:flutter/material.dart'; 6 | 7 | import 'package:path_provider/path_provider.dart'; 8 | import 'package:wechat_assets_picker/wechat_assets_picker.dart'; 9 | import 'package:wechat_moments/utils/compress.dart'; 10 | 11 | class TakePhotoPage extends StatefulWidget { 12 | const TakePhotoPage({ 13 | Key? key, 14 | required this.cameraState, 15 | }) : super(key: key); 16 | 17 | final CameraState cameraState; 18 | 19 | @override 20 | State createState() => _TakePhotoPageState(); 21 | } 22 | 23 | class _TakePhotoPageState extends State { 24 | /// 未压缩图片的代码 25 | // @override 26 | // void initState() { 27 | // super.initState(); 28 | // // 监听cameraState 29 | // widget.cameraState.captureState$.listen((event) async { 30 | // if (event != null && event.status == MediaCaptureStatus.success) { 31 | // String filePath = event.filePath; 32 | // String fileTitle = filePath.split("/").last; 33 | // 34 | // File file = File(filePath); 35 | // 36 | // // 转换为AssetEntity 37 | // final AssetEntity? asset = await PhotoManager.editor.saveImage( 38 | // file.readAsBytesSync(), 39 | // title: fileTitle, 40 | // ); 41 | // 42 | // // 删除临时文件 43 | // await file.delete(); 44 | // 45 | // Navigator.of(context).pop(asset); 46 | // } 47 | // }); 48 | // } 49 | ///已压缩图片的代码 50 | @override 51 | void initState() { 52 | super.initState(); 53 | 54 | widget.cameraState.captureState$.listen((event) async { 55 | if (event != null && event.status == MediaCaptureStatus.success) { 56 | String filePath = event.filePath; 57 | String fileTitle = filePath.split("/").last; 58 | 59 | Uint8List unCompressU8l = File(filePath).readAsBytesSync(); 60 | 61 | // 压缩图片 62 | Uint8List compressList =await DuCompress.compressWithList(unCompressU8l); 63 | 64 | File? newFile =await saveImage(compressList); 65 | 66 | final AssetEntity? asset = await PhotoManager.editor 67 | .saveImage(File(newFile.path).readAsBytesSync(), title: fileTitle); 68 | 69 | await File(filePath).delete(); 70 | await newFile.delete(); 71 | 72 | Navigator.of(context).pop(asset); 73 | } 74 | }); 75 | } 76 | 77 | Future saveImage(Uint8List imageByte) async { 78 | //获取临时目录 79 | var tempDir = await getTemporaryDirectory(); 80 | //生成file文件格式 81 | var file = await File('${tempDir.path}/image_${DateTime.now().millisecond}.jpg').create(); 82 | print("file path${file.path}"); 83 | //转成file文件 84 | file.writeAsBytesSync(imageByte); 85 | return file; 86 | } 87 | 88 | Widget _mainView() { 89 | return Align( 90 | alignment: Alignment.bottomCenter, 91 | child: Container( 92 | color: Colors.black54, 93 | height: 150, 94 | child: Row( 95 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 96 | children: [ 97 | // 切换摄像头 98 | AwesomeCameraSwitchButton(state: widget.cameraState), 99 | //拍摄按钮 100 | AwesomeCaptureButton(state: widget.cameraState), 101 | //右侧区域 102 | const SizedBox( 103 | width: 32 + 20 * 2, 104 | ), 105 | ], 106 | ), 107 | ), 108 | ); 109 | } 110 | 111 | @override 112 | Widget build(BuildContext context) { 113 | return _mainView(); 114 | } 115 | } 116 | -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- 1 | #ifndef RUNNER_WIN32_WINDOW_H_ 2 | #define RUNNER_WIN32_WINDOW_H_ 3 | 4 | #include 5 | 6 | #include 7 | #include 8 | #include 9 | 10 | // A class abstraction for a high DPI-aware Win32 Window. Intended to be 11 | // inherited from by classes that wish to specialize with custom 12 | // rendering and input handling 13 | class Win32Window { 14 | public: 15 | struct Point { 16 | unsigned int x; 17 | unsigned int y; 18 | Point(unsigned int x, unsigned int y) : x(x), y(y) {} 19 | }; 20 | 21 | struct Size { 22 | unsigned int width; 23 | unsigned int height; 24 | Size(unsigned int width, unsigned int height) 25 | : width(width), height(height) {} 26 | }; 27 | 28 | Win32Window(); 29 | virtual ~Win32Window(); 30 | 31 | // Creates a win32 window with |title| that is positioned and sized using 32 | // |origin| and |size|. New windows are created on the default monitor. Window 33 | // sizes are specified to the OS in physical pixels, hence to ensure a 34 | // consistent size this function will scale the inputted width and height as 35 | // as appropriate for the default monitor. The window is invisible until 36 | // |Show| is called. Returns true if the window was created successfully. 37 | bool Create(const std::wstring& title, const Point& origin, const Size& size); 38 | 39 | // Show the current window. Returns true if the window was successfully shown. 40 | bool Show(); 41 | 42 | // Release OS resources associated with window. 43 | void Destroy(); 44 | 45 | // Inserts |content| into the window tree. 46 | void SetChildContent(HWND content); 47 | 48 | // Returns the backing Window handle to enable clients to set icon and other 49 | // window properties. Returns nullptr if the window has been destroyed. 50 | HWND GetHandle(); 51 | 52 | // If true, closing this window will quit the application. 53 | void SetQuitOnClose(bool quit_on_close); 54 | 55 | // Return a RECT representing the bounds of the current client area. 56 | RECT GetClientArea(); 57 | 58 | protected: 59 | // Processes and route salient window messages for mouse handling, 60 | // size change and DPI. Delegates handling of these to member overloads that 61 | // inheriting classes can handle. 62 | virtual LRESULT MessageHandler(HWND window, 63 | UINT const message, 64 | WPARAM const wparam, 65 | LPARAM const lparam) noexcept; 66 | 67 | // Called when CreateAndShow is called, allowing subclass window-related 68 | // setup. Subclasses should return false if setup fails. 69 | virtual bool OnCreate(); 70 | 71 | // Called when Destroy is called. 72 | virtual void OnDestroy(); 73 | 74 | private: 75 | friend class WindowClassRegistrar; 76 | 77 | // OS callback called by message pump. Handles the WM_NCCREATE message which 78 | // is passed when the non-client area is being created and enables automatic 79 | // non-client DPI scaling so that the non-client area automatically 80 | // responds to changes in DPI. All other messages are handled by 81 | // MessageHandler. 82 | static LRESULT CALLBACK WndProc(HWND const window, 83 | UINT const message, 84 | WPARAM const wparam, 85 | LPARAM const lparam) noexcept; 86 | 87 | // Retrieves a class instance pointer for |window| 88 | static Win32Window* GetThisFromHandle(HWND const window) noexcept; 89 | 90 | // Update the window frame's theme to match the system theme. 91 | static void UpdateTheme(HWND const window); 92 | 93 | bool quit_on_close_ = false; 94 | 95 | // window handle for top level window. 96 | HWND window_handle_ = nullptr; 97 | 98 | // window handle for hosted content. 99 | HWND child_content_ = nullptr; 100 | }; 101 | 102 | #endif // RUNNER_WIN32_WINDOW_H_ 103 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 43 | 49 | 50 | 51 | 52 | 53 | 63 | 65 | 71 | 72 | 73 | 74 | 80 | 82 | 88 | 89 | 90 | 91 | 93 | 94 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # This file controls Flutter-level build steps. It should not be edited. 2 | cmake_minimum_required(VERSION 3.14) 3 | 4 | set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") 5 | 6 | # Configuration provided via flutter tool. 7 | include(${EPHEMERAL_DIR}/generated_config.cmake) 8 | 9 | # TODO: Move the rest of this into files in ephemeral. See 10 | # https://github.com/flutter/flutter/issues/57146. 11 | set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") 12 | 13 | # === Flutter Library === 14 | set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") 15 | 16 | # Published to parent scope for install step. 17 | set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) 18 | set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) 19 | set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) 20 | set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) 21 | 22 | list(APPEND FLUTTER_LIBRARY_HEADERS 23 | "flutter_export.h" 24 | "flutter_windows.h" 25 | "flutter_messenger.h" 26 | "flutter_plugin_registrar.h" 27 | "flutter_texture_registrar.h" 28 | ) 29 | list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") 30 | add_library(flutter INTERFACE) 31 | target_include_directories(flutter INTERFACE 32 | "${EPHEMERAL_DIR}" 33 | ) 34 | target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") 35 | add_dependencies(flutter flutter_assemble) 36 | 37 | # === Wrapper === 38 | list(APPEND CPP_WRAPPER_SOURCES_CORE 39 | "core_implementations.cc" 40 | "standard_codec.cc" 41 | ) 42 | list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") 43 | list(APPEND CPP_WRAPPER_SOURCES_PLUGIN 44 | "plugin_registrar.cc" 45 | ) 46 | list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") 47 | list(APPEND CPP_WRAPPER_SOURCES_APP 48 | "flutter_engine.cc" 49 | "flutter_view_controller.cc" 50 | ) 51 | list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") 52 | 53 | # Wrapper sources needed for a plugin. 54 | add_library(flutter_wrapper_plugin STATIC 55 | ${CPP_WRAPPER_SOURCES_CORE} 56 | ${CPP_WRAPPER_SOURCES_PLUGIN} 57 | ) 58 | apply_standard_settings(flutter_wrapper_plugin) 59 | set_target_properties(flutter_wrapper_plugin PROPERTIES 60 | POSITION_INDEPENDENT_CODE ON) 61 | set_target_properties(flutter_wrapper_plugin PROPERTIES 62 | CXX_VISIBILITY_PRESET hidden) 63 | target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) 64 | target_include_directories(flutter_wrapper_plugin PUBLIC 65 | "${WRAPPER_ROOT}/include" 66 | ) 67 | add_dependencies(flutter_wrapper_plugin flutter_assemble) 68 | 69 | # Wrapper sources needed for the runner. 70 | add_library(flutter_wrapper_app STATIC 71 | ${CPP_WRAPPER_SOURCES_CORE} 72 | ${CPP_WRAPPER_SOURCES_APP} 73 | ) 74 | apply_standard_settings(flutter_wrapper_app) 75 | target_link_libraries(flutter_wrapper_app PUBLIC flutter) 76 | target_include_directories(flutter_wrapper_app PUBLIC 77 | "${WRAPPER_ROOT}/include" 78 | ) 79 | add_dependencies(flutter_wrapper_app flutter_assemble) 80 | 81 | # === Flutter tool backend === 82 | # _phony_ is a non-existent file to force this command to run every time, 83 | # since currently there's no way to get a full input/output list from the 84 | # flutter tool. 85 | set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") 86 | set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) 87 | add_custom_command( 88 | OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} 89 | ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} 90 | ${CPP_WRAPPER_SOURCES_APP} 91 | ${PHONY_OUTPUT} 92 | COMMAND ${CMAKE_COMMAND} -E env 93 | ${FLUTTER_TOOL_ENVIRONMENT} 94 | "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" 95 | windows-x64 $ 96 | VERBATIM 97 | ) 98 | add_custom_target(flutter_assemble DEPENDS 99 | "${FLUTTER_LIBRARY}" 100 | ${FLUTTER_LIBRARY_HEADERS} 101 | ${CPP_WRAPPER_SOURCES_CORE} 102 | ${CPP_WRAPPER_SOURCES_PLUGIN} 103 | ${CPP_WRAPPER_SOURCES_APP} 104 | ) 105 | -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 43 | 49 | 50 | 51 | 52 | 53 | 63 | 65 | 71 | 72 | 73 | 74 | 80 | 82 | 88 | 89 | 90 | 91 | 93 | 94 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /lib/widgets/text.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | import '../utils/config.dart'; 4 | 5 | class TextMaxLinesWidget extends StatefulWidget { 6 | const TextMaxLinesWidget({Key? key, required this.content, this.maxLines}) 7 | : super(key: key); 8 | 9 | final String content; 10 | final int? maxLines; 11 | 12 | @override 13 | State createState() => _TextMaxLinesWidgetState(); 14 | } 15 | 16 | class _TextMaxLinesWidgetState extends State { 17 | //内容 18 | late final String _content; 19 | 20 | //最大行数 21 | late final int _maxLines; 22 | 23 | // 是否展开 24 | bool _isExpansion = false; 25 | 26 | @override 27 | void initState() { 28 | super.initState(); 29 | _content = widget.content; 30 | _maxLines = widget.maxLines ?? 3; 31 | } 32 | 33 | void _doExpansion() { 34 | setState(() { 35 | _isExpansion = !_isExpansion; 36 | }); 37 | } 38 | 39 | Widget _mainView() { 40 | return LayoutBuilder( 41 | builder: (context, constraints) { 42 | // 将 TextSpan树 绘制到 Canvas中的对象 43 | final TextPainter textPainter = TextPainter( 44 | text: TextSpan( 45 | text: _content, 46 | style: const TextStyle( 47 | fontSize: 15, 48 | color: Colors.black, 49 | ), 50 | ), 51 | maxLines: _maxLines, 52 | textDirection: TextDirection.ltr, 53 | )..layout( 54 | maxWidth: constraints.maxWidth, 55 | ); 56 | 57 | // 1. 不展开 58 | if (_isExpansion == false) { 59 | List ws = []; 60 | // 1.1 检查是否超出高度,didExceedMaxLines 是否超出最大行数 61 | if (textPainter.didExceedMaxLines && _isExpansion == false) { 62 | ws.add( 63 | Text( 64 | _content, 65 | maxLines: _maxLines, 66 | overflow: TextOverflow.ellipsis, 67 | style: const TextStyle( 68 | fontSize: 18, 69 | color: Colors.black, 70 | ), 71 | ), 72 | ); 73 | ws.add( 74 | GestureDetector( 75 | onTap: () { 76 | _doExpansion(); 77 | }, 78 | child: const Text( 79 | "展开全文", 80 | style: TextStyle( 81 | fontSize: 18, 82 | color: textEmphasizeColor, 83 | ), 84 | ), 85 | ), 86 | ); 87 | } 88 | // 1.2 不超出则显示全部 89 | else { 90 | ws.add( 91 | Text( 92 | _content, 93 | style: const TextStyle( 94 | fontSize: 18, 95 | color: Colors.black, 96 | ), 97 | ), 98 | ); 99 | } 100 | return Column( 101 | crossAxisAlignment: CrossAxisAlignment.start, 102 | children: ws, 103 | ); 104 | } 105 | // 2. 展开显示全部 106 | else { 107 | List ws = []; 108 | ws.add( 109 | Text( 110 | _content, 111 | style: const TextStyle( 112 | fontSize: 18, 113 | color: Colors.black, 114 | ), 115 | ), 116 | ); 117 | ws.add( 118 | GestureDetector( 119 | onTap: () { 120 | _doExpansion(); 121 | }, 122 | child: const Text( 123 | "收缩", 124 | style: TextStyle( 125 | fontSize: 18, 126 | color: textEmphasizeColor, 127 | ), 128 | ), 129 | ), 130 | ); 131 | return Column( 132 | crossAxisAlignment: CrossAxisAlignment.start, 133 | children: ws, 134 | ); 135 | } 136 | }, 137 | ); 138 | } 139 | 140 | @override 141 | Widget build(BuildContext context) { 142 | return _mainView(); 143 | } 144 | } 145 | -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- 1 | #include "my_application.h" 2 | 3 | #include 4 | #ifdef GDK_WINDOWING_X11 5 | #include 6 | #endif 7 | 8 | #include "flutter/generated_plugin_registrant.h" 9 | 10 | struct _MyApplication { 11 | GtkApplication parent_instance; 12 | char** dart_entrypoint_arguments; 13 | }; 14 | 15 | G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION) 16 | 17 | // Implements GApplication::activate. 18 | static void my_application_activate(GApplication* application) { 19 | MyApplication* self = MY_APPLICATION(application); 20 | GtkWindow* window = 21 | GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application))); 22 | 23 | // Use a header bar when running in GNOME as this is the common style used 24 | // by applications and is the setup most users will be using (e.g. Ubuntu 25 | // desktop). 26 | // If running on X and not using GNOME then just use a traditional title bar 27 | // in case the window manager does more exotic layout, e.g. tiling. 28 | // If running on Wayland assume the header bar will work (may need changing 29 | // if future cases occur). 30 | gboolean use_header_bar = TRUE; 31 | #ifdef GDK_WINDOWING_X11 32 | GdkScreen* screen = gtk_window_get_screen(window); 33 | if (GDK_IS_X11_SCREEN(screen)) { 34 | const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen); 35 | if (g_strcmp0(wm_name, "GNOME Shell") != 0) { 36 | use_header_bar = FALSE; 37 | } 38 | } 39 | #endif 40 | if (use_header_bar) { 41 | GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); 42 | gtk_widget_show(GTK_WIDGET(header_bar)); 43 | gtk_header_bar_set_title(header_bar, "wechat_moments"); 44 | gtk_header_bar_set_show_close_button(header_bar, TRUE); 45 | gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); 46 | } else { 47 | gtk_window_set_title(window, "wechat_moments"); 48 | } 49 | 50 | gtk_window_set_default_size(window, 1280, 720); 51 | gtk_widget_show(GTK_WIDGET(window)); 52 | 53 | g_autoptr(FlDartProject) project = fl_dart_project_new(); 54 | fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments); 55 | 56 | FlView* view = fl_view_new(project); 57 | gtk_widget_show(GTK_WIDGET(view)); 58 | gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view)); 59 | 60 | fl_register_plugins(FL_PLUGIN_REGISTRY(view)); 61 | 62 | gtk_widget_grab_focus(GTK_WIDGET(view)); 63 | } 64 | 65 | // Implements GApplication::local_command_line. 66 | static gboolean my_application_local_command_line(GApplication* application, gchar*** arguments, int* exit_status) { 67 | MyApplication* self = MY_APPLICATION(application); 68 | // Strip out the first argument as it is the binary name. 69 | self->dart_entrypoint_arguments = g_strdupv(*arguments + 1); 70 | 71 | g_autoptr(GError) error = nullptr; 72 | if (!g_application_register(application, nullptr, &error)) { 73 | g_warning("Failed to register: %s", error->message); 74 | *exit_status = 1; 75 | return TRUE; 76 | } 77 | 78 | g_application_activate(application); 79 | *exit_status = 0; 80 | 81 | return TRUE; 82 | } 83 | 84 | // Implements GObject::dispose. 85 | static void my_application_dispose(GObject* object) { 86 | MyApplication* self = MY_APPLICATION(object); 87 | g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev); 88 | G_OBJECT_CLASS(my_application_parent_class)->dispose(object); 89 | } 90 | 91 | static void my_application_class_init(MyApplicationClass* klass) { 92 | G_APPLICATION_CLASS(klass)->activate = my_application_activate; 93 | G_APPLICATION_CLASS(klass)->local_command_line = my_application_local_command_line; 94 | G_OBJECT_CLASS(klass)->dispose = my_application_dispose; 95 | } 96 | 97 | static void my_application_init(MyApplication* self) {} 98 | 99 | MyApplication* my_application_new() { 100 | return MY_APPLICATION(g_object_new(my_application_get_type(), 101 | "application-id", APPLICATION_ID, 102 | "flags", G_APPLICATION_NON_UNIQUE, 103 | nullptr)); 104 | } 105 | -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Project-level configuration. 2 | cmake_minimum_required(VERSION 3.14) 3 | project(wechat_moments LANGUAGES CXX) 4 | 5 | # The name of the executable created for the application. Change this to change 6 | # the on-disk name of your application. 7 | set(BINARY_NAME "wechat_moments") 8 | 9 | # Explicitly opt in to modern CMake behaviors to avoid warnings with recent 10 | # versions of CMake. 11 | cmake_policy(SET CMP0063 NEW) 12 | 13 | # Define build configuration option. 14 | get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) 15 | if(IS_MULTICONFIG) 16 | set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" 17 | CACHE STRING "" FORCE) 18 | else() 19 | if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) 20 | set(CMAKE_BUILD_TYPE "Debug" CACHE 21 | STRING "Flutter build mode" FORCE) 22 | set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS 23 | "Debug" "Profile" "Release") 24 | endif() 25 | endif() 26 | # Define settings for the Profile build mode. 27 | set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") 28 | set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") 29 | set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") 30 | set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") 31 | 32 | # Use Unicode for all projects. 33 | add_definitions(-DUNICODE -D_UNICODE) 34 | 35 | # Compilation settings that should be applied to most targets. 36 | # 37 | # Be cautious about adding new options here, as plugins use this function by 38 | # default. In most cases, you should add new options to specific targets instead 39 | # of modifying this function. 40 | function(APPLY_STANDARD_SETTINGS TARGET) 41 | target_compile_features(${TARGET} PUBLIC cxx_std_17) 42 | target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") 43 | target_compile_options(${TARGET} PRIVATE /EHsc) 44 | target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") 45 | target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>") 46 | endfunction() 47 | 48 | # Flutter library and tool build rules. 49 | set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") 50 | add_subdirectory(${FLUTTER_MANAGED_DIR}) 51 | 52 | # Application build; see runner/CMakeLists.txt. 53 | add_subdirectory("runner") 54 | 55 | 56 | # Generated plugin build rules, which manage building the plugins and adding 57 | # them to the application. 58 | include(flutter/generated_plugins.cmake) 59 | 60 | 61 | # === Installation === 62 | # Support files are copied into place next to the executable, so that it can 63 | # run in place. This is done instead of making a separate bundle (as on Linux) 64 | # so that building and running from within Visual Studio will work. 65 | set(BUILD_BUNDLE_DIR "$") 66 | # Make the "install" step default, as it's required to run. 67 | set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) 68 | if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) 69 | set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) 70 | endif() 71 | 72 | set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") 73 | set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") 74 | 75 | install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" 76 | COMPONENT Runtime) 77 | 78 | install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" 79 | COMPONENT Runtime) 80 | 81 | install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 82 | COMPONENT Runtime) 83 | 84 | if(PLUGIN_BUNDLED_LIBRARIES) 85 | install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" 86 | DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 87 | COMPONENT Runtime) 88 | endif() 89 | 90 | # Fully re-copy the assets directory on each build to avoid having stale files 91 | # from a previous install. 92 | set(FLUTTER_ASSET_DIR_NAME "flutter_assets") 93 | install(CODE " 94 | file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") 95 | " COMPONENT Runtime) 96 | install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" 97 | DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) 98 | 99 | # Install the AOT library on non-Debug builds only. 100 | install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" 101 | CONFIGURATIONS Profile;Release 102 | COMPONENT Runtime) 103 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: wechat_moments 2 | description: A new Flutter project. 3 | # The following line prevents the package from being accidentally published to 4 | # pub.dev using `flutter pub publish`. This is preferred for private packages. 5 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev 6 | 7 | # The following defines the version and build number for your application. 8 | # A version number is three numbers separated by dots, like 1.2.43 9 | # followed by an optional build number separated by a +. 10 | # Both the version and the builder number may be overridden in flutter 11 | # build by specifying --build-name and --build-number, respectively. 12 | # In Android, build-name is used as versionName while build-number used as versionCode. 13 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 14 | # In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion. 15 | # Read more about iOS versioning at 16 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 17 | # In Windows, build-name is used as the major, minor, and patch parts 18 | # of the product and file versions while build-number is used as the build suffix. 19 | version: 1.0.0+1 20 | 21 | environment: 22 | sdk: '>=3.0.1 <4.0.0' 23 | 24 | # Dependencies specify other packages that your package needs in order to work. 25 | # To automatically upgrade your package dependencies to the latest versions 26 | # consider running `flutter pub upgrade --major-versions`. Alternatively, 27 | # dependencies can be manually updated by changing the version numbers below to 28 | # the latest version available on pub.dev. To see which dependencies have newer 29 | # versions available, run `flutter pub outdated`. 30 | dependencies: 31 | flutter: 32 | sdk: flutter 33 | 34 | 35 | # The following adds the Cupertino Icons font to your application. 36 | # Use with the CupertinoIcons class for iOS style icons. 37 | cupertino_icons: ^1.0.2 38 | fluttertoast: ^8.2.2 39 | 40 | # 资源选择 41 | wechat_assets_picker: ^8.5.0 42 | extended_image: ^8.0.0 43 | 44 | # 相机拍摄 45 | wechat_camera_picker: ^3.8.0 46 | # 图片压缩 47 | flutter_image_compress: ^2.0.3 48 | # 视频压缩 49 | video_compress: ^3.1.0 50 | # 视频播放封装 51 | chewie: 1.3.6 52 | # 官方视频播放器 53 | video_player: ^2.6.1 54 | # 摄像头拍摄 55 | camerawesome: 1.0.0+2 56 | 57 | # uuid 58 | uuid: 3.0.7 59 | 60 | # 路径 61 | path_provider: 2.0.11 62 | 63 | # 网络请求dio 64 | dio: 5.1.2 65 | 66 | # 动画 67 | animate_do: 3.0.2 68 | 69 | 70 | dev_dependencies: 71 | flutter_test: 72 | sdk: flutter 73 | 74 | # The "flutter_lints" package below contains a set of recommended lints to 75 | # encourage good coding practices. The lint set provided by the package is 76 | # activated in the `analysis_options.yaml` file located at the root of your 77 | # package. See that file for information about deactivating specific lint 78 | # rules and activating additional ones. 79 | flutter_lints: ^2.0.0 80 | 81 | # For information on the generic Dart part of this file, see the 82 | # following page: https://dart.dev/tools/pub/pubspec 83 | 84 | # The following section is specific to Flutter packages. 85 | flutter: 86 | 87 | # The following line ensures that the Material Icons font is 88 | # included with your application, so that you can use the icons in 89 | # the material Icons class. 90 | uses-material-design: true 91 | 92 | # To add assets to your application, add an assets section, like this: 93 | # assets: 94 | # - images/a_dot_burr.jpeg 95 | # - images/a_dot_ham.jpeg 96 | 97 | # An image asset can refer to one or more resolution-specific "variants", see 98 | # https://flutter.dev/assets-and-images/#resolution-aware 99 | 100 | # For details regarding adding assets from package dependencies, see 101 | # https://flutter.dev/assets-and-images/#from-packages 102 | 103 | # To add custom fonts to your application, add a fonts section here, 104 | # in this "flutter" section. Each entry in this list should have a 105 | # "family" key with the font family name, and a "fonts" key with a 106 | # list giving the asset and other descriptors for the font. For 107 | # example: 108 | # fonts: 109 | # - family: Schyler 110 | # fonts: 111 | # - asset: fonts/Schyler-Regular.ttf 112 | # - asset: fonts/Schyler-Italic.ttf 113 | # style: italic 114 | # - family: Trajan Pro 115 | # fonts: 116 | # - asset: fonts/TrajanPro.ttf 117 | # - asset: fonts/TrajanPro_Bold.ttf 118 | # weight: 700 119 | # 120 | # For details regarding fonts from package dependencies, 121 | # see https://flutter.dev/custom-fonts/#from-packages 122 | -------------------------------------------------------------------------------- /lib/utils/bottom_sheet.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/cupertino.dart'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:wechat_assets_picker/wechat_assets_picker.dart'; 4 | import 'package:wechat_moments/utils/asset_picker.dart'; 5 | import 'package:wechat_moments/widgets/index.dart'; 6 | 7 | enum PickType { camera, asset } 8 | 9 | ///微信底部弹出框 10 | class MyBottomSheet { 11 | MyBottomSheet({this.selectedAssets}); 12 | 13 | List? selectedAssets; 14 | 15 | ///选择拍摄、资源 16 | Future wxPicker( 17 | {required BuildContext context, 18 | Widget? firstWidget, 19 | Widget? secondWidget, 20 | Function()? onTapOnFirstWidget, 21 | Function()? onTapOnSecondWidget}) { 22 | return MyAssetPicker.showBottomSheet( 23 | context, 24 | child: Column( 25 | mainAxisSize: MainAxisSize.min, 26 | children: [ 27 | //拍摄 28 | _buildBtn( 29 | child: firstWidget ?? const Text("拍摄"), 30 | onTap: () { 31 | print("pppooo拍摄${selectedAssets}"); 32 | showPhotoOrVideo( 33 | context: context, 34 | pickType: PickType.camera, 35 | selectedAssets: selectedAssets, 36 | firstWidget: const Text("图片"), 37 | secondWidget: const Text("视频"), 38 | ); 39 | }, 40 | ), 41 | const MyDividerWidget(height: 1), 42 | //相册 43 | _buildBtn( 44 | 45 | 46 | child: secondWidget ?? const Text("相册"), 47 | onTap: () { 48 | print("pppooo相册${selectedAssets}"); 49 | showPhotoOrVideo( 50 | context: context, 51 | pickType: PickType.asset, 52 | selectedAssets: selectedAssets, 53 | firstWidget: const Text("图片"), 54 | secondWidget: const Text("视频"), 55 | ); 56 | }, 57 | ), 58 | const MyDividerWidget(height: 10), 59 | //取消 60 | _buildBtn( 61 | child: Text("取消"), 62 | onTap: () { 63 | Navigator.pop(context); 64 | }, 65 | ), 66 | ], 67 | ), 68 | ); 69 | } 70 | 71 | ///选择图片或视频 72 | ///选择拍摄、资源 73 | Future showPhotoOrVideo({ 74 | required BuildContext context, 75 | required PickType pickType, 76 | required Widget firstWidget, 77 | required Widget secondWidget, 78 | List? selectedAssets, 79 | }) { 80 | return MyAssetPicker.showBottomSheet( 81 | context, 82 | child: Column( 83 | mainAxisSize: MainAxisSize.min, 84 | children: [ 85 | //拍摄 86 | _buildBtn( 87 | child: firstWidget, 88 | onTap: () async { 89 | print("pppooo拍摄2${selectedAssets}"); 90 | List? result; 91 | if (pickType == PickType.asset) { 92 | result = await MyAssetPicker.getAsset( 93 | context: context, selectedAssets: selectedAssets); 94 | } else if (pickType == PickType.camera) { 95 | final asset = await MyAssetPicker.takePhoto(context); 96 | if (asset == null) return; 97 | if (selectedAssets == null) { 98 | result = [asset]; 99 | } else { 100 | result = [...selectedAssets, asset]; 101 | } 102 | } 103 | _popRoute(context, result: result); 104 | }, 105 | ), 106 | const MyDividerWidget(height: 1), 107 | //相册 108 | _buildBtn( 109 | child: secondWidget, 110 | onTap: () async { 111 | print("pppooo相册2${selectedAssets}"); 112 | 113 | List? result; 114 | if (pickType == PickType.asset) { 115 | result = await MyAssetPicker.getAsset( 116 | context: context, 117 | requestType: RequestType.video, 118 | selectedAssets: selectedAssets, 119 | maxAssets: 1, 120 | ); 121 | } else if (pickType == PickType.camera) { 122 | AssetEntity? asset = await MyAssetPicker.takeVideo(context); 123 | if (asset == null) return; 124 | result = [asset]; 125 | } 126 | _popRoute(context,result: result); 127 | }, 128 | ), 129 | const MyDividerWidget(height: 10), 130 | //取消 131 | _buildBtn( 132 | child: const Text("取消"), 133 | onTap: () { 134 | Navigator.popUntil(context, (route) => route.isFirst); 135 | }, 136 | ), 137 | ], 138 | ), 139 | ); 140 | } 141 | 142 | InkWell _buildBtn({Widget? child, Function()? onTap}) { 143 | return InkWell( 144 | onTap: onTap, 145 | child: DefaultTextStyle( 146 | style: const TextStyle(fontSize: 18, color: Colors.black), 147 | child: Container( 148 | alignment: Alignment.center, 149 | height: 55, 150 | child: child, 151 | ), 152 | ), 153 | ); 154 | } 155 | 156 | /// 返回 157 | void _popRoute(BuildContext context, {result}) { 158 | Navigator.pop(context); 159 | Navigator.pop(context, result); 160 | } 161 | } 162 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Project-level configuration. 2 | cmake_minimum_required(VERSION 3.10) 3 | project(runner LANGUAGES CXX) 4 | 5 | # The name of the executable created for the application. Change this to change 6 | # the on-disk name of your application. 7 | set(BINARY_NAME "wechat_moments") 8 | # The unique GTK application identifier for this application. See: 9 | # https://wiki.gnome.org/HowDoI/ChooseApplicationID 10 | set(APPLICATION_ID "com.example.wechat_moments") 11 | 12 | # Explicitly opt in to modern CMake behaviors to avoid warnings with recent 13 | # versions of CMake. 14 | cmake_policy(SET CMP0063 NEW) 15 | 16 | # Load bundled libraries from the lib/ directory relative to the binary. 17 | set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") 18 | 19 | # Root filesystem for cross-building. 20 | if(FLUTTER_TARGET_PLATFORM_SYSROOT) 21 | set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT}) 22 | set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT}) 23 | set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) 24 | set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) 25 | set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) 26 | set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) 27 | endif() 28 | 29 | # Define build configuration options. 30 | if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) 31 | set(CMAKE_BUILD_TYPE "Debug" CACHE 32 | STRING "Flutter build mode" FORCE) 33 | set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS 34 | "Debug" "Profile" "Release") 35 | endif() 36 | 37 | # Compilation settings that should be applied to most targets. 38 | # 39 | # Be cautious about adding new options here, as plugins use this function by 40 | # default. In most cases, you should add new options to specific targets instead 41 | # of modifying this function. 42 | function(APPLY_STANDARD_SETTINGS TARGET) 43 | target_compile_features(${TARGET} PUBLIC cxx_std_14) 44 | target_compile_options(${TARGET} PRIVATE -Wall -Werror) 45 | target_compile_options(${TARGET} PRIVATE "$<$>:-O3>") 46 | target_compile_definitions(${TARGET} PRIVATE "$<$>:NDEBUG>") 47 | endfunction() 48 | 49 | # Flutter library and tool build rules. 50 | set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") 51 | add_subdirectory(${FLUTTER_MANAGED_DIR}) 52 | 53 | # System-level dependencies. 54 | find_package(PkgConfig REQUIRED) 55 | pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) 56 | 57 | add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}") 58 | 59 | # Define the application target. To change its name, change BINARY_NAME above, 60 | # not the value here, or `flutter run` will no longer work. 61 | # 62 | # Any new source files that you add to the application should be added here. 63 | add_executable(${BINARY_NAME} 64 | "main.cc" 65 | "my_application.cc" 66 | "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" 67 | ) 68 | 69 | # Apply the standard set of build settings. This can be removed for applications 70 | # that need different build settings. 71 | apply_standard_settings(${BINARY_NAME}) 72 | 73 | # Add dependency libraries. Add any application-specific dependencies here. 74 | target_link_libraries(${BINARY_NAME} PRIVATE flutter) 75 | target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) 76 | 77 | # Run the Flutter tool portions of the build. This must not be removed. 78 | add_dependencies(${BINARY_NAME} flutter_assemble) 79 | 80 | # Only the install-generated bundle's copy of the executable will launch 81 | # correctly, since the resources must in the right relative locations. To avoid 82 | # people trying to run the unbundled copy, put it in a subdirectory instead of 83 | # the default top-level location. 84 | set_target_properties(${BINARY_NAME} 85 | PROPERTIES 86 | RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run" 87 | ) 88 | 89 | 90 | # Generated plugin build rules, which manage building the plugins and adding 91 | # them to the application. 92 | include(flutter/generated_plugins.cmake) 93 | 94 | 95 | # === Installation === 96 | # By default, "installing" just makes a relocatable bundle in the build 97 | # directory. 98 | set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle") 99 | if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) 100 | set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) 101 | endif() 102 | 103 | # Start with a clean build bundle directory every time. 104 | install(CODE " 105 | file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\") 106 | " COMPONENT Runtime) 107 | 108 | set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") 109 | set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib") 110 | 111 | install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" 112 | COMPONENT Runtime) 113 | 114 | install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" 115 | COMPONENT Runtime) 116 | 117 | install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 118 | COMPONENT Runtime) 119 | 120 | foreach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES}) 121 | install(FILES "${bundled_library}" 122 | DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 123 | COMPONENT Runtime) 124 | endforeach(bundled_library) 125 | 126 | # Fully re-copy the assets directory on each build to avoid having stale files 127 | # from a previous install. 128 | set(FLUTTER_ASSET_DIR_NAME "flutter_assets") 129 | install(CODE " 130 | file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") 131 | " COMPONENT Runtime) 132 | install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" 133 | DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) 134 | 135 | # Install the AOT library on non-Debug builds only. 136 | if(NOT CMAKE_BUILD_TYPE MATCHES "Debug") 137 | install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 138 | COMPONENT Runtime) 139 | endif() 140 | -------------------------------------------------------------------------------- /lib/widgets/player.dart: -------------------------------------------------------------------------------- 1 | import 'dart:io'; 2 | 3 | import 'package:chewie/chewie.dart'; 4 | import 'package:flutter/foundation.dart'; 5 | import 'package:flutter/material.dart'; 6 | import 'package:flutter/services.dart'; 7 | import 'package:video_compress/video_compress.dart'; 8 | import 'package:wechat_assets_picker/wechat_assets_picker.dart'; 9 | import 'package:video_player/video_player.dart'; 10 | 11 | 12 | import '../utils/compress.dart'; 13 | import '../utils/config.dart'; 14 | import '../utils/toast.dart'; 15 | 16 | ///视频播放器 17 | ///1 压缩视频,显示压缩进度 18 | ///2 播放压缩后的视频文件 19 | class VideoPlayerWidget extends StatefulWidget { 20 | const VideoPlayerWidget({ 21 | Key? key, 22 | this.controller, 23 | this.initAsset, 24 | this.onCompleted, 25 | }) : super(key: key); 26 | 27 | /// chewie 视频播放控制器 28 | final ChewieController? controller; 29 | 30 | /// 视频资源 31 | final AssetEntity? initAsset; 32 | 33 | /// 完成视频压缩 34 | final Function(CompressMediaFile)? onCompleted; 35 | 36 | @override 37 | State createState() => _VideoPlayerWidgetState(); 38 | } 39 | 40 | class _VideoPlayerWidgetState extends State { 41 | /// video 视频控制器 42 | VideoPlayerController? _videoController; 43 | 44 | /// chewie控制器 45 | ChewieController? _chewieController; 46 | 47 | // 压缩消息订阅 48 | Subscription? _subscription; 49 | 50 | // 资源asset 51 | AssetEntity? _asset; 52 | 53 | // 是否载入中 54 | bool _isLoading =true; 55 | 56 | // 是否错误 57 | bool _isError=false; 58 | 59 | // 压缩进度 60 | double _progress =0; 61 | 62 | @override 63 | void initState() { 64 | super.initState(); 65 | _asset = widget.initAsset; 66 | 67 | // 压缩进度订阅 68 | _subscription = VideoCompress.compressProgress$.subscribe((progress) { 69 | debugPrint('progress: $progress'); 70 | setState(() { 71 | _progress = progress; 72 | }); 73 | }); 74 | if (mounted) onLoad(); 75 | } 76 | 77 | @override 78 | void dispose() { 79 | _videoController?.dispose(); 80 | if (widget.controller == null){ 81 | _chewieController?.dispose(); 82 | _videoController?.dispose(); 83 | } 84 | VideoCompress.cancelCompression(); 85 | _subscription?.unsubscribe(); 86 | _subscription = null; 87 | VideoCompress.deleteAllCache(); 88 | super.dispose(); 89 | } 90 | 91 | /// 文件 file 92 | Future getFile() async { 93 | var file = await _asset?.file; 94 | if (file == null) throw 'No file'; 95 | return file; 96 | } 97 | 98 | void onLoad() async { 99 | // 1. 初始界面状态 100 | setState(() { 101 | _isLoading = _asset != null; 102 | _isError = _asset == null; 103 | }); 104 | 105 | // 2. 安全检查, 容错 106 | if (_asset == null) return; 107 | 108 | // 3. 先清理资源,释放播放器对象,假如在播放下一个视频之前上一个播放器控制器还没有释放的话就会出现错误 109 | _videoController?.dispose(); 110 | 111 | // 112 | try { 113 | var file = await getFile(); 114 | 115 | // 开始视频压缩 116 | var result = await DuCompress.video(file); 117 | 118 | // video_player 初始化 119 | _videoController = VideoPlayerController.file(result.video!.file!); 120 | await _videoController!.initialize(); 121 | 122 | // chewie 初始化 123 | _chewieController = widget.controller ?? 124 | ChewieController( 125 | videoPlayerController: _videoController!, 126 | autoPlay: false, 127 | looping: false, 128 | autoInitialize: true, 129 | showOptions: false, 130 | cupertinoProgressColors: ChewieProgressColors( 131 | playedColor: accentColor, 132 | ), 133 | materialProgressColors: ChewieProgressColors( 134 | playedColor: accentColor, 135 | ), 136 | allowPlaybackSpeedChanging: false, 137 | deviceOrientationsOnEnterFullScreen: [ 138 | DeviceOrientation.landscapeLeft, 139 | DeviceOrientation.landscapeRight, 140 | DeviceOrientation.portraitUp, 141 | ], 142 | deviceOrientationsAfterFullScreen: [ 143 | DeviceOrientation.portraitUp, 144 | ], 145 | ); 146 | if (widget.onCompleted != null) widget.onCompleted!(result); 147 | } catch (error) { 148 | if (kDebugMode) { 149 | print(error); 150 | } 151 | MyToast.show('Video file error'); 152 | setState(() { 153 | _isError = true; 154 | }); 155 | } finally { 156 | setState(() { 157 | _isLoading = false; 158 | }); 159 | } 160 | } 161 | 162 | Widget _mainView() { 163 | // 默认空组件 164 | Widget ws = const SizedBox.shrink(); 165 | 166 | // 正在载入 167 | if (_isLoading) { 168 | ws = Column( 169 | mainAxisAlignment: MainAxisAlignment.center, 170 | children: [ 171 | // 进度状态 icon 172 | Container( 173 | height: 40, 174 | width: 40, 175 | alignment: Alignment.center, 176 | child: const CircularProgressIndicator( 177 | strokeWidth: 2, 178 | color: accentColor, 179 | ), 180 | ), 181 | const SizedBox(height: 10), 182 | // 进度状态文本 183 | Text( 184 | '${_progress.toStringAsFixed(2)}%', 185 | style: const TextStyle( 186 | fontSize: 13, 187 | color: secondaryTextColor, 188 | ), 189 | ), 190 | ], 191 | ); 192 | } 193 | 194 | // 正确显示 195 | else { 196 | if (_chewieController != null && !_isError) { 197 | 198 | ws = Container( 199 | decoration: const BoxDecoration(color: Colors.black), 200 | child: Chewie(controller: _chewieController!), 201 | ); 202 | } else {} 203 | } 204 | 205 | // 按比例组件包裹 206 | return AspectRatio( 207 | aspectRatio: 16 / 9, 208 | child: Container( 209 | color: Colors.grey[100], 210 | child: ws, 211 | ), 212 | ); 213 | } 214 | 215 | @override 216 | Widget build(BuildContext context) { 217 | return _mainView(); 218 | } 219 | } 220 | -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- 1 | #include "win32_window.h" 2 | 3 | #include 4 | #include 5 | 6 | #include "resource.h" 7 | 8 | namespace { 9 | 10 | /// Window attribute that enables dark mode window decorations. 11 | /// 12 | /// Redefined in case the developer's machine has a Windows SDK older than 13 | /// version 10.0.22000.0. 14 | /// See: https://docs.microsoft.com/windows/win32/api/dwmapi/ne-dwmapi-dwmwindowattribute 15 | #ifndef DWMWA_USE_IMMERSIVE_DARK_MODE 16 | #define DWMWA_USE_IMMERSIVE_DARK_MODE 20 17 | #endif 18 | 19 | constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; 20 | 21 | /// Registry key for app theme preference. 22 | /// 23 | /// A value of 0 indicates apps should use dark mode. A non-zero or missing 24 | /// value indicates apps should use light mode. 25 | constexpr const wchar_t kGetPreferredBrightnessRegKey[] = 26 | L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize"; 27 | constexpr const wchar_t kGetPreferredBrightnessRegValue[] = L"AppsUseLightTheme"; 28 | 29 | // The number of Win32Window objects that currently exist. 30 | static int g_active_window_count = 0; 31 | 32 | using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd); 33 | 34 | // Scale helper to convert logical scaler values to physical using passed in 35 | // scale factor 36 | int Scale(int source, double scale_factor) { 37 | return static_cast(source * scale_factor); 38 | } 39 | 40 | // Dynamically loads the |EnableNonClientDpiScaling| from the User32 module. 41 | // This API is only needed for PerMonitor V1 awareness mode. 42 | void EnableFullDpiSupportIfAvailable(HWND hwnd) { 43 | HMODULE user32_module = LoadLibraryA("User32.dll"); 44 | if (!user32_module) { 45 | return; 46 | } 47 | auto enable_non_client_dpi_scaling = 48 | reinterpret_cast( 49 | GetProcAddress(user32_module, "EnableNonClientDpiScaling")); 50 | if (enable_non_client_dpi_scaling != nullptr) { 51 | enable_non_client_dpi_scaling(hwnd); 52 | } 53 | FreeLibrary(user32_module); 54 | } 55 | 56 | } // namespace 57 | 58 | // Manages the Win32Window's window class registration. 59 | class WindowClassRegistrar { 60 | public: 61 | ~WindowClassRegistrar() = default; 62 | 63 | // Returns the singleton registrar instance. 64 | static WindowClassRegistrar* GetInstance() { 65 | if (!instance_) { 66 | instance_ = new WindowClassRegistrar(); 67 | } 68 | return instance_; 69 | } 70 | 71 | // Returns the name of the window class, registering the class if it hasn't 72 | // previously been registered. 73 | const wchar_t* GetWindowClass(); 74 | 75 | // Unregisters the window class. Should only be called if there are no 76 | // instances of the window. 77 | void UnregisterWindowClass(); 78 | 79 | private: 80 | WindowClassRegistrar() = default; 81 | 82 | static WindowClassRegistrar* instance_; 83 | 84 | bool class_registered_ = false; 85 | }; 86 | 87 | WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr; 88 | 89 | const wchar_t* WindowClassRegistrar::GetWindowClass() { 90 | if (!class_registered_) { 91 | WNDCLASS window_class{}; 92 | window_class.hCursor = LoadCursor(nullptr, IDC_ARROW); 93 | window_class.lpszClassName = kWindowClassName; 94 | window_class.style = CS_HREDRAW | CS_VREDRAW; 95 | window_class.cbClsExtra = 0; 96 | window_class.cbWndExtra = 0; 97 | window_class.hInstance = GetModuleHandle(nullptr); 98 | window_class.hIcon = 99 | LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON)); 100 | window_class.hbrBackground = 0; 101 | window_class.lpszMenuName = nullptr; 102 | window_class.lpfnWndProc = Win32Window::WndProc; 103 | RegisterClass(&window_class); 104 | class_registered_ = true; 105 | } 106 | return kWindowClassName; 107 | } 108 | 109 | void WindowClassRegistrar::UnregisterWindowClass() { 110 | UnregisterClass(kWindowClassName, nullptr); 111 | class_registered_ = false; 112 | } 113 | 114 | Win32Window::Win32Window() { 115 | ++g_active_window_count; 116 | } 117 | 118 | Win32Window::~Win32Window() { 119 | --g_active_window_count; 120 | Destroy(); 121 | } 122 | 123 | bool Win32Window::Create(const std::wstring& title, 124 | const Point& origin, 125 | const Size& size) { 126 | Destroy(); 127 | 128 | const wchar_t* window_class = 129 | WindowClassRegistrar::GetInstance()->GetWindowClass(); 130 | 131 | const POINT target_point = {static_cast(origin.x), 132 | static_cast(origin.y)}; 133 | HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST); 134 | UINT dpi = FlutterDesktopGetDpiForMonitor(monitor); 135 | double scale_factor = dpi / 96.0; 136 | 137 | HWND window = CreateWindow( 138 | window_class, title.c_str(), WS_OVERLAPPEDWINDOW, 139 | Scale(origin.x, scale_factor), Scale(origin.y, scale_factor), 140 | Scale(size.width, scale_factor), Scale(size.height, scale_factor), 141 | nullptr, nullptr, GetModuleHandle(nullptr), this); 142 | 143 | if (!window) { 144 | return false; 145 | } 146 | 147 | UpdateTheme(window); 148 | 149 | return OnCreate(); 150 | } 151 | 152 | bool Win32Window::Show() { 153 | return ShowWindow(window_handle_, SW_SHOWNORMAL); 154 | } 155 | 156 | // static 157 | LRESULT CALLBACK Win32Window::WndProc(HWND const window, 158 | UINT const message, 159 | WPARAM const wparam, 160 | LPARAM const lparam) noexcept { 161 | if (message == WM_NCCREATE) { 162 | auto window_struct = reinterpret_cast(lparam); 163 | SetWindowLongPtr(window, GWLP_USERDATA, 164 | reinterpret_cast(window_struct->lpCreateParams)); 165 | 166 | auto that = static_cast(window_struct->lpCreateParams); 167 | EnableFullDpiSupportIfAvailable(window); 168 | that->window_handle_ = window; 169 | } else if (Win32Window* that = GetThisFromHandle(window)) { 170 | return that->MessageHandler(window, message, wparam, lparam); 171 | } 172 | 173 | return DefWindowProc(window, message, wparam, lparam); 174 | } 175 | 176 | LRESULT 177 | Win32Window::MessageHandler(HWND hwnd, 178 | UINT const message, 179 | WPARAM const wparam, 180 | LPARAM const lparam) noexcept { 181 | switch (message) { 182 | case WM_DESTROY: 183 | window_handle_ = nullptr; 184 | Destroy(); 185 | if (quit_on_close_) { 186 | PostQuitMessage(0); 187 | } 188 | return 0; 189 | 190 | case WM_DPICHANGED: { 191 | auto newRectSize = reinterpret_cast(lparam); 192 | LONG newWidth = newRectSize->right - newRectSize->left; 193 | LONG newHeight = newRectSize->bottom - newRectSize->top; 194 | 195 | SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth, 196 | newHeight, SWP_NOZORDER | SWP_NOACTIVATE); 197 | 198 | return 0; 199 | } 200 | case WM_SIZE: { 201 | RECT rect = GetClientArea(); 202 | if (child_content_ != nullptr) { 203 | // Size and position the child window. 204 | MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left, 205 | rect.bottom - rect.top, TRUE); 206 | } 207 | return 0; 208 | } 209 | 210 | case WM_ACTIVATE: 211 | if (child_content_ != nullptr) { 212 | SetFocus(child_content_); 213 | } 214 | return 0; 215 | 216 | case WM_DWMCOLORIZATIONCOLORCHANGED: 217 | UpdateTheme(hwnd); 218 | return 0; 219 | } 220 | 221 | return DefWindowProc(window_handle_, message, wparam, lparam); 222 | } 223 | 224 | void Win32Window::Destroy() { 225 | OnDestroy(); 226 | 227 | if (window_handle_) { 228 | DestroyWindow(window_handle_); 229 | window_handle_ = nullptr; 230 | } 231 | if (g_active_window_count == 0) { 232 | WindowClassRegistrar::GetInstance()->UnregisterWindowClass(); 233 | } 234 | } 235 | 236 | Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept { 237 | return reinterpret_cast( 238 | GetWindowLongPtr(window, GWLP_USERDATA)); 239 | } 240 | 241 | void Win32Window::SetChildContent(HWND content) { 242 | child_content_ = content; 243 | SetParent(content, window_handle_); 244 | RECT frame = GetClientArea(); 245 | 246 | MoveWindow(content, frame.left, frame.top, frame.right - frame.left, 247 | frame.bottom - frame.top, true); 248 | 249 | SetFocus(child_content_); 250 | } 251 | 252 | RECT Win32Window::GetClientArea() { 253 | RECT frame; 254 | GetClientRect(window_handle_, &frame); 255 | return frame; 256 | } 257 | 258 | HWND Win32Window::GetHandle() { 259 | return window_handle_; 260 | } 261 | 262 | void Win32Window::SetQuitOnClose(bool quit_on_close) { 263 | quit_on_close_ = quit_on_close; 264 | } 265 | 266 | bool Win32Window::OnCreate() { 267 | // No-op; provided for subclasses. 268 | return true; 269 | } 270 | 271 | void Win32Window::OnDestroy() { 272 | // No-op; provided for subclasses. 273 | } 274 | 275 | void Win32Window::UpdateTheme(HWND const window) { 276 | DWORD light_mode; 277 | DWORD light_mode_size = sizeof(light_mode); 278 | LSTATUS result = RegGetValue(HKEY_CURRENT_USER, kGetPreferredBrightnessRegKey, 279 | kGetPreferredBrightnessRegValue, 280 | RRF_RT_REG_DWORD, nullptr, &light_mode, 281 | &light_mode_size); 282 | 283 | if (result == ERROR_SUCCESS) { 284 | BOOL enable_dark_mode = light_mode == 0; 285 | DwmSetWindowAttribute(window, DWMWA_USE_IMMERSIVE_DARK_MODE, 286 | &enable_dark_mode, sizeof(enable_dark_mode)); 287 | } 288 | } 289 | -------------------------------------------------------------------------------- /lib/widgets/gallery.dart: -------------------------------------------------------------------------------- 1 | import 'package:chewie/chewie.dart'; 2 | import 'package:extended_image/extended_image.dart'; 3 | import 'package:flutter/material.dart'; 4 | import 'package:flutter/services.dart'; 5 | import 'package:video_player/video_player.dart'; 6 | import 'package:wechat_assets_picker/wechat_assets_picker.dart'; 7 | import 'package:wechat_moments/entity/timeline_likesAndcomments/result.dart'; 8 | import 'package:wechat_moments/pages/index.dart'; 9 | import 'package:wechat_moments/utils/config.dart'; 10 | import 'package:wechat_moments/utils/index.dart'; 11 | import 'package:wechat_moments/widgets/global.dart'; 12 | import 'package:wechat_moments/widgets/index.dart'; 13 | import 'package:wechat_moments/widgets/slide_appbar.dart'; 14 | 15 | import '../entity/timeline_likesAndcomments/time_line_like_comments_entity.dart'; 16 | import '../pages/test.dart'; 17 | 18 | /// 图像浏览器 19 | class GalleryWidget extends StatefulWidget { 20 | const GalleryWidget({ 21 | Key? key, 22 | required this.initialIndex, 23 | this.items, 24 | this.isBarVisible, 25 | this.data, 26 | }) : super(key: key); 27 | 28 | // 动态详情页的数据信息 29 | final Result? data; 30 | 31 | // 初始图片的位置 32 | final int initialIndex; 33 | 34 | // 图片列表 35 | final List? items; 36 | 37 | // 是否显示 bar 38 | final bool? isBarVisible; 39 | 40 | @override 41 | State createState() => _GalleryWidgetState(); 42 | } 43 | 44 | // 一个接口,对象知道自己当前的路由。这与RouteObserver一起使用,使小部件能够意识到Navigator会话历史记录的变化 45 | //这样混入了一个[RouteAware]接口,这个接口可以让当前对象页面知道自己当前的路由,使组件能够知道Navigator 46 | class _GalleryWidgetState extends State 47 | with SingleTickerProviderStateMixin, WidgetsBindingObserver, RouteAware { 48 | // 是否显示appbar 49 | bool visible = true; 50 | 51 | // 是否显示appbar 52 | bool _isShowAppBar = true; 53 | 54 | // video控制器 55 | VideoPlayerController? _videoPlayerController; 56 | 57 | // chewie控制器 58 | ChewieController? _chewieController; 59 | 60 | // 动画控制器 61 | late final AnimationController _animateAppBarController; 62 | 63 | @override 64 | void didPop() { 65 | super.didPop(); 66 | print("didPop"); 67 | } 68 | 69 | // 当C页面关闭返回到B页面后,B页面会调用该方法 70 | // 当顶部路由被弹出时调用,当前路由显示出来 71 | @override 72 | void didPopNext() { 73 | super.didPopNext(); 74 | print("didPopNext"); 75 | if (_videoPlayerController?.value.isInitialized != true) return; 76 | _chewieController!.play(); 77 | } 78 | 79 | @override 80 | void didPush() { 81 | super.didPush(); 82 | print("didPush"); 83 | } 84 | 85 | // 当从B页面打开C页面时,该方法被调起。 86 | // 当新路由被推送,当前路由不再可见时调用 87 | @override 88 | void didPushNext() { 89 | 90 | super.didPushNext(); 91 | print("didPushNext"); 92 | if (_videoPlayerController?.value.isInitialized != true) return; 93 | _chewieController!.pause(); 94 | } 95 | 96 | // 当程序退到后台暂停,恢复到前台时再播放 97 | @override 98 | void didChangeAppLifecycleState(AppLifecycleState state) { 99 | super.didChangeAppLifecycleState(state); 100 | print("didChangeAppLifecycleState ${state}"); 101 | 102 | if(_videoPlayerController?.value.isInitialized != true) return; 103 | 104 | // 应用程序是可见的,并响应用户输入 105 | if (state == AppLifecycleState.resumed) { 106 | print("应用程序是可见的,并响应用户输入"); 107 | _chewieController!.play(); 108 | } 109 | // 应用程序处于后台,不能响应用户输入 110 | if(state == AppLifecycleState.paused){ 111 | print("应用程序处于后台,不能响应用户输入"); 112 | _chewieController!.pause(); 113 | } 114 | } 115 | 116 | // 在此 State 对象的依赖项更改时调用 117 | @override 118 | void didChangeDependencies() { 119 | super.didChangeDependencies(); 120 | // 订阅路由 121 | Global.routeObserver.subscribe(this, ModalRoute.of(context) as PageRoute); 122 | } 123 | 124 | @override 125 | void initState() { 126 | // TODO: implement initState 127 | super.initState(); 128 | visible = widget.isBarVisible ?? true; 129 | _animateAppBarController = AnimationController( 130 | vsync: this, 131 | duration: const Duration( 132 | milliseconds: 400, 133 | ), 134 | ); 135 | 136 | // 将给定对象注册为绑定观察者。捆绑 当各种应用程序事件发生时,观察者会收到通知,例如,当系统区域设置更改时 137 | WidgetsBinding.instance.addObserver(this); 138 | 139 | // 在下一帧之后调用回调。如果在帧绘制之前调用,则回调将在下一帧调用 140 | WidgetsBinding.instance.addPostFrameCallback((timeStamp) { 141 | _onLoadVideo(); 142 | }); 143 | } 144 | 145 | // 初始加载视频 146 | _onLoadVideo() async { 147 | // 判断朋友圈的发布类型是否为视频 148 | if (widget.data?.postType != PostType.video.name) { 149 | return Future.value(); 150 | } 151 | 152 | try { 153 | // video_player初始化 154 | _videoPlayerController = 155 | VideoPlayerController.network(widget.data?.video.url ?? ""); 156 | 157 | // 尝试打开给定的 [dataSoure] 并加载有关视频的元数据 158 | await _videoPlayerController?.initialize(); 159 | 160 | // chewie初始化 161 | _chewieController = ChewieController( 162 | videoPlayerController: _videoPlayerController!, 163 | // 视频一显示就播放 164 | autoPlay: true, 165 | // 视频是否应该循环播放 166 | looping: false, 167 | // 在启动时初始化视频。这将为视频回放做准备 168 | autoInitialize: true, 169 | // 如果为false,则不会显示MaterialUI和MaterialDesktopUI中的选项按钮 170 | showOptions: false, 171 | // 在iOS上用于控件的颜色。默认情况下,iOS播放器使用从原始iOS 11设计中采样的颜色 172 | cupertinoProgressColors: ChewieProgressColors( 173 | playedColor: accentColor, 174 | ), 175 | // material进度条使用的颜色。默认情况下,material播放器使用来自主题的颜色 176 | materialProgressColors: ChewieProgressColors( 177 | playedColor: accentColor, 178 | ), 179 | // 定义是否显示播放速度控制 180 | allowPlaybackSpeedChanging: false, 181 | // 定义进入全屏时允许的设备方向列表 182 | // 即定义可以以哪些全屏方向显示视频播放器 183 | deviceOrientationsOnEnterFullScreen: [ 184 | // 从portraitUp顺时针90度的方向 185 | DeviceOrientation.landscapeLeft, 186 | // 从portraitUp逆时针90度的方向 187 | DeviceOrientation.landscapeRight, 188 | // 如果设备在纵向显示其引导徽标,则引导徽标将在纵向显示。否则,设备将横向显示其引导标志,该方向是将设备从其引导方向顺时针旋转90度获得的 189 | DeviceOrientation.portraitUp, 190 | ], 191 | // 定义退出全屏后可以 以什么方向显示 192 | deviceOrientationsAfterFullScreen: [ 193 | DeviceOrientation.portraitUp, 194 | ], 195 | // 占位组件在视频初始化或播放之前显示在视频下方 196 | placeholder: _videoPlayerController?.value.isInitialized == false 197 | ? Image.network(widget.data?.video.cover ?? "") 198 | : null, 199 | ); 200 | } catch (e) { 201 | MyToast.show("播放器出错,请检查网络连接或者视频链接"); 202 | } finally { 203 | if (mounted) setState(() {}); 204 | } 205 | } 206 | 207 | /// 图片视图 208 | Widget _buildImageView() { 209 | return ExtendedImageGesturePageView.builder( 210 | controller: ExtendedPageController( 211 | // 传入图片初始位置 212 | initialPage: widget.initialIndex, 213 | ), 214 | itemCount: widget.items?.length ?? 0, 215 | itemBuilder: (BuildContext context, int index) { 216 | final AssetEntity? item = widget.items?[index]; 217 | return ExtendedImage( 218 | image: AssetEntityImageProvider( 219 | item!, 220 | isOriginal: true, 221 | ), 222 | fit: BoxFit.contain, 223 | mode: ExtendedImageMode.gesture, 224 | initGestureConfigHandler: ((ExtendedImageState state) { 225 | return GestureConfig( 226 | // 缩放最小值 227 | minScale: 0.8, 228 | maxScale: 5.0, 229 | //缩放拖拽速度,与用户操作成正比 230 | speed: 1.0, 231 | //是否缓存手势状态,可用于 ExtendedImageGesturePageView中 232 | // 保留状态,使用 clearGestureDetailsCache 方法清除 233 | cacheGesture: false, 234 | //拖拽惯性速度,与惯性速度成正比 235 | inertialSpeed: 100.0, 236 | initialScale: 1.0, 237 | // 是否使用 ExtendedImageGesturePageView 展示图片 238 | inPageView: true, 239 | ); 240 | }), 241 | ); 242 | }, 243 | ); 244 | } 245 | 246 | ///视频视图 247 | Widget _buildVideoView() { 248 | return Center( 249 | child: AspectRatio( 250 | aspectRatio: 16 / 9, 251 | child: Container( 252 | child: Container( 253 | decoration: const BoxDecoration(color: Colors.black), 254 | child: _chewieController == null 255 | ? const Text( 256 | "视频载入中...", 257 | textAlign: TextAlign.center, 258 | ) 259 | : Chewie(controller: _chewieController!), 260 | ), 261 | ), 262 | ), 263 | ); 264 | } 265 | 266 | ///底部动态信息栏 267 | // Widget _buildBottomDynamicInfoBar(){ 268 | // if(visible == false){ 269 | // return null; 270 | // }else{ 271 | // 272 | // } 273 | // } 274 | 275 | /// 主视图 276 | Widget _mainView() { 277 | // 默认加载中 278 | Widget body = const Text("loading"); 279 | 280 | // 如果是图片 281 | if (widget.data?.postType == PostType.image.name) { 282 | body = _buildImageView(); 283 | } 284 | 285 | // 如果是视频 286 | if (widget.data?.postType == PostType.video.name && 287 | widget.data?.video.url != null) { 288 | body = _buildVideoView(); 289 | } 290 | 291 | return GestureDetector( 292 | behavior: HitTestBehavior.opaque, 293 | onTap: () { 294 | // Navigator.pop(context); 295 | setState(() { 296 | visible = !visible; 297 | }); 298 | }, 299 | child: Scaffold( 300 | // 是否占用appbar的空间 appbar仍然存在-// 全屏, 高度将扩展为包括应用栏的高度 301 | extendBodyBehindAppBar: true, 302 | backgroundColor: Colors.black, 303 | // appBar: SlideAppbarWidget( 304 | // controller: _animateAppBarController, 305 | // visible: visible, 306 | // child: AppBar( 307 | // backgroundColor: Colors.grey, 308 | // elevation: 0, 309 | // ), 310 | // ), 311 | appBar: MyAppBar( 312 | isAnimated: true, 313 | isShow: visible, 314 | leading: GestureDetector( 315 | onTap: () { 316 | Navigator.pop(context); 317 | }, 318 | child: const Icon( 319 | Icons.arrow_back_ios_outlined, 320 | color: Colors.white, 321 | ), 322 | ), 323 | actions: [ 324 | GestureDetector( 325 | onTap: () { 326 | Navigator.of(context).push( 327 | MaterialPageRoute(builder: (ctx) => const TestPage())); 328 | }, 329 | child: const Icon( 330 | Icons.more_horiz_outlined, 331 | color: Colors.white, 332 | ), 333 | ) 334 | ], 335 | ), 336 | body: body, 337 | ), 338 | ); 339 | } 340 | 341 | @override 342 | Widget build(BuildContext context) { 343 | return _mainView(); 344 | } 345 | 346 | @override 347 | void dispose() { 348 | super.dispose(); 349 | WidgetsBinding.instance.removeObserver(this); 350 | Global.routeObserver.unsubscribe(this); 351 | _videoPlayerController?.dispose(); 352 | _chewieController?.dispose(); 353 | _videoPlayerController = null; 354 | _chewieController = null; 355 | } 356 | } 357 | -------------------------------------------------------------------------------- /lib/pages/post.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:wechat_camera_picker/wechat_camera_picker.dart'; 3 | import 'package:wechat_moments/utils/index.dart'; 4 | import 'package:wechat_moments/widgets/index.dart'; 5 | 6 | import '../entity/index.dart'; 7 | 8 | enum PostType { 9 | image, 10 | video, 11 | text, 12 | } 13 | 14 | class PostEditPage extends StatefulWidget { 15 | const PostEditPage({Key? key, this.postType, this.selectedAssets}) 16 | : super(key: key); 17 | 18 | // 发布类型 19 | final PostType? postType; 20 | 21 | // 已选中的图片列表 22 | final List? selectedAssets; 23 | 24 | @override 25 | State createState() => _PostEditPageState(); 26 | } 27 | 28 | class _PostEditPageState extends State { 29 | // 发布类型 30 | PostType? _postType; 31 | 32 | // 已选中图片列表 33 | List _selectedAssets = []; 34 | 35 | // 是否开始拖拽 36 | bool _isDragNow = false; 37 | 38 | // 是否将要删除 39 | bool _isWillRemove = false; 40 | 41 | // 是否将要拖拽 42 | bool _isWillOrder = false; 43 | 44 | // 被拖拽的id 45 | late String _targetAssetId; 46 | 47 | // 内容输入控制器 48 | final TextEditingController _contentController = TextEditingController(); 49 | 50 | // 菜单列表 51 | List _menus = []; 52 | 53 | // 已压缩的视频文件 54 | // ignore: unused_field 55 | CompressMediaFile? _videoCompressMediaFile; 56 | 57 | @override 58 | void initState() { 59 | // TODO: implement initState 60 | super.initState(); 61 | _postType = widget.postType; 62 | _selectedAssets = widget.selectedAssets ?? []; 63 | 64 | _menus = [ 65 | MenuItemModel(icon: Icons.location_on_outlined, title: "所在位置"), 66 | MenuItemModel(icon: Icons.alternate_email_outlined, title: "提醒谁看"), 67 | MenuItemModel( 68 | icon: Icons.person_outline_outlined, 69 | title: "谁可以看", 70 | rightText: "公开", 71 | onTap: () {}), 72 | ]; 73 | } 74 | 75 | @override 76 | void dispose() { 77 | // TODO: implement dispose 78 | super.dispose(); 79 | _contentController.dispose(); 80 | } 81 | 82 | // 图片列表 83 | Widget _buildPhotosList() { 84 | return Padding( 85 | padding: const EdgeInsets.all(spacing), 86 | child: LayoutBuilder( 87 | builder: (context, constraints) { 88 | //(获取最大约束的值 减去 图片之间间隙的总数)/每行图片数量 89 | final double imageSize = 90 | (constraints.maxWidth - spacing * 2 - imageBorder * (2 * 3)) / 3; 91 | return Wrap( 92 | spacing: spacing, 93 | runSpacing: spacing, 94 | children: [ 95 | for (final asset in _selectedAssets) 96 | _buildPhotoItem(asset, imageSize), 97 | //加入图片末尾的按钮 98 | if (_selectedAssets.length < maxAssets) 99 | _buildAddImageButton(context, imageSize), 100 | // _buildAddImageButton(context, imageSize) 101 | ], 102 | ); 103 | }, 104 | ), 105 | ); 106 | } 107 | 108 | /// 缩略图末尾添加按钮 109 | Widget _buildAddImageButton(BuildContext context, double imageSize) { 110 | return GestureDetector( 111 | onTap: () async { 112 | print("${widget.selectedAssets}"); 113 | final result = 114 | await MyBottomSheet(selectedAssets: widget.selectedAssets) 115 | .wxPicker>(context: context); 116 | 117 | if (result == null || result.isEmpty) return; 118 | 119 | // 视频 120 | if (result.length == 1 && result.first.type == AssetType.video) { 121 | setState(() { 122 | _postType = PostType.video; 123 | _selectedAssets = result; 124 | }); 125 | } 126 | // 图片 127 | else { 128 | setState(() { 129 | _postType = PostType.image; 130 | _selectedAssets = result; 131 | }); 132 | } 133 | 134 | // // 这里是读取了图片的一些信息例如图片大小时间经纬度之类的 135 | // List? result = await AssetPicker.pickAssets( 136 | // context, 137 | // pickerConfig: AssetPickerConfig( 138 | // // 这里将 已获取的图片列表 传入AssetPickerConfig,它会自动识别 已获取的图片列表 并自动勾选 139 | // selectedAssets: selectedAssets, 140 | // maxAssets: maxAssets, 141 | // ), 142 | // ); 143 | // print("${result}"); 144 | // // if (result == null) { 145 | // // return; 146 | // // } 147 | // if (result != null) { 148 | // setState( 149 | // () { 150 | // selectedAssets = result; 151 | // }, 152 | // ); 153 | // } 154 | 155 | // List? asset = await MyAssetPicker.getAsset( 156 | // context: context, 157 | // selectedAssets: selectedAssets, 158 | // ); 159 | // 160 | // if (asset != null) { 161 | // print(asset); 162 | // } else { 163 | // return; 164 | // } 165 | // 166 | // setState(() { 167 | // selectedAssets = asset; 168 | // }); 169 | 170 | //3 171 | // showModalBottomSheet( 172 | // context: context, 173 | // useSafeArea: true, 174 | // builder: (BuildContext context) { 175 | // return Column( 176 | // mainAxisSize: MainAxisSize.min, 177 | // children: [ 178 | // ListTile( 179 | // leading: Icon(Icons.camera_alt), 180 | // title: Text('拍照'), 181 | // onTap: () async { 182 | // AssetEntity? asset =await MyAssetPicker.takePhoto(context); 183 | // if(asset==null)return; 184 | // setState(() { 185 | // _postType=PostType.image; 186 | // _selectedAssets.add(asset); 187 | // }); 188 | // Navigator.pop(context); 189 | // }, 190 | // ), 191 | // ListTile( 192 | // leading: Icon(Icons.videocam), 193 | // title: Text('摄像'), 194 | // onTap: () async{ 195 | // AssetEntity? asset =await MyAssetPicker.takeVideo(context); 196 | // if(asset==null)return; 197 | // setState(() { 198 | // _postType=PostType.video; 199 | // _selectedAssets.clear(); 200 | // _selectedAssets.add(asset); 201 | // }); 202 | // Navigator.pop(context); 203 | // }, 204 | // ), 205 | // ListTile( 206 | // leading: Icon(Icons.photo), 207 | // title: Text("选取图片"), 208 | // onTap: ()async{ 209 | // List? asset = await MyAssetPicker.getAsset(context: context,selectedAssets: _selectedAssets); 210 | // if(asset==null)return; 211 | // setState(() { 212 | // _postType=PostType.image; 213 | // _postType=null; 214 | // _selectedAssets=asset; 215 | // }); 216 | // Navigator.pop(context); 217 | // }, 218 | // ) 219 | // ], 220 | // ); 221 | // }, 222 | // ); 223 | }, 224 | child: Container( 225 | width: imageSize, 226 | height: imageSize, 227 | color: Colors.black12, 228 | child: const Icon( 229 | Icons.add, 230 | size: 45, 231 | color: Colors.black38, 232 | ), 233 | ), 234 | ); 235 | } 236 | 237 | /// 缩略图末尾拍摄按钮 238 | Widget _buildTakeImageButton(BuildContext context, double imageSize) { 239 | return GestureDetector( 240 | onTap: () async { 241 | final AssetEntity? result = await CameraPicker.pickFromCamera( 242 | context, 243 | pickerConfig: const CameraPickerConfig( 244 | // 选择器是否可以录像 245 | enableRecording: true, 246 | ), 247 | ); 248 | 249 | if (result != null) { 250 | print("${result.relativePath}"); 251 | setState(() { 252 | _selectedAssets.add(result); 253 | }); 254 | } 255 | }, 256 | child: Container( 257 | width: imageSize, 258 | height: imageSize, 259 | color: Colors.black12, 260 | child: const Icon( 261 | Icons.photo_camera, 262 | size: 45, 263 | color: Colors.black38, 264 | ), 265 | ), 266 | ); 267 | } 268 | 269 | /// 图片缩略图的Item 270 | Widget _buildPhotoItem(AssetEntity asset, double imageSize) { 271 | // 图片缩略图代码抽取 272 | Widget _photoItem(double? opacity) => Container( 273 | clipBehavior: Clip.antiAlias, 274 | decoration: BoxDecoration( 275 | borderRadius: BorderRadius.circular(2), 276 | ), 277 | child: AssetEntityImage( 278 | asset, 279 | width: imageSize, 280 | height: imageSize, 281 | fit: BoxFit.cover, 282 | // 这里设置不需要原图显示,缩略图无需原图,非常消耗资源和性能,造成卡顿 283 | isOriginal: false, 284 | opacity: opacity != null ? AlwaysStoppedAnimation(opacity) : null, 285 | ), 286 | ); 287 | 288 | return Draggable( 289 | data: asset, 290 | // 开始拖拽时 291 | onDragStarted: () { 292 | print("onDragStarted-${asset.id}"); 293 | setState(() { 294 | _isDragNow = true; 295 | }); 296 | }, 297 | // 拖拽结束时 298 | onDragEnd: (DraggableDetails details) { 299 | print("onDragStarted-${asset.id}"); 300 | setState(() { 301 | _isDragNow = false; 302 | _isWillOrder = false; 303 | }); 304 | }, 305 | // 当draggable被拖放并被DragTarget接受时调用 306 | onDragCompleted: () { 307 | print("onDragStarted-${asset.id}"); 308 | }, 309 | // 当拖放对象未被DragTarget接受而被拖放时调用 310 | onDraggableCanceled: (Velocity velocity, Offset offset) { 311 | setState(() { 312 | _isDragNow = false; 313 | }); 314 | }, 315 | // 拖拽时的样式 316 | feedback: _photoItem(null), 317 | // 拖拽后原本位置的样式 318 | childWhenDragging: _photoItem(0.3), 319 | // 不拖拽时的样式 320 | child: DragTarget( 321 | onWillAccept: (data) { 322 | print("onWillAccept-${data?.id}"); 323 | 324 | setState(() { 325 | _isWillOrder = true; 326 | _targetAssetId = asset.id; 327 | }); 328 | return true; 329 | }, 330 | onAccept: (data) { 331 | print("onAccept-${data.id}"); 332 | // // 从队列中删除拖拽对象 333 | 334 | // final int index = selectedAssets.indexOf(data); 335 | // print("从队列中删除拖拽对象的index-${index}"); 336 | // 337 | // selectedAssets.removeAt(index); 338 | // // 339 | // int targetIndex = selectedAssets.indexOf(asset); 340 | // print("目标需要插入的index-${targetIndex}"); 341 | // print("${selectedAssets.length}"); 342 | // // if(targetAssetId==selectedAssets.length-1){ 343 | // // targetIndex++; 344 | // // } 345 | // selectedAssets.insert(targetIndex, data); 346 | 347 | // 0 当前元素位置 348 | int targetIndex = _selectedAssets.indexWhere((element) { 349 | return element.id == asset.id; 350 | }); 351 | 352 | // 1 删除原来的 353 | _selectedAssets.removeWhere((element) { 354 | return element.id == data.id; 355 | }); 356 | 357 | // 2 插入到目标前面 358 | _selectedAssets.insert(targetIndex, data); 359 | 360 | setState(() { 361 | _isWillOrder = false; 362 | _targetAssetId = ""; 363 | }); 364 | }, 365 | onLeave: (data) { 366 | print("onLeave-${data?.id}"); 367 | setState(() { 368 | _isWillOrder = false; 369 | _targetAssetId = ""; 370 | }); 371 | }, 372 | builder: (BuildContext context, List candidateData, 373 | List rejectedData) { 374 | return GestureDetector( 375 | onTap: () { 376 | Navigator.push( 377 | context, 378 | MaterialPageRoute( 379 | builder: (BuildContext context) { 380 | return GalleryWidget( 381 | initialIndex: _selectedAssets.indexOf(asset), 382 | items: _selectedAssets, 383 | ); 384 | }, 385 | ), 386 | ); 387 | }, 388 | child: Container( 389 | clipBehavior: Clip.antiAlias, 390 | decoration: BoxDecoration( 391 | borderRadius: BorderRadius.circular(2), 392 | border: (_isWillOrder && _targetAssetId == asset.id) 393 | ? Border.all( 394 | color: accentColor, 395 | width: imageBorder, 396 | ) 397 | : null, 398 | ), 399 | child: AssetEntityImage( 400 | asset, 401 | width: imageSize, 402 | height: imageSize, 403 | fit: BoxFit.cover, 404 | // 这里设置不需要原图显示,缩略图无需原图,非常消耗资源和性能,造成卡顿 405 | isOriginal: false, 406 | ), 407 | ), 408 | ); 409 | }, 410 | ), 411 | ); 412 | } 413 | 414 | /// 删除的bar 415 | Widget _buildRemoveBar() { 416 | return DragTarget( 417 | builder: (BuildContext context, List candidateData, 418 | List rejectedData) { 419 | return Container( 420 | width: double.infinity, 421 | height: 100, 422 | color: _isWillRemove ? Colors.red[600] : Colors.red[300], 423 | child: const Column( 424 | mainAxisAlignment: MainAxisAlignment.center, 425 | children: [ 426 | Icon( 427 | Icons.delete, 428 | color: Colors.white, 429 | ), 430 | Text( 431 | "拖拽到这里删除", 432 | style: TextStyle(color: Colors.white), 433 | ), 434 | ], 435 | ), 436 | ); 437 | }, 438 | // 调用以确定此小部件是否允许接收在此拖动目标上拖动的给定数据块。当一段数据进入目标时调用。 439 | // 如果数据被拖放,接下来是onAccept和onAcceptWithDetails方法,如果拖放离开目标,接下来是onLeave方法 440 | onWillAccept: (data) { 441 | print("onWillAccept"); 442 | setState(() { 443 | _isWillRemove = true; 444 | }); 445 | return true; 446 | }, 447 | // 当被允许接收的数据块被拖放到此拖动目标上时调用 448 | onAccept: (AssetEntity data) { 449 | print("onAccept:drag target image is ${data}"); 450 | setState(() { 451 | _selectedAssets.remove(data); 452 | _isWillRemove = false; 453 | }); 454 | }, 455 | 456 | onLeave: (data) { 457 | print("leave"); 458 | setState(() { 459 | _isWillRemove = false; 460 | }); 461 | }, 462 | ); 463 | } 464 | 465 | ///内容输入框 466 | Widget _buildContentInput() { 467 | return LimitedBox( 468 | maxHeight: 180, 469 | child: TextField( 470 | maxLines: null, 471 | maxLength: 20, 472 | controller: _contentController, 473 | decoration: InputDecoration( 474 | hintText: "这一刻的想法...", 475 | hintStyle: const TextStyle( 476 | color: Colors.black12, 477 | fontSize: 18, 478 | fontWeight: FontWeight.w500, 479 | ), 480 | border: InputBorder.none, 481 | // 显示输入框右下角当前字数和最大可输入字数 482 | counterText: _contentController.text.isEmpty ? "" : null, 483 | ), 484 | // 当文字输入控制器发生变化时会发生一次回调 485 | onChanged: (value) { 486 | setState(() {}); 487 | }, 488 | ), 489 | ); 490 | } 491 | 492 | ///菜单项 493 | Widget _buildMenus() { 494 | List ws = []; 495 | for (int i = 0; i < _menus.length; i++) { 496 | var menu = _menus[i]; 497 | 498 | if(i==0){ 499 | ws.add(const MyDividerWidget()); 500 | } 501 | ws.add( 502 | ListTile( 503 | leading: Icon(menu.icon), 504 | title: Text(menu.title!), 505 | trailing: Text(menu.rightText ?? ""), 506 | onTap: menu.onTap, 507 | ), 508 | ); 509 | ws.add(const MyDividerWidget()); 510 | } 511 | return Padding( 512 | padding: const EdgeInsets.only(top: 200), 513 | child: Column( 514 | children: ws, 515 | ), 516 | ); 517 | } 518 | 519 | // 主视图 520 | Widget _mainView() { 521 | return SingleChildScrollView( 522 | physics: const BouncingScrollPhysics(), 523 | child: Center( 524 | child: Padding( 525 | padding: const EdgeInsets.all(pagePadding), 526 | child: Column( 527 | children: [ 528 | // 内容输入区域 529 | _buildContentInput(), 530 | // 相册列表 531 | if (_postType == PostType.image) _buildPhotosList(), 532 | // 视频播放器 533 | if (_postType == PostType.video) 534 | VideoPlayerWidget( 535 | initAsset: _selectedAssets.first, 536 | onCompleted: (value) => _videoCompressMediaFile = value, 537 | ), 538 | 539 | // 添加按钮 540 | if (_postType == null && _selectedAssets.isEmpty) 541 | Padding( 542 | padding: const EdgeInsets.all(spacing), 543 | child: _buildAddImageButton(context, 100), 544 | ), 545 | _buildMenus(), 546 | ], 547 | ), 548 | ), 549 | ), 550 | ); 551 | } 552 | 553 | @override 554 | Widget build(BuildContext context) { 555 | return Scaffold( 556 | appBar: MyAppBar( 557 | // 左侧返回 558 | leading: Padding( 559 | padding: const EdgeInsets.only(left: pagePadding), 560 | child: GestureDetector( 561 | onTap: () { 562 | Navigator.of(context).pop(); 563 | }, 564 | child: const Icon( 565 | Icons.arrow_back_ios_new_outlined, 566 | color: Colors.grey, 567 | ), 568 | ), 569 | ), 570 | //右侧发布 571 | actions: [ 572 | Padding( 573 | padding: const EdgeInsets.only(right: pagePadding), 574 | child: ElevatedButton( 575 | onPressed: () {}, 576 | child: const Text("发布"), 577 | ), 578 | ), 579 | ], 580 | ), 581 | body: _mainView(), 582 | bottomSheet: _isDragNow ? _buildRemoveBar() : null, 583 | ); 584 | } 585 | } 586 | --------------------------------------------------------------------------------