├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── gstory │ │ │ │ └── chatgpt_app │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-ldpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── images │ ├── logo.png │ ├── logo_chatgpt.png │ ├── logo_system.png │ └── logo_user.png ├── docs └── chat_desktop.gif ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-1024.png │ │ ├── icon-20-ipad.png │ │ ├── icon-20@2x-ipad.png │ │ ├── icon-20@2x.png │ │ ├── icon-20@3x.png │ │ ├── icon-29-ipad.png │ │ ├── icon-29.png │ │ ├── icon-29@2x-ipad.png │ │ ├── icon-29@2x.png │ │ ├── icon-29@3x.png │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ └── icon-83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── config │ └── global_keys.dart ├── lang │ ├── en_US.dart │ ├── strings.dart │ ├── translation_service.dart │ └── zh_CN.dart ├── main.dart ├── manager │ └── sp_manager.dart ├── page │ ├── bean │ │ ├── chatgpt_entity.dart │ │ └── history_bean.dart │ ├── chat │ │ ├── chat_ctr.dart │ │ ├── chat_page.dart │ │ ├── chat_receive_item.dart │ │ ├── chat_send_item.dart │ │ └── chat_text.dart │ ├── image │ │ └── image_page.dart │ ├── index │ │ ├── index_ctr.dart │ │ ├── index_desktop.dart │ │ ├── index_page.dart │ │ └── index_phone.dart │ ├── routes │ │ └── app_pages.dart │ └── setting │ │ ├── setting_chatgpt_dialog.dart │ │ ├── setting_ctr.dart │ │ ├── setting_key.dart │ │ ├── setting_language_dialog.dart │ │ └── setting_page.dart └── utils │ ├── chat_util.dart │ ├── language_util.dart │ ├── net_util.dart │ └── toast_util.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-128.png │ │ ├── icon-128@2x.png │ │ ├── icon-16.png │ │ ├── icon-16@2x.png │ │ ├── icon-256.png │ │ ├── icon-256@2x.png │ │ ├── icon-32.png │ │ ├── icon-32@2x.png │ │ ├── icon-512.png │ │ └── icon-512@2x.png │ ├── Base.lproj │ └── MainMenu.xib │ ├── Configs │ ├── AppInfo.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements ├── pubspec.yaml ├── test └── widget_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.gitignore.io/api/dart,swift,xcode,android,intellij,cocoapods,objective-c,androidstudio 2 | 3 | ### Android ### 4 | # Built application files 5 | *.apk 6 | *.ap_ 7 | 8 | # Files for the ART/Dalvik VM 9 | *.dex 10 | 11 | # Java class files 12 | *.class 13 | 14 | # Generated files 15 | bin/ 16 | gen/ 17 | out/ 18 | 19 | # Gradle files 20 | .gradle/ 21 | build/ 22 | 23 | # Local configuration file (sdk path, etc) 24 | local.properties 25 | 26 | # Proguard folder generated by Eclipse 27 | proguard/ 28 | 29 | # Log Files 30 | *.log 31 | 32 | # Android Studio Navigation editor temp files 33 | .navigation/ 34 | 35 | # Android Studio captures folder 36 | captures/ 37 | 38 | # Intellij 39 | *.iml 40 | .idea/workspace.xml 41 | .idea/tasks.xml 42 | .idea/gradle.xml 43 | .idea/dictionaries 44 | .idea/libraries 45 | 46 | # External native build folder generated in Android Studio 2.2 and later 47 | .externalNativeBuild 48 | 49 | # Freeline 50 | freeline.py 51 | freeline/ 52 | freeline_project_description.json 53 | 54 | ### Android Patch ### 55 | gen-external-apklibs 56 | 57 | ### AndroidStudio ### 58 | # Covers files to be ignored for android development using Android Studio. 59 | 60 | # Built application files 61 | 62 | # Files for the ART/Dalvik VM 63 | 64 | # Java class files 65 | 66 | # Generated files 67 | 68 | # Gradle files 69 | .gradle 70 | 71 | # Signing files 72 | .signing/ 73 | 74 | # Local configuration file (sdk path, etc) 75 | 76 | # Proguard folder generated by Eclipse 77 | 78 | # Log Files 79 | 80 | # Android Studio 81 | /*/build/ 82 | /*/local.properties 83 | /*/out 84 | /*/*/build 85 | /*/*/production 86 | *.ipr 87 | *~ 88 | *.swp 89 | 90 | # Android Patch 91 | 92 | # External native build folder generated in Android Studio 2.2 and later 93 | 94 | # NDK 95 | obj/ 96 | 97 | # IntelliJ IDEA 98 | *.iws 99 | /out/ 100 | 101 | # User-specific configurations 102 | .idea/libraries/ 103 | .idea/.name 104 | .idea/compiler.xml 105 | .idea/copyright/profiles_settings.xml 106 | .idea/encodings.xml 107 | .idea/misc.xml 108 | .idea/modules.xml 109 | .idea/scopes/scope_settings.xml 110 | .idea/vcs.xml 111 | .idea/jsLibraryMappings.xml 112 | .idea/datasources.xml 113 | .idea/dataSources.ids 114 | .idea/sqlDataSources.xml 115 | .idea/dynamic.xml 116 | .idea/uiDesigner.xml 117 | 118 | # OS-specific files 119 | .DS_Store 120 | .DS_Store? 121 | ._* 122 | .Spotlight-V100 123 | .Trashes 124 | ehthumbs.db 125 | Thumbs.db 126 | 127 | # Legacy Eclipse project files 128 | .classpath 129 | .project 130 | 131 | # Mobile Tools for Java (J2ME) 132 | .mtj.tmp/ 133 | 134 | # Package Files # 135 | *.war 136 | *.ear 137 | 138 | # virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml) 139 | hs_err_pid* 140 | 141 | ## Plugin-specific files: 142 | 143 | # mpeltonen/sbt-idea plugin 144 | .idea_modules/ 145 | 146 | # JIRA plugin 147 | atlassian-ide-plugin.xml 148 | 149 | # Mongo Explorer plugin 150 | .idea/mongoSettings.xml 151 | 152 | # Crashlytics plugin (for Android Studio and IntelliJ) 153 | com_crashlytics_export_strings.xml 154 | crashlytics.properties 155 | crashlytics-build.properties 156 | fabric.properties 157 | 158 | ### AndroidStudio Patch ### 159 | 160 | !/gradle/wrapper/gradle-wrapper.jar 161 | 162 | ### CocoaPods ### 163 | ## CocoaPods GitIgnore Template 164 | 165 | # CocoaPods - Only use to conserve bandwidth / Save time on Pushing 166 | # - Also handy if you have a lage number of dependant pods 167 | # - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGONRE THE LOCK FILE 168 | Pods/ 169 | 170 | ### Dart ### 171 | # See https://www.dartlang.org/tools/private-files.html 172 | 173 | # Files and directories created by pub 174 | .packages 175 | .pub/ 176 | # If you're building an application, you may want to check-in your pubspec.lock 177 | pubspec.lock 178 | 179 | # Directory created by dartdoc 180 | # If you don't generate documentation locally you can remove this line. 181 | doc/api/ 182 | 183 | ### Intellij ### 184 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm 185 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 186 | 187 | # User-specific stuff: 188 | .idea/**/workspace.xml 189 | .idea/**/tasks.xml 190 | 191 | # Sensitive or high-churn files: 192 | .idea/**/dataSources/ 193 | .idea/**/dataSources.ids 194 | .idea/**/dataSources.xml 195 | .idea/**/dataSources.local.xml 196 | .idea/**/sqlDataSources.xml 197 | .idea/**/dynamic.xml 198 | .idea/**/uiDesigner.xml 199 | 200 | # Gradle: 201 | .idea/**/gradle.xml 202 | .idea/**/libraries 203 | 204 | # CMake 205 | cmake-build-debug/ 206 | 207 | # Mongo Explorer plugin: 208 | .idea/**/mongoSettings.xml 209 | 210 | ## File-based project format: 211 | 212 | ## Plugin-specific files: 213 | 214 | # IntelliJ 215 | 216 | # mpeltonen/sbt-idea plugin 217 | 218 | # JIRA plugin 219 | 220 | # Cursive Clojure plugin 221 | .idea/replstate.xml 222 | 223 | # Crashlytics plugin (for Android Studio and IntelliJ) 224 | 225 | ### Intellij Patch ### 226 | # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 227 | 228 | # *.iml 229 | # modules.xml 230 | # .idea/misc.xml 231 | # *.ipr 232 | 233 | # Sonarlint plugin 234 | .idea/sonarlint 235 | 236 | ### Objective-C ### 237 | # Xcode 238 | # 239 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 240 | 241 | ## Build generated 242 | DerivedData/ 243 | 244 | ## Various settings 245 | *.pbxuser 246 | !default.pbxuser 247 | *.mode1v3 248 | !default.mode1v3 249 | *.mode2v3 250 | !default.mode2v3 251 | *.perspectivev3 252 | !default.perspectivev3 253 | xcuserdata/ 254 | 255 | ## Other 256 | *.moved-aside 257 | *.xccheckout 258 | *.xcscmblueprint 259 | 260 | ## Obj-C/Swift specific 261 | *.hmap 262 | *.ipa 263 | *.dSYM.zip 264 | *.dSYM 265 | 266 | # CocoaPods - Refactored to standalone file 267 | 268 | 269 | # Carthage - Refactored to standalone file 270 | 271 | # fastlane 272 | # 273 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 274 | # screenshots whenever they are needed. 275 | # For more information about the recommended setup visit: 276 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 277 | 278 | fastlane/report.xml 279 | fastlane/Preview.html 280 | fastlane/screenshots 281 | fastlane/test_output 282 | 283 | # Code Injection 284 | # 285 | # After new code Injection tools there's a generated folder /iOSInjectionProject 286 | # https://github.com/johnno1962/injectionforxcode 287 | 288 | iOSInjectionProject/ 289 | 290 | ### Objective-C Patch ### 291 | 292 | ### Swift ### 293 | # Xcode 294 | # 295 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 296 | 297 | ## Build generated 298 | 299 | ## Various settings 300 | 301 | ## Other 302 | 303 | ## Obj-C/Swift specific 304 | 305 | ## Playgrounds 306 | timeline.xctimeline 307 | playground.xcworkspace 308 | 309 | # Swift Package Manager 310 | # 311 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 312 | # Packages/ 313 | # Package.pins 314 | .build/ 315 | 316 | # CocoaPods - Refactored to standalone file 317 | 318 | # Carthage - Refactored to standalone file 319 | 320 | # fastlane 321 | # 322 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 323 | # screenshots whenever they are needed. 324 | # For more information about the recommended setup visit: 325 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 326 | 327 | 328 | ### Xcode ### 329 | # Xcode 330 | # 331 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 332 | 333 | ## Build generated 334 | 335 | ## Various settings 336 | 337 | ## Other 338 | 339 | ### Xcode Patch ### 340 | *.xcodeproj/* 341 | !*.xcodeproj/project.pbxproj 342 | !*.xcodeproj/xcshareddata/ 343 | !*.xcworkspace/contents.xcworkspacedata 344 | /*.gcno 345 | 346 | # Build files 347 | build/ 348 | 349 | # End of https://www.gitignore.io/api/dart,swift,xcode,android,intellij,cocoapods,objective-c,androidstudio 350 | 351 | .flutter-plugins 352 | .flutter-plugins-dependencies 353 | .dart_tool 354 | go/ -------------------------------------------------------------------------------- /.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: 7048ed95a5ad3e43d697e0c397464193991fc230 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: 7048ed95a5ad3e43d697e0c397464193991fc230 17 | base_revision: 7048ed95a5ad3e43d697e0c397464193991fc230 18 | - platform: android 19 | create_revision: 7048ed95a5ad3e43d697e0c397464193991fc230 20 | base_revision: 7048ed95a5ad3e43d697e0c397464193991fc230 21 | - platform: ios 22 | create_revision: 7048ed95a5ad3e43d697e0c397464193991fc230 23 | base_revision: 7048ed95a5ad3e43d697e0c397464193991fc230 24 | - platform: linux 25 | create_revision: 7048ed95a5ad3e43d697e0c397464193991fc230 26 | base_revision: 7048ed95a5ad3e43d697e0c397464193991fc230 27 | - platform: macos 28 | create_revision: 7048ed95a5ad3e43d697e0c397464193991fc230 29 | base_revision: 7048ed95a5ad3e43d697e0c397464193991fc230 30 | - platform: web 31 | create_revision: 7048ed95a5ad3e43d697e0c397464193991fc230 32 | base_revision: 7048ed95a5ad3e43d697e0c397464193991fc230 33 | - platform: windows 34 | create_revision: 7048ed95a5ad3e43d697e0c397464193991fc230 35 | base_revision: 7048ed95a5ad3e43d697e0c397464193991fc230 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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # chatgpt_app 2 | ChatGPT应用,支持Android、iOS、MacOS、linux、Windows,通过api实现,目前提供andorid app,其他客户端自行打包 3 | 4 | ## 效果 5 | 6 | 7 | > 使用openai gpt-3.5-turbo完成数据交互 8 | 9 | ## 角色扮演 10 | 角色调教可以参考 https://github.com/PlexPt/awesome-chatgpt-prompts-zh , 11 | 问题需要单独提问,不要写到描述中 12 | ``` 13 | //进入角色 14 | @system 「角色描述」 15 | 16 | //退出角色 17 | @exit 18 | ``` 19 | 20 | ## ChatGPT设置 21 | 设置-ChatGPT设置 22 | 23 | ### key 24 | 注册一个[ChatGPT](https://chat.openai.com/)账号,获取key,在APP右上角设置中填写,即可使用了。 25 | 注册流程可以参考[blog](https://blog.gstory.cn/archives/78.html) 26 | 27 | ### 字符数 28 | 请求的最大token数 29 | 30 | ### 上下文关联数 31 | 聊天关联条数 32 | 33 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply plugin: 'kotlin-android' 26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 27 | 28 | android { 29 | compileSdkVersion flutter.compileSdkVersion 30 | ndkVersion flutter.ndkVersion 31 | 32 | compileOptions { 33 | sourceCompatibility JavaVersion.VERSION_1_8 34 | targetCompatibility JavaVersion.VERSION_1_8 35 | } 36 | 37 | kotlinOptions { 38 | jvmTarget = '1.8' 39 | } 40 | 41 | sourceSets { 42 | main.java.srcDirs += 'src/main/kotlin' 43 | } 44 | 45 | defaultConfig { 46 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 47 | applicationId "com.gstory.chatgpt_app" 48 | // You can update the following values to match your application needs. 49 | // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. 50 | minSdkVersion flutter.minSdkVersion 51 | targetSdkVersion flutter.targetSdkVersion 52 | versionCode flutterVersionCode.toInteger() 53 | versionName flutterVersionName 54 | } 55 | 56 | buildTypes { 57 | release { 58 | // TODO: Add your own signing config for the release build. 59 | // Signing with the debug keys for now, so `flutter run --release` works. 60 | signingConfig signingConfigs.debug 61 | } 62 | } 63 | } 64 | 65 | flutter { 66 | source '../..' 67 | } 68 | 69 | dependencies { 70 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 71 | } 72 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 8 | 16 | 20 | 24 | 25 | 26 | 27 | 28 | 29 | 31 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/gstory/chatgpt_app/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.gstory.chatgpt_app 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/android/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.7.10' 3 | repositories { 4 | google() 5 | mavenCentral() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:7.2.0' 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | } 12 | } 13 | 14 | allprojects { 15 | repositories { 16 | google() 17 | mavenCentral() 18 | } 19 | } 20 | 21 | rootProject.buildDir = '../build' 22 | subprojects { 23 | project.buildDir = "${rootProject.buildDir}/${project.name}" 24 | } 25 | subprojects { 26 | project.evaluationDependsOn(':app') 27 | } 28 | 29 | task clean(type: Delete) { 30 | delete rootProject.buildDir 31 | } 32 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/logo_chatgpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/assets/images/logo_chatgpt.png -------------------------------------------------------------------------------- /assets/images/logo_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/assets/images/logo_system.png -------------------------------------------------------------------------------- /assets/images/logo_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/assets/images/logo_user.png -------------------------------------------------------------------------------- /docs/chat_desktop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/docs/chat_desktop.gif -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '11.0' 3 | 4 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency. 5 | ENV['COCOAPODS_DISABLE_STATS'] = 'true' 6 | 7 | project 'Runner', { 8 | 'Debug' => :debug, 9 | 'Profile' => :release, 10 | 'Release' => :release, 11 | } 12 | 13 | def flutter_root 14 | generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) 15 | unless File.exist?(generated_xcode_build_settings_path) 16 | raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" 17 | end 18 | 19 | File.foreach(generated_xcode_build_settings_path) do |line| 20 | matches = line.match(/FLUTTER_ROOT\=(.*)/) 21 | return matches[1].strip if matches 22 | end 23 | raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" 24 | end 25 | 26 | require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) 27 | 28 | flutter_ios_podfile_setup 29 | 30 | target 'Runner' do 31 | use_frameworks! 32 | use_modular_headers! 33 | 34 | flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) 35 | end 36 | 37 | post_install do |installer| 38 | installer.pods_project.targets.each do |target| 39 | flutter_additional_ios_build_settings(target) 40 | end 41 | end 42 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 41 | 42 | 52 | 54 | 60 | 61 | 62 | 63 | 69 | 71 | 77 | 78 | 79 | 80 | 82 | 83 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "size": "20x20", 5 | "idiom": "iphone", 6 | "filename": "icon-20@2x.png", 7 | "scale": "2x" 8 | }, 9 | { 10 | "size": "20x20", 11 | "idiom": "iphone", 12 | "filename": "icon-20@3x.png", 13 | "scale": "3x" 14 | }, 15 | { 16 | "size": "29x29", 17 | "idiom": "iphone", 18 | "filename": "icon-29.png", 19 | "scale": "1x" 20 | }, 21 | { 22 | "size": "29x29", 23 | "idiom": "iphone", 24 | "filename": "icon-29@2x.png", 25 | "scale": "2x" 26 | }, 27 | { 28 | "size": "29x29", 29 | "idiom": "iphone", 30 | "filename": "icon-29@3x.png", 31 | "scale": "3x" 32 | }, 33 | { 34 | "size": "40x40", 35 | "idiom": "iphone", 36 | "filename": "icon-40@2x.png", 37 | "scale": "2x" 38 | }, 39 | { 40 | "size": "40x40", 41 | "idiom": "iphone", 42 | "filename": "icon-40@3x.png", 43 | "scale": "3x" 44 | }, 45 | { 46 | "size": "60x60", 47 | "idiom": "iphone", 48 | "filename": "icon-60@2x.png", 49 | "scale": "2x" 50 | }, 51 | { 52 | "size": "60x60", 53 | "idiom": "iphone", 54 | "filename": "icon-60@3x.png", 55 | "scale": "3x" 56 | }, 57 | { 58 | "size": "20x20", 59 | "idiom": "ipad", 60 | "filename": "icon-20-ipad.png", 61 | "scale": "1x" 62 | }, 63 | { 64 | "size": "20x20", 65 | "idiom": "ipad", 66 | "filename": "icon-20@2x-ipad.png", 67 | "scale": "2x" 68 | }, 69 | { 70 | "size": "29x29", 71 | "idiom": "ipad", 72 | "filename": "icon-29-ipad.png", 73 | "scale": "1x" 74 | }, 75 | { 76 | "size": "29x29", 77 | "idiom": "ipad", 78 | "filename": "icon-29@2x-ipad.png", 79 | "scale": "2x" 80 | }, 81 | { 82 | "size": "40x40", 83 | "idiom": "ipad", 84 | "filename": "icon-40.png", 85 | "scale": "1x" 86 | }, 87 | { 88 | "size": "40x40", 89 | "idiom": "ipad", 90 | "filename": "icon-40@2x.png", 91 | "scale": "2x" 92 | }, 93 | { 94 | "size": "76x76", 95 | "idiom": "ipad", 96 | "filename": "icon-76.png", 97 | "scale": "1x" 98 | }, 99 | { 100 | "size": "76x76", 101 | "idiom": "ipad", 102 | "filename": "icon-76@2x.png", 103 | "scale": "2x" 104 | }, 105 | { 106 | "size": "83.5x83.5", 107 | "idiom": "ipad", 108 | "filename": "icon-83.5@2x.png", 109 | "scale": "2x" 110 | }, 111 | { 112 | "size": "1024x1024", 113 | "idiom": "ios-marketing", 114 | "filename": "icon-1024.png", 115 | "scale": "1x" 116 | } 117 | ], 118 | "info": { 119 | "version": 1, 120 | "author": "icon.wuruihong.com" 121 | } 122 | } -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleDisplayName 8 | ChatGPT 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | chatgpt_app 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 | NSAppTransportSecurity 51 | 52 | NSAllowsArbitraryLoads 53 | 54 | NSAllowsArbitraryLoadsForMedia 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/config/global_keys.dart: -------------------------------------------------------------------------------- 1 | /// @Author: gstory 2 | /// @CreateDate: 2023/3/17 12:04 3 | /// @Email gstory0404@gmail.com 4 | /// @Description: 全局变量 5 | 6 | class LanguageKey{ 7 | static const String languageKey = "language"; 8 | static const String auto = "auto"; 9 | static const String en = "en"; 10 | static const String zh = "zh"; 11 | } 12 | -------------------------------------------------------------------------------- /lib/lang/en_US.dart: -------------------------------------------------------------------------------- 1 | import 'package:chatgpt_app/lang/strings.dart'; 2 | 3 | /// @Author: gstory 4 | /// @CreateDate: 2023/3/17 11:57 5 | /// @Email gstory0404@gmail.com 6 | /// @Description: dart类作用描述 7 | 8 | const Map en_US = { 9 | Strings.appName: 'ChatGPT', 10 | Strings.chat: 'Chat', 11 | Strings.image: 'Image', 12 | Strings.setting: 'Setting', 13 | Strings.role: 'Role', 14 | Strings.send: 'send', 15 | Strings.emptyKey: 'Please set ChatGPT Key first', 16 | Strings.emptyContent: 'Send information cannot be empty', 17 | Strings.setChatGPT: 'ChatGPT Settings', 18 | Strings.setKey: 'Key', 19 | Strings.setMaxSize: 'Max tokens', 20 | Strings.setMaxContent: 'Max Content', 21 | Strings.setMaxSizeTip: 'Please enter the maximum number of characters', 22 | Strings.setMaxContentTip: 'Please enter the maximum number of contexts', 23 | Strings.language: 'Language', 24 | Strings.aboutApp: 'About App', 25 | Strings.cancel: 'Cancel', 26 | Strings.submit: 'Submit', 27 | Strings.setKeyTip: 'Please enter ChatGPT Key', 28 | Strings.appHome: 'App Home', 29 | Strings.appPact: 'App Pact', 30 | Strings.chinese: 'Chinese', 31 | Strings.english: 'English', 32 | }; -------------------------------------------------------------------------------- /lib/lang/strings.dart: -------------------------------------------------------------------------------- 1 | /// @Author: gstory 2 | /// @CreateDate: 2023/3/17 11:59 3 | /// @Email gstory0404@gmail.com 4 | /// @Description: dart类作用描述 5 | 6 | class Strings{ 7 | //app名称 8 | static const String appName = "appName"; 9 | //聊天 10 | static const String chat = "chat"; 11 | //图片 12 | static const String image = "image"; 13 | //我的 14 | static const String setting = "setting"; 15 | //角色 16 | static const String role = "role"; 17 | //发送 18 | static const String send = "send"; 19 | //ChatGPT key未设置 20 | static const String emptyKey = "emptyKey"; 21 | //发送信息空 22 | static const String emptyContent = "emptyContent"; 23 | //chatgpt设置 24 | static const String setChatGPT = "setChatGPT"; 25 | //chatgpt设置key 26 | static const String setKey = "setKey"; 27 | //chatgpt设置最大字符 28 | static const String setMaxSize = "setMaxSize"; 29 | //chatgpt设置最大上下文 30 | static const String setMaxContent = "setMaxContent"; 31 | //语言 32 | static const String aboutApp = "aboutApp"; 33 | //关于app 34 | static const String language = "language"; 35 | //取消 36 | static const String cancel = "cancel"; 37 | //确定 38 | static const String submit = "submit"; 39 | //请输入chatgpot key 40 | static const String setKeyTip = "setKeyTip"; 41 | //请输入字符数 42 | static const String setMaxSizeTip = "setMaxSizeTip"; 43 | //请输入上下文数 44 | static const String setMaxContentTip = "setMaxContentTip"; 45 | //app主页 46 | static const String appHome = "appHome"; 47 | //app主页 48 | static const String appPact = "appPact"; 49 | //中文 50 | static const String chinese = "chinese"; 51 | //英语 52 | static const String english = "english"; 53 | } -------------------------------------------------------------------------------- /lib/lang/translation_service.dart: -------------------------------------------------------------------------------- 1 | import 'dart:ui'; 2 | 3 | import 'package:chatgpt_app/lang/zh_CN.dart'; 4 | import 'package:chatgpt_app/utils/language_util.dart'; 5 | import 'package:get/get.dart'; 6 | 7 | import 'en_US.dart'; 8 | 9 | /// @Author: gstory 10 | /// @CreateDate: 2023/3/17 11:58 11 | /// @Email gstory0404@gmail.com 12 | /// @Description: dart类作用描述 13 | 14 | class TranslationService extends Translations { 15 | 16 | static Locale? get locale => LanguageUtil.getLanguageLocale(LanguageUtil.getLanguage()); 17 | 18 | static const fallbackLocale = Locale('zh', 'CN'); 19 | 20 | @override 21 | Map> get keys => { 22 | 'en_US': en_US, 23 | 'zh_CN': zh_CN, 24 | }; 25 | } 26 | -------------------------------------------------------------------------------- /lib/lang/zh_CN.dart: -------------------------------------------------------------------------------- 1 | import 'package:chatgpt_app/lang/strings.dart'; 2 | 3 | /// @Author: gstory 4 | /// @CreateDate: 2023/3/17 12:00 5 | /// @Email gstory0404@gmail.com 6 | /// @Description: dart类作用描述 7 | 8 | 9 | const Map zh_CN = { 10 | Strings.appName: 'ChatGPT', 11 | Strings.chat: '聊天', 12 | Strings.image: '图片', 13 | Strings.setting: '设置', 14 | Strings.role: '角色', 15 | Strings.send: '发送', 16 | Strings.emptyKey: '请先设置ChatGPT Key', 17 | Strings.emptyContent: '发送信息不能为空', 18 | Strings.language: '语言', 19 | Strings.setChatGPT: 'ChatGPT设置', 20 | Strings.setKey: 'Key', 21 | Strings.setMaxSize: '字符数', 22 | Strings.setMaxContent: '上下文关联数', 23 | Strings.setMaxSizeTip: '请输入最大字符数', 24 | Strings.setMaxContentTip: '请输入最大上下文关联数', 25 | Strings.aboutApp: '关于App', 26 | Strings.cancel: '取消', 27 | Strings.submit: '确定', 28 | Strings.setKeyTip: '请输入ChatGPT Key', 29 | Strings.appHome: '开源主页', 30 | Strings.appPact: '开源协议', 31 | Strings.chinese: '中文', 32 | Strings.english: '英文', 33 | }; -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'dart:io'; 2 | 3 | import 'package:chatgpt_app/lang/translation_service.dart'; 4 | import 'package:chatgpt_app/page/index/index_page.dart'; 5 | import 'package:flutter/material.dart'; 6 | import 'package:flutter/services.dart'; 7 | import 'package:flutter_localizations/flutter_localizations.dart'; 8 | import 'package:get/get.dart'; 9 | import 'package:window_manager/window_manager.dart'; 10 | 11 | import 'manager/sp_manager.dart'; 12 | import 'page/routes/app_pages.dart'; 13 | 14 | 15 | void main() { 16 | WidgetsFlutterBinding.ensureInitialized(); 17 | initWindow(); 18 | SPManager.instance.init(); 19 | runApp(const MyApp()); 20 | } 21 | 22 | void initWindow() async { 23 | if (Platform.isFuchsia || 24 | Platform.isLinux || 25 | Platform.isMacOS || 26 | Platform.isWindows) { 27 | await windowManager.ensureInitialized(); 28 | windowManager.waitUntilReadyToShow().then((_) async { 29 | // 隐藏窗口标题栏 30 | await windowManager.setTitleBarStyle(TitleBarStyle.normal); 31 | await windowManager.setSize(const Size(800, 880)); 32 | // await windowManager.setMaximumSize(const Size(1000, 1000)); 33 | await windowManager.setMinimumSize(const Size(540, 880)); 34 | await windowManager.center(); 35 | await windowManager.show(); 36 | await windowManager.setSkipTaskbar(false); 37 | }); 38 | } else if (Platform.isAndroid) { 39 | SystemUiOverlayStyle systemUiOverlayStyle = 40 | const SystemUiOverlayStyle(statusBarColor: Colors.transparent); 41 | SystemChrome.setSystemUIOverlayStyle(systemUiOverlayStyle); 42 | } 43 | } 44 | 45 | class MyApp extends StatelessWidget { 46 | const MyApp({super.key}); 47 | 48 | @override 49 | Widget build(BuildContext context) { 50 | return GetMaterialApp( 51 | theme: ThemeData( 52 | primaryColor: Colors.tealAccent, 53 | ), 54 | //语言 55 | locale: TranslationService.locale, 56 | fallbackLocale: TranslationService.fallbackLocale, 57 | translations: TranslationService(), 58 | debugShowCheckedModeBanner:false, 59 | //路由 60 | initialRoute: AppPages.INITIAL, 61 | getPages: AppPages.routes, 62 | ); 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /lib/manager/sp_manager.dart: -------------------------------------------------------------------------------- 1 | import 'package:chatgpt_app/utils/language_util.dart'; 2 | import 'package:shared_preferences/shared_preferences.dart'; 3 | 4 | import '../config/global_keys.dart'; 5 | 6 | /// @Author: gstory 7 | /// @CreateDate: 2023/3/17 12:03 8 | /// @Email gstory0404@gmail.com 9 | /// @Description: dart类作用描述 10 | 11 | class SPManager { 12 | factory SPManager() => _getInstance(); 13 | 14 | static SPManager get instance => _getInstance(); 15 | static SPManager? _instance; 16 | 17 | static SPManager _getInstance() { 18 | _instance ??= SPManager._internal(); 19 | return _instance!; 20 | } 21 | 22 | SPManager._internal() { 23 | init(); 24 | } 25 | 26 | SharedPreferences? _preferences; 27 | 28 | Future init() async { 29 | _preferences = await SharedPreferences.getInstance(); 30 | //sp异步的 可能会导致语言没有第一时间更新 所有初始化完成后重新更新一次 31 | LanguageUtil.updateLanguage(); 32 | } 33 | 34 | ///保存数据 35 | SPManager save(String key, dynamic value) { 36 | print("SP save $key --> $value"); 37 | switch (value.runtimeType) { 38 | case int: 39 | _preferences?.setInt(key, value); 40 | break; 41 | case bool: 42 | _preferences?.setBool(key, value); 43 | break; 44 | case double: 45 | _preferences?.setDouble(key, value); 46 | break; 47 | case String: 48 | _preferences?.setString(key, value); 49 | break; 50 | case List: 51 | _preferences?.setStringList(key, value); 52 | break; 53 | default: 54 | _preferences?.setString(key, value.toString()); 55 | break; 56 | } 57 | return this; 58 | } 59 | 60 | ///获取数据 61 | T get(String key, dynamic defaultValue) { 62 | switch (T) { 63 | case int: 64 | return _preferences?.getInt(key) ?? defaultValue; 65 | case bool: 66 | return _preferences?.getBool(key) ?? defaultValue; 67 | case double: 68 | return _preferences?.getDouble(key) ?? defaultValue; 69 | case String: 70 | return _preferences?.getString(key) ?? defaultValue; 71 | case List: 72 | return _preferences?.getStringList(key) ?? defaultValue; 73 | } 74 | return _preferences?.get(key) ?? defaultValue; 75 | } 76 | 77 | ///删除key 78 | Future remove(String key) async { 79 | return await _preferences?.remove(key) ?? false; 80 | } 81 | 82 | ///清空 83 | Future clear() async { 84 | return await _preferences?.clear() ?? false; 85 | } 86 | 87 | ///获取chatgpt key 88 | String getChatGptKey() { 89 | return get("chatGptKey", ""); 90 | } 91 | 92 | ///保存chatgpt key 93 | void saveChatGptKey(String? key) { 94 | save("chatGptKey", key); 95 | } 96 | 97 | ///获取chatgpt 最大字符 98 | int getChatMaxToken() { 99 | return get("chatMaxToken", 2048); 100 | } 101 | 102 | ///保存chatgpt 最大字符 103 | void saveGptMaxToken(int token) { 104 | save("chatMaxToken", token); 105 | } 106 | 107 | ///获取chatgpt 最大上下文 108 | int getChatMaxContext() { 109 | return get("chatMaxContext", 2); 110 | } 111 | 112 | ///保存chatgpt key 113 | void saveChatMaxContext(int context) { 114 | save("chatMaxContext", context); 115 | } 116 | 117 | ///保存语言 118 | void saveLanguage(String? lan) { 119 | save("language", lan); 120 | } 121 | 122 | ///获取语言 123 | String getLanguage() { 124 | print("获取语言 ${_preferences?.getString("language")}"); 125 | return get("language", LanguageKey.auto); 126 | } 127 | } 128 | -------------------------------------------------------------------------------- /lib/page/bean/chatgpt_entity.dart: -------------------------------------------------------------------------------- 1 | /// @Author: gstory 2 | /// @CreateDate: 2023/2/13 12:12 3 | /// @Email gstory0404@gmail.com 4 | /// @Description: dart类作用描述 5 | 6 | class ChatgptEntity { 7 | String? id; 8 | String? object; 9 | int? created; 10 | String? model; 11 | Usage? usage; 12 | List? choices; 13 | ChatError? error; 14 | 15 | ChatgptEntity( 16 | {this.id, 17 | this.object, 18 | this.created, 19 | this.model, 20 | this.usage, 21 | this.choices, 22 | this.error}); 23 | 24 | ChatgptEntity.fromJson(Map json) { 25 | id = json['id']; 26 | object = json['object']; 27 | created = json['created']; 28 | model = json['model']; 29 | usage = json['usage'] != null ? Usage.fromJson(json['usage']) : null; 30 | if (json['choices'] != null) { 31 | choices = []; 32 | json['choices'].forEach((v) { 33 | choices!.add(Choices.fromJson(v)); 34 | }); 35 | } 36 | if(json['error'] != null){ 37 | error = ChatError.fromJson(json['error']); 38 | } 39 | } 40 | 41 | Map toJson() { 42 | final Map data = new Map(); 43 | data['id'] = this.id; 44 | data['object'] = this.object; 45 | data['created'] = this.created; 46 | data['model'] = this.model; 47 | if (this.usage != null) { 48 | data['usage'] = this.usage!.toJson(); 49 | } 50 | if (this.choices != null) { 51 | data['choices'] = this.choices!.map((v) => v.toJson()).toList(); 52 | } 53 | if (this.error != null) { 54 | data['error'] = this.error!.toJson(); 55 | } 56 | return data; 57 | } 58 | } 59 | 60 | class Usage { 61 | int? promptTokens; 62 | int? completionTokens; 63 | int? totalTokens; 64 | 65 | Usage({this.promptTokens, this.completionTokens, this.totalTokens}); 66 | 67 | Usage.fromJson(Map json) { 68 | promptTokens = json['prompt_tokens']; 69 | completionTokens = json['completion_tokens']; 70 | totalTokens = json['total_tokens']; 71 | } 72 | 73 | Map toJson() { 74 | final Map data = new Map(); 75 | data['prompt_tokens'] = this.promptTokens; 76 | data['completion_tokens'] = this.completionTokens; 77 | data['total_tokens'] = this.totalTokens; 78 | return data; 79 | } 80 | } 81 | 82 | class Choices { 83 | Message? message; 84 | String? finishReason; 85 | int? index; 86 | 87 | Choices({this.message, this.finishReason, this.index}); 88 | 89 | Choices.fromJson(Map json) { 90 | message = 91 | json['message'] != null ? new Message.fromJson(json['message']) : null; 92 | finishReason = json['finish_reason']; 93 | index = json['index']; 94 | } 95 | 96 | Map toJson() { 97 | final Map data = new Map(); 98 | if (this.message != null) { 99 | data['message'] = this.message!.toJson(); 100 | } 101 | data['finish_reason'] = this.finishReason; 102 | data['index'] = this.index; 103 | return data; 104 | } 105 | } 106 | 107 | class Message { 108 | String? role; 109 | String? content; 110 | 111 | Message({this.role, this.content}); 112 | 113 | Message.fromJson(Map json) { 114 | role = json['role']; 115 | content = json['content']; 116 | //剔除第一个换行符 117 | if(content?.startsWith("\n\n") ?? false){ 118 | content?.replaceFirst("\n\n", ""); 119 | } 120 | } 121 | 122 | Map toJson() { 123 | final Map data = new Map(); 124 | data['role'] = this.role; 125 | data['content'] = this.content; 126 | return data; 127 | } 128 | } 129 | 130 | class ChatError { 131 | String? message; 132 | String? type; 133 | String? param; 134 | String? code; 135 | 136 | ChatError({this.message, this.type, this.param, this.code}); 137 | 138 | ChatError.fromJson(Map json) { 139 | message = json['message']; 140 | type = json['type']; 141 | param = json['param']; 142 | code = json['code']; 143 | } 144 | 145 | Map toJson() { 146 | final Map data = new Map(); 147 | data['message'] = this.message; 148 | data['type'] = this.type; 149 | data['param'] = this.param; 150 | data['code'] = this.code; 151 | return data; 152 | } 153 | } 154 | -------------------------------------------------------------------------------- /lib/page/bean/history_bean.dart: -------------------------------------------------------------------------------- 1 | import 'package:chatgpt_app/page/bean/chatgpt_entity.dart'; 2 | 3 | /// @Author: gstory 4 | /// @CreateDate: 2023/2/13 14:36 5 | /// @Email gstory0404@gmail.com 6 | /// @Description: dart类作用描述 7 | /// 8 | 9 | class ChatType{ 10 | static String CHAT = "chat"; 11 | static String IMAGE = "image"; 12 | } 13 | 14 | class HistoryBean{ 15 | int date; 16 | //chat聊天 image图片 17 | String type; 18 | Message message; 19 | 20 | HistoryBean({required this.date,required this.type,required this.message}); 21 | } -------------------------------------------------------------------------------- /lib/page/chat/chat_ctr.dart: -------------------------------------------------------------------------------- 1 | import 'package:chatgpt_app/manager/sp_manager.dart'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:get/get.dart'; 4 | 5 | import '../../lang/strings.dart'; 6 | import '../../utils/net_util.dart'; 7 | import '../../utils/toast_util.dart'; 8 | import '../bean/chatgpt_entity.dart'; 9 | import '../bean/history_bean.dart'; 10 | import 'dart:convert' as convert; 11 | 12 | /// @Author: gstory 13 | /// @CreateDate: 2023/3/17 12:28 14 | /// @Email gstory0404@gmail.com 15 | /// @Description: dart类作用描述 16 | 17 | class ChatCtr extends GetxController { 18 | final inputController = TextEditingController(); 19 | final listController = ScrollController(); 20 | 21 | List historyList = []; 22 | 23 | //角色扮演 24 | String system = ""; 25 | 26 | //是否请求中 27 | bool isLoading = false; 28 | 29 | Future sendMsg() async { 30 | //检查是否存在key 31 | if (SPManager.instance.getChatGptKey()?.isEmpty ?? true) { 32 | ToastUtil.showError(Strings.emptyKey.tr); 33 | return; 34 | } 35 | //检查是否有内容 36 | var text = inputController.value.text.trim(); 37 | if (text.isEmpty) { 38 | ToastUtil.showError(Strings.emptyContent.tr); 39 | return; 40 | } 41 | 42 | //角色扮演 43 | if (text.startsWith("@system ")) { 44 | system = text.replaceFirst("@system ", ""); 45 | inputController.clear(); 46 | update(); 47 | return; 48 | //清理角色 49 | } else if (text.startsWith("@exit")) { 50 | system = ""; 51 | update(); 52 | inputController.clear(); 53 | return; 54 | //对话 55 | } else { 56 | historyList.insert( 57 | 0, 58 | HistoryBean( 59 | date: DateTime.now().millisecondsSinceEpoch, 60 | type: ChatType.CHAT, 61 | message: Message(role: "user", content: text))); 62 | inputController.clear(); 63 | } 64 | listController.animateTo(0.0, 65 | duration: const Duration(milliseconds: 1000), curve: Curves.ease); 66 | update(); 67 | List messages = []; 68 | for (int i = 0; i < historyList.length; i++) { 69 | if (historyList[i].type == ChatType.CHAT && messages.length < SPManager.instance.getChatMaxContext()) { 70 | messages.insert(0, historyList[i].message); 71 | } else { 72 | continue; 73 | } 74 | } 75 | if (system.isNotEmpty) { 76 | messages.insert(0, Message(role: "system", content: system)); 77 | } 78 | getChat(messages); 79 | } 80 | 81 | //请求chat 82 | void getChat(List messages) { 83 | isLoading = true; 84 | NetUtils.sendMessage(messages, (value) { 85 | ChatgptEntity entity = 86 | ChatgptEntity.fromJson(convert.jsonDecode(value.toString())); 87 | isLoading = false; 88 | if (entity.error != null) { 89 | ToastUtil.showError("${entity.error?.code} ${entity.error?.message}"); 90 | } else { 91 | historyList.insert( 92 | 0, 93 | HistoryBean( 94 | date: DateTime.now().millisecondsSinceEpoch, 95 | type: ChatType.CHAT, 96 | message: entity.choices!.first.message!)); 97 | listController.animateTo(0.0, 98 | duration: const Duration(milliseconds: 1000), curve: Curves.ease); 99 | update(); 100 | } 101 | }, (error) { 102 | // print(entity); 103 | if(error != null){ 104 | ChatgptEntity entity = 105 | ChatgptEntity.fromJson(convert.jsonDecode(error.toString())); 106 | isLoading = false; 107 | ToastUtil.showError(entity.error?.message ?? ""); 108 | } 109 | }); 110 | } 111 | } 112 | -------------------------------------------------------------------------------- /lib/page/chat/chat_page.dart: -------------------------------------------------------------------------------- 1 | import 'dart:io'; 2 | 3 | import 'package:chatgpt_app/lang/strings.dart'; 4 | import 'package:chatgpt_app/page/bean/history_bean.dart'; 5 | import 'package:chatgpt_app/page/chat/chat_ctr.dart'; 6 | import 'package:chatgpt_app/page/chat/chat_receive_item.dart'; 7 | import 'package:chatgpt_app/page/chat/chat_send_item.dart'; 8 | import 'package:flutter/material.dart'; 9 | import 'package:get/get.dart'; 10 | 11 | /// @Author: gstory 12 | /// @CreateDate: 2023/2/13 10:46 13 | /// @Email gstory0404@gmail.com 14 | /// @Description: 聊天界面 15 | 16 | class ChatPage extends StatelessWidget { 17 | @override 18 | Widget build(BuildContext context) { 19 | return Scaffold( 20 | appBar: (Platform.isAndroid || Platform.isIOS) 21 | ? AppBar( 22 | title: Text(Strings.chat.tr), 23 | centerTitle: true, 24 | ) 25 | : null, 26 | body: GetBuilder( 27 | init: Get.put(ChatCtr()), 28 | builder: (controller) { 29 | return Container( 30 | child: Column( 31 | children: [ 32 | controller.system.isEmpty 33 | ? Container() 34 | : Container( 35 | margin: const EdgeInsets.symmetric( 36 | horizontal: 10, vertical: 4), 37 | alignment: Alignment.centerLeft, 38 | padding: EdgeInsets.all(10), 39 | //边框设置 40 | decoration: BoxDecoration( 41 | color: Colors.grey.shade100, 42 | //设置四周圆角 角度 43 | borderRadius: 44 | const BorderRadius.all(Radius.circular(10.0)), 45 | //设置四周边框 46 | border: Border.all( 47 | width: 1, color: Colors.grey.shade100), 48 | ), 49 | child: Text( 50 | "${Strings.role.tr} : ${controller.system}", 51 | style: TextStyle(fontSize: 16), 52 | ), 53 | ), 54 | Expanded( 55 | child: Container( 56 | child: ListView.builder( 57 | itemCount: controller.historyList.length, 58 | reverse: true, 59 | controller: controller.listController, 60 | itemBuilder: (BuildContext context, int index) { 61 | if (controller.historyList[index].message.role == 62 | "user") { 63 | return ChatSendItem(controller.historyList[index]); 64 | } else if (controller 65 | .historyList[index].message.role == 66 | "assistant") { 67 | return ChatReceiveItem( 68 | controller.historyList[index]); 69 | } else if (controller 70 | .historyList[index].message.role == 71 | "system") { 72 | return ChatReceiveItem( 73 | controller.historyList[index]); 74 | } 75 | }, 76 | ), 77 | ), 78 | ), 79 | Container( 80 | height: 1, 81 | color: Colors.black12, 82 | ), 83 | Container( 84 | padding: const EdgeInsets.symmetric( 85 | vertical: 10, horizontal: 20), 86 | child: Row( 87 | crossAxisAlignment: CrossAxisAlignment.center, 88 | mainAxisAlignment: MainAxisAlignment.center, 89 | children: [ 90 | Expanded( 91 | child: Container( 92 | child: TextField( 93 | maxLines: 5, 94 | minLines: 1, 95 | controller: controller.inputController, 96 | style: const TextStyle( 97 | fontSize: 16, 98 | ), 99 | decoration: const InputDecoration( 100 | hintText: '请输入发送信息', 101 | border: InputBorder.none, 102 | ), 103 | cursorWidth: 2.0, 104 | ), 105 | ), 106 | ), 107 | ElevatedButton( 108 | onPressed: controller.sendMsg, 109 | style: ElevatedButton.styleFrom( 110 | primary: Colors.teal.shade50, 111 | elevation: 1, 112 | minimumSize: const Size(0, 40), 113 | shape: const StadiumBorder(), 114 | padding: const EdgeInsets.symmetric(horizontal: 24), 115 | side: BorderSide( 116 | color: Colors.teal.shade50, width: 1), 117 | ), 118 | child: Text( 119 | Strings.send.tr, 120 | style: const TextStyle( 121 | fontSize: 16, color: Colors.black87), 122 | ), 123 | ), 124 | ], 125 | ), 126 | ), 127 | ], 128 | ), 129 | ); 130 | }), 131 | ); 132 | } 133 | } 134 | -------------------------------------------------------------------------------- /lib/page/chat/chat_receive_item.dart: -------------------------------------------------------------------------------- 1 | import 'package:chatgpt_app/page/bean/history_bean.dart'; 2 | import 'package:chatgpt_app/page/chat/chat_text.dart'; 3 | import 'package:flutter/material.dart'; 4 | 5 | /// @Author: gstory 6 | /// @CreateDate: 2023/2/13 15:41 7 | /// @Email gstory0404@gmail.com 8 | /// @Description: dart类作用描述 9 | 10 | class ChatReceiveItem extends StatefulWidget { 11 | HistoryBean historyBean; 12 | 13 | ChatReceiveItem(this.historyBean, {Key? key}) : super(key: key); 14 | 15 | @override 16 | State createState() => _ChatReceiveItemState(); 17 | } 18 | 19 | class _ChatReceiveItemState extends State 20 | with SingleTickerProviderStateMixin { 21 | /// 持续时间为10秒的动画控制器 22 | late final AnimationController _controller; 23 | 24 | late final Animation _animation; 25 | 26 | @override 27 | void initState() { 28 | super.initState(); 29 | _controller = AnimationController( 30 | vsync: this, 31 | duration: Duration( 32 | milliseconds: widget.historyBean.message.content!.length * 10), 33 | )..forward(); 34 | _animation = TextTween(end: widget.historyBean.message.content ?? "") 35 | .animate(_controller); 36 | } 37 | 38 | @override 39 | Widget build(BuildContext context) { 40 | print(widget.historyBean.message.toJson()); 41 | return Container( 42 | alignment: AlignmentDirectional.centerStart, 43 | margin: const EdgeInsets.symmetric(vertical: 10, horizontal: 20), 44 | child: Column( 45 | crossAxisAlignment: CrossAxisAlignment.start, 46 | children: [ 47 | Row( 48 | crossAxisAlignment: CrossAxisAlignment.start, 49 | children: [ 50 | Image.asset( 51 | widget.historyBean.message.role == "system" ? "assets/images/logo_system.png" : "assets/images/logo_chatgpt.png", 52 | width: 50, 53 | height: 50, 54 | ), 55 | Expanded( 56 | child: Column( 57 | crossAxisAlignment: CrossAxisAlignment.start, 58 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 59 | children: [ 60 | Text( 61 | widget.historyBean.message.role ?? "assistant", 62 | style: const TextStyle( 63 | fontSize: 14, fontWeight: FontWeight.bold), 64 | ), 65 | Container( 66 | height: 3, 67 | ), 68 | Text( 69 | "${DateTime.fromMillisecondsSinceEpoch(widget.historyBean.date)}", 70 | style: const TextStyle(fontSize: 10), 71 | ), 72 | Container( 73 | margin: const EdgeInsets.only(top: 10), 74 | padding: EdgeInsets.all(10), 75 | //边框设置 76 | decoration: BoxDecoration( 77 | color: Colors.amber.shade50, 78 | //设置四周圆角 角度 79 | borderRadius: 80 | const BorderRadius.all(Radius.circular(10.0)), 81 | //设置四周边框 82 | border: 83 | Border.all(width: 1, color: Colors.amber.shade50), 84 | ), 85 | child: widget.historyBean.date > 86 | DateTime.now().millisecondsSinceEpoch - 500 87 | ? _animationText() 88 | : ChatText(widget.historyBean.message.content ?? ""), 89 | ), 90 | ], 91 | ), 92 | ), 93 | ], 94 | ), 95 | ], 96 | ), 97 | ); 98 | } 99 | 100 | _animationText() { 101 | return AnimatedBuilder( 102 | animation: _animation, 103 | builder: (context, child) { 104 | return ChatText( 105 | _animation.value, 106 | ); 107 | }, 108 | ); 109 | } 110 | 111 | @override 112 | void dispose() { 113 | _controller.dispose(); 114 | super.dispose(); 115 | } 116 | } 117 | 118 | class TextTween extends Tween { 119 | TextTween({String end = ''}) : super(begin: '', end: end); 120 | 121 | @override 122 | String lerp(double t) { 123 | var cutoff = (end!.length * t).round(); 124 | return end!.substring(0, cutoff); 125 | } 126 | } 127 | -------------------------------------------------------------------------------- /lib/page/chat/chat_send_item.dart: -------------------------------------------------------------------------------- 1 | import 'package:chatgpt_app/page/bean/history_bean.dart'; 2 | import 'package:chatgpt_app/page/chat/chat_text.dart'; 3 | import 'package:flutter/material.dart'; 4 | 5 | /// @Author: gstory 6 | /// @CreateDate: 2023/2/13 12:04 7 | /// @Email gstory0404@gmail.com 8 | /// @Description: dart类作用描述 9 | 10 | class ChatSendItem extends StatelessWidget { 11 | HistoryBean historyBean; 12 | 13 | ChatSendItem(this.historyBean, {Key? key}) : super(key: key); 14 | 15 | @override 16 | Widget build(BuildContext context) { 17 | return Container( 18 | alignment: AlignmentDirectional.centerEnd, 19 | margin: const EdgeInsets.symmetric(vertical: 10, horizontal: 20), 20 | child: Column( 21 | crossAxisAlignment: CrossAxisAlignment.end, 22 | children: [ 23 | Row( 24 | mainAxisAlignment: MainAxisAlignment.end, 25 | crossAxisAlignment: CrossAxisAlignment.start, 26 | children: [ 27 | Expanded( 28 | child: Column( 29 | crossAxisAlignment: CrossAxisAlignment.end, 30 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 31 | children: [ 32 | Text( 33 | historyBean.message.role ?? "user", 34 | style: const TextStyle( 35 | fontSize: 14, fontWeight: FontWeight.bold), 36 | ), 37 | Container( 38 | height: 3, 39 | ), 40 | Text( 41 | "${DateTime.fromMillisecondsSinceEpoch(historyBean.date)}", 42 | style: const TextStyle(fontSize: 10), 43 | ), 44 | Container( 45 | margin: const EdgeInsets.only(top: 10), 46 | padding: EdgeInsets.all(10), 47 | //边框设置 48 | decoration: BoxDecoration( 49 | color: Colors.teal.shade50, 50 | //设置四周圆角 角度 51 | borderRadius: 52 | const BorderRadius.all(Radius.circular(10.0)), 53 | //设置四周边框 54 | border: 55 | Border.all(width: 1, color: Colors.teal.shade50), 56 | ), 57 | child: ChatText(historyBean.message.content ?? ""), 58 | ), 59 | ], 60 | ), 61 | ), 62 | Image.asset( 63 | "assets/images/logo_user.png", 64 | width: 50, 65 | height: 50, 66 | ) 67 | ], 68 | ), 69 | ], 70 | ), 71 | ); 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /lib/page/chat/chat_text.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:markdown_widget/widget/markdown.dart'; 3 | 4 | /// @Author: gstory 5 | /// @CreateDate: 2023/2/13 16:53 6 | /// @Email gstory0404@gmail.com 7 | /// @Description: dart类作用描述 8 | 9 | class ChatText extends StatelessWidget { 10 | String text; 11 | 12 | ChatText(this.text,{Key? key}) : super(key: key); 13 | 14 | @override 15 | Widget build(BuildContext context) { 16 | return SelectableText.rich( 17 | TextSpan( 18 | text: text, // default text style 19 | children: const [], 20 | ), 21 | ); 22 | // return MarkdownWidget( 23 | // data: text, 24 | // shrinkWrap: true, 25 | // ); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /lib/page/image/image_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | /// @Author: gstory 4 | /// @CreateDate: 2023/3/14 12:26 5 | /// @Email gstory0404@gmail.com 6 | /// @Description: dart类作用描述 7 | 8 | class ImagePage extends StatefulWidget { 9 | const ImagePage({Key? key}) : super(key: key); 10 | 11 | @override 12 | State createState() => _ImagePageState(); 13 | } 14 | 15 | class _ImagePageState extends State { 16 | @override 17 | Widget build(BuildContext context) { 18 | return Container( 19 | alignment: Alignment.center, 20 | child: Text("开发中。。。"), 21 | ); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lib/page/index/index_ctr.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:get/get.dart'; 3 | 4 | /// @Author: gstory 5 | /// @CreateDate: 2023/3/17 12:13 6 | /// @Email gstory0404@gmail.com 7 | /// @Description: dart类作用描述 8 | 9 | class IndexCtr extends GetxController{ 10 | /// 初始化控制器 11 | late PageController pageController; 12 | 13 | int chooseIndex = 0; 14 | 15 | @override 16 | void onInit() { 17 | super.onInit(); 18 | pageController = PageController( 19 | initialPage: chooseIndex, 20 | keepPage: true, 21 | ); 22 | } 23 | 24 | void changePage(int index){ 25 | chooseIndex = index; 26 | pageController.jumpToPage(chooseIndex); 27 | update(); 28 | } 29 | } -------------------------------------------------------------------------------- /lib/page/index/index_desktop.dart: -------------------------------------------------------------------------------- 1 | import 'package:chatgpt_app/page/chat/chat_page.dart'; 2 | import 'package:chatgpt_app/page/setting/setting_page.dart'; 3 | import 'package:flutter/material.dart'; 4 | import 'package:get/get.dart'; 5 | 6 | import '../../lang/strings.dart'; 7 | import '../image/image_page.dart'; 8 | import 'index_ctr.dart'; 9 | 10 | /// @Author: gstory 11 | /// @CreateDate: 2023/3/14 11:36 12 | /// @Email gstory0404@gmail.com 13 | /// @Description: dart类作用描述 14 | 15 | class IndexDesktop extends StatelessWidget { 16 | @override 17 | Widget build(BuildContext context) { 18 | return Scaffold( 19 | body: GetBuilder( 20 | builder: (controller) { 21 | return Row( 22 | children: [ 23 | NavigationRail( 24 | minWidth: 70, 25 | extended: false, 26 | trailing: Expanded( 27 | child: Align( 28 | alignment: Alignment.bottomCenter, 29 | child: Padding( 30 | padding: EdgeInsets.only(bottom: 20.0), 31 | child: Image.asset( 32 | "assets/images/logo.png", 33 | width: 40, 34 | height: 40, 35 | ), 36 | ), 37 | ), 38 | ), 39 | labelType: NavigationRailLabelType.all, 40 | destinations: [ 41 | NavigationRailDestination( 42 | icon: const Icon(Icons.message_outlined), label: Text(Strings.chat.tr)), 43 | NavigationRailDestination( 44 | icon: const Icon(Icons.image), label: Text(Strings.image.tr)), 45 | NavigationRailDestination( 46 | icon: const Icon(Icons.settings), label: Text(Strings.setting.tr)), 47 | ], 48 | selectedIndex: controller.chooseIndex, 49 | onDestinationSelected: controller.changePage, 50 | ), 51 | Expanded( 52 | child: PageView.builder( 53 | physics: const NeverScrollableScrollPhysics(), 54 | controller: controller.pageController, 55 | itemBuilder: (BuildContext context, int index) { 56 | switch (index) { 57 | //聊天 58 | case 0: 59 | return ChatPage(); 60 | //图片 61 | case 1: 62 | return ImagePage(); 63 | //设置 64 | case 2: 65 | return SettingPage(); 66 | } 67 | }, 68 | ), 69 | ), 70 | ], 71 | ); 72 | }, 73 | ), 74 | ); 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /lib/page/index/index_page.dart: -------------------------------------------------------------------------------- 1 | import 'dart:io'; 2 | import 'package:chatgpt_app/page/chat/chat_page.dart'; 3 | import 'package:chatgpt_app/page/index/index_desktop.dart'; 4 | import 'package:chatgpt_app/page/index/index_phone.dart'; 5 | import 'package:chatgpt_app/utils/toast_util.dart'; 6 | import 'package:flutter/material.dart'; 7 | import 'package:url_launcher/url_launcher.dart'; 8 | 9 | /// @Author: gstory 10 | /// @CreateDate: 2023/2/14 09:11 11 | /// @Email gstory0404@gmail.com 12 | /// @Description: dart类作用描述 13 | 14 | class IndexPage extends StatelessWidget { 15 | @override 16 | Widget build(BuildContext context) { 17 | return Scaffold( 18 | body: (Platform.isAndroid || Platform.isIOS) 19 | ? IndexPhone() 20 | : IndexDesktop(), 21 | ); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lib/page/index/index_phone.dart: -------------------------------------------------------------------------------- 1 | import 'package:chatgpt_app/page/index/index_ctr.dart'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:get/get.dart'; 4 | 5 | import '../../lang/strings.dart'; 6 | import '../chat/chat_page.dart'; 7 | import '../image/image_page.dart'; 8 | import '../setting/setting_page.dart'; 9 | 10 | /// @Author: gstory 11 | /// @CreateDate: 2023/3/14 11:57 12 | /// @Email gstory0404@gmail.com 13 | /// @Description: dart类作用描述 14 | 15 | class IndexPhone extends StatelessWidget { 16 | @override 17 | Widget build(BuildContext context) { 18 | return Scaffold( 19 | body: GetBuilder( 20 | builder: (controller) { 21 | return Column( 22 | children: [ 23 | Expanded( 24 | child: PageView.builder( 25 | physics: const NeverScrollableScrollPhysics(), 26 | controller: controller.pageController, 27 | itemBuilder: (BuildContext context, int index) { 28 | switch (index) { 29 | //聊天 30 | case 0: 31 | return ChatPage(); 32 | //图片 33 | case 1: 34 | return ImagePage(); 35 | //设置 36 | case 2: 37 | return SettingPage(); 38 | } 39 | }, 40 | ), 41 | ), 42 | BottomNavigationBar( 43 | items: [ 44 | BottomNavigationBarItem( 45 | icon: const Icon(Icons.message_outlined), 46 | label: Strings.chat.tr), 47 | BottomNavigationBarItem( 48 | icon: const Icon(Icons.image), label: Strings.image.tr), 49 | BottomNavigationBarItem( 50 | icon: const Icon(Icons.settings), 51 | label: Strings.setting.tr), 52 | ], 53 | currentIndex: controller.chooseIndex, 54 | onTap: controller.changePage, 55 | ) 56 | ], 57 | ); 58 | }, 59 | ), 60 | ); 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /lib/page/routes/app_pages.dart: -------------------------------------------------------------------------------- 1 | import 'package:chatgpt_app/page/index/index_page.dart'; 2 | import 'package:get/get.dart'; 3 | 4 | import '../index/index_ctr.dart'; 5 | 6 | /// @Author: gstory 7 | /// @CreateDate: 2023/3/17 12:09 8 | /// @Email gstory0404@gmail.com 9 | /// @Description: dart类作用描述 10 | 11 | class AppPages { 12 | static const INDEX = '/'; 13 | 14 | static const INITIAL = INDEX; 15 | 16 | static final routes = [ 17 | GetPage( 18 | name: INDEX, 19 | page: () => IndexPage(), 20 | binding: BindingsBuilder(() { 21 | Get.lazyPut(() => IndexCtr()); 22 | }), 23 | ), 24 | ]; 25 | } -------------------------------------------------------------------------------- /lib/page/setting/setting_chatgpt_dialog.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter/services.dart'; 3 | import 'package:get/get.dart'; 4 | 5 | import '../../lang/strings.dart'; 6 | import '../../manager/sp_manager.dart'; 7 | import '../../utils/toast_util.dart'; 8 | 9 | /// @Author: gstory 10 | /// @CreateDate: 2023/3/17 16:04 11 | /// @Email gstory0404@gmail.com 12 | /// @Description: dart类作用描述 13 | 14 | class SettingChatGPTDialog extends StatefulWidget { 15 | const SettingChatGPTDialog({Key? key}) : super(key: key); 16 | 17 | @override 18 | State createState() => _SettingKeyDialogState(); 19 | } 20 | 21 | class _SettingKeyDialogState extends State { 22 | TextEditingController keyController = TextEditingController(); 23 | TextEditingController sizeController = TextEditingController(); 24 | TextEditingController contextController = TextEditingController(); 25 | 26 | @override 27 | void initState() { 28 | super.initState(); 29 | keyController.text = SPManager.instance.getChatGptKey(); 30 | sizeController.text = "${SPManager.instance.getChatMaxToken()}"; 31 | contextController.text = "${SPManager.instance.getChatMaxContext()}"; 32 | } 33 | 34 | @override 35 | Widget build(BuildContext context) { 36 | return Container( 37 | child: Column( 38 | mainAxisSize: MainAxisSize.min, 39 | children: [ 40 | //key 41 | Row( 42 | crossAxisAlignment: CrossAxisAlignment.center, 43 | children: [ 44 | Text( 45 | Strings.setKey.tr, 46 | style: const TextStyle(fontSize: 16), 47 | ), 48 | Expanded( 49 | child: Container( 50 | alignment: Alignment.centerRight, 51 | margin: const EdgeInsets.only(left: 10), 52 | child: TextField( 53 | controller: keyController, 54 | textAlign: TextAlign.end, 55 | style: TextStyle(fontSize: 14), 56 | decoration: InputDecoration( 57 | border: InputBorder.none, 58 | hintText: Strings.setKeyTip.tr, 59 | hintStyle: TextStyle(fontSize: 14)), 60 | ), 61 | ), 62 | ), 63 | ], 64 | ), 65 | Container( 66 | height: 1, 67 | margin: EdgeInsets.symmetric(vertical: 10), 68 | color: Colors.black12, 69 | ), 70 | //字符数 71 | Row( 72 | crossAxisAlignment: CrossAxisAlignment.center, 73 | children: [ 74 | Text( 75 | Strings.setMaxSize.tr, 76 | style: const TextStyle(fontSize: 16), 77 | ), 78 | Expanded( 79 | child: Container( 80 | alignment: Alignment.centerRight, 81 | margin: const EdgeInsets.only(left: 10), 82 | child: TextField( 83 | controller: sizeController, 84 | textAlign: TextAlign.end, 85 | inputFormatters: [ 86 | FilteringTextInputFormatter.digitsOnly //只允许输入数字 87 | ], 88 | style: TextStyle(fontSize: 14), 89 | decoration: InputDecoration( 90 | border: InputBorder.none, 91 | hintText: Strings.setMaxSizeTip.tr, 92 | hintStyle: TextStyle(fontSize: 14)), 93 | ), 94 | ), 95 | ), 96 | ], 97 | ), 98 | Container( 99 | height: 1, 100 | margin: EdgeInsets.symmetric(vertical: 10), 101 | color: Colors.black12, 102 | ), 103 | //上下文关联数 104 | Row( 105 | crossAxisAlignment: CrossAxisAlignment.center, 106 | children: [ 107 | Text( 108 | Strings.setMaxContent.tr, 109 | style: const TextStyle(fontSize: 16), 110 | ), 111 | Expanded( 112 | child: Container( 113 | alignment: Alignment.centerRight, 114 | margin: const EdgeInsets.only(left: 10), 115 | child: TextField( 116 | controller: contextController, 117 | textAlign: TextAlign.end, 118 | inputFormatters: [ 119 | FilteringTextInputFormatter.digitsOnly //只允许输入数字 120 | ], 121 | style: TextStyle(fontSize: 14), 122 | decoration: InputDecoration( 123 | border: InputBorder.none, 124 | hintText: Strings.setMaxContentTip.tr, 125 | hintStyle: TextStyle(fontSize: 14)), 126 | ), 127 | ), 128 | ), 129 | ], 130 | ), 131 | Row( 132 | mainAxisAlignment: MainAxisAlignment.end, 133 | children: [ 134 | TextButton( 135 | child: Text(Strings.cancel.tr), 136 | onPressed: () { 137 | Navigator.of(context).pop('cancel'); 138 | }, 139 | ), 140 | TextButton( 141 | child: Text(Strings.submit.tr), 142 | onPressed: () { 143 | //字符空 144 | var key = keyController.value.text; 145 | if (key.isEmpty) { 146 | ToastUtil.showError(Strings.setKeyTip.tr); 147 | return; 148 | } 149 | //字符数空 150 | if (sizeController.value.text.isEmpty) { 151 | ToastUtil.showError(Strings.setKeyTip.tr); 152 | return; 153 | } 154 | var token = int.parse(sizeController.value.text); 155 | if (token == 0) { 156 | ToastUtil.showError(Strings.setKeyTip.tr); 157 | return; 158 | } 159 | //上下文关联空 160 | if (contextController.value.text.isEmpty) { 161 | ToastUtil.showError(Strings.setKeyTip.tr); 162 | return; 163 | } 164 | var con = int.parse(contextController.value.text); 165 | if (con == 0) { 166 | ToastUtil.showError(Strings.setKeyTip.tr); 167 | return; 168 | } 169 | SPManager.instance.saveChatGptKey(key); 170 | SPManager.instance.saveGptMaxToken(token); 171 | SPManager.instance.saveChatMaxContext(con); 172 | Navigator.of(context).pop('ok'); 173 | }, 174 | ), 175 | ], 176 | ), 177 | ], 178 | ), 179 | ); 180 | } 181 | } 182 | -------------------------------------------------------------------------------- /lib/page/setting/setting_ctr.dart: -------------------------------------------------------------------------------- 1 | import 'package:get/get.dart'; 2 | 3 | /// @Author: gstory 4 | /// @CreateDate: 2023/3/17 14:29 5 | /// @Email gstory0404@gmail.com 6 | /// @Description: dart类作用描述 7 | 8 | class SettingCtr extends GetxController{ 9 | 10 | } -------------------------------------------------------------------------------- /lib/page/setting/setting_key.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:get/get.dart'; 3 | 4 | import '../../lang/strings.dart'; 5 | import '../../manager/sp_manager.dart'; 6 | import '../../utils/toast_util.dart'; 7 | 8 | /// @Author: gstory 9 | /// @CreateDate: 2023/3/17 14:55 10 | /// @Email gstory0404@gmail.com 11 | /// @Description: dart类作用描述 12 | 13 | class SettingKey extends AlertDialog{ 14 | TextEditingController inputController = TextEditingController(); 15 | 16 | @override 17 | Widget? get content { 18 | return TextField( 19 | controller: inputController, 20 | maxLines: 1, 21 | ); 22 | } 23 | 24 | @override 25 | List? get actions { 26 | return [ 27 | TextButton( 28 | child: Text(Strings.cancel.tr), 29 | onPressed: () { 30 | Get.back(); 31 | }, 32 | ), 33 | TextButton( 34 | child: Text(Strings.submit.tr), 35 | onPressed: () { 36 | var key = inputController.value.text; 37 | if (key.isEmpty) { 38 | ToastUtil.showError(Strings.setKeyTip); 39 | return; 40 | } 41 | SPManager.instance.saveChatGptKey(key); 42 | Get.back(); 43 | }), 44 | ]; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /lib/page/setting/setting_language_dialog.dart: -------------------------------------------------------------------------------- 1 | import 'package:chatgpt_app/lang/strings.dart'; 2 | import 'package:chatgpt_app/manager/sp_manager.dart'; 3 | import 'package:flutter/material.dart'; 4 | import 'package:get/get.dart'; 5 | 6 | import '../../config/global_keys.dart'; 7 | import '../../utils/language_util.dart'; 8 | 9 | /// @Author: gstory 10 | /// @CreateDate: 2023/3/17 15:16 11 | /// @Email gstory0404@gmail.com 12 | /// @Description: 设置语言 13 | 14 | class SettingLanguageDialog extends StatefulWidget { 15 | const SettingLanguageDialog({Key? key}) : super(key: key); 16 | 17 | @override 18 | State createState() => _SettingLanguageState(); 19 | } 20 | 21 | class _SettingLanguageState extends State { 22 | late String lan; 23 | 24 | @override 25 | void initState() { 26 | super.initState(); 27 | lan = LanguageUtil.getLanguage(); 28 | print("lan===》$lan"); 29 | } 30 | 31 | @override 32 | Widget build(BuildContext context) { 33 | return Column( 34 | mainAxisSize: MainAxisSize.min, 35 | children: [ 36 | Text(Strings.language.tr,style: const TextStyle(fontSize: 20),), 37 | //中文 38 | RadioListTile( 39 | value: LanguageKey.zh, 40 | onChanged: (value) { 41 | setState(() { 42 | lan = value; 43 | }); 44 | }, 45 | groupValue: lan, 46 | title: Text(Strings.chinese.tr), 47 | selected: lan == LanguageKey.zh, 48 | ), 49 | //英文 50 | RadioListTile( 51 | value: LanguageKey.en, 52 | onChanged: (value) { 53 | setState(() { 54 | lan = value; 55 | }); 56 | }, 57 | groupValue: lan, 58 | title: Text(Strings.english.tr), 59 | selected: lan == LanguageKey.en, 60 | ), 61 | Row( 62 | mainAxisAlignment: MainAxisAlignment.end, 63 | children: [ 64 | TextButton( 65 | child: Text(Strings.cancel.tr), 66 | onPressed: () { 67 | Get.back(); 68 | }, 69 | ), 70 | TextButton( 71 | child: Text(Strings.submit.tr), 72 | onPressed: () { 73 | LanguageUtil.setLanguage(lan); 74 | Get.back(); 75 | }, 76 | ), 77 | ], 78 | ) 79 | ], 80 | ); 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /lib/page/setting/setting_page.dart: -------------------------------------------------------------------------------- 1 | import 'dart:io'; 2 | 3 | import 'package:chatgpt_app/lang/strings.dart'; 4 | import 'package:chatgpt_app/manager/sp_manager.dart'; 5 | import 'package:chatgpt_app/page/setting/setting_key.dart'; 6 | import 'package:chatgpt_app/page/setting/setting_chatgpt_dialog.dart'; 7 | import 'package:chatgpt_app/page/setting/setting_language_dialog.dart'; 8 | import 'package:chatgpt_app/utils/toast_util.dart'; 9 | import 'package:flutter/material.dart'; 10 | import 'package:get/route_manager.dart'; 11 | import 'package:get/utils.dart'; 12 | import 'package:url_launcher/url_launcher.dart'; 13 | 14 | /// @Author: gstory 15 | /// @CreateDate: 2023/2/14 09:26 16 | /// @Email gstory0404@gmail.com 17 | /// @Description: dart类作用描述 18 | 19 | class SettingPage extends StatefulWidget { 20 | const SettingPage({Key? key}) : super(key: key); 21 | 22 | @override 23 | State createState() => _SettingPageState(); 24 | } 25 | 26 | class _SettingPageState extends State { 27 | @override 28 | Widget build(BuildContext context) { 29 | return Scaffold( 30 | appBar: (Platform.isAndroid || Platform.isIOS) 31 | ? AppBar( 32 | title: Text(Strings.setting.tr), 33 | centerTitle: true, 34 | ) 35 | : null, 36 | body: Container( 37 | child: Column( 38 | children: [ 39 | //设置 key 40 | ListTile( 41 | title: Text( 42 | Strings.setChatGPT.tr, 43 | style: TextStyle(fontSize: 16), 44 | ), 45 | trailing: Icon(Icons.keyboard_arrow_right), 46 | onTap: () { 47 | // _showSetting(context); 48 | Get.dialog(const AlertDialog( 49 | content: SettingChatGPTDialog(), 50 | )); 51 | }, 52 | ), 53 | Container( 54 | height: 1, 55 | color: Colors.black12, 56 | ), 57 | //设置语言 58 | ListTile( 59 | title: Text( 60 | Strings.language.tr, 61 | style: TextStyle(fontSize: 16), 62 | ), 63 | trailing: Icon(Icons.keyboard_arrow_right), 64 | onTap: () { 65 | Get.dialog(const AlertDialog( 66 | content: SettingLanguageDialog(), 67 | )); 68 | }, 69 | ), 70 | //关于app 71 | Container( 72 | height: 1, 73 | color: Colors.black12, 74 | ), 75 | ListTile( 76 | title: Text( 77 | Strings.aboutApp.tr, 78 | style: TextStyle(fontSize: 16), 79 | ), 80 | trailing: Icon(Icons.keyboard_arrow_right), 81 | onTap: () { 82 | _showAbout(context); 83 | }, 84 | ) 85 | ], 86 | ), 87 | ), 88 | ); 89 | } 90 | 91 | ///显示设置key 92 | _showSetting(BuildContext context) { 93 | TextEditingController inputController = TextEditingController(); 94 | inputController.text = SPManager.instance.getChatGptKey() ?? ""; 95 | //设置对话框 96 | AlertDialog alert = AlertDialog( 97 | title: Text(Strings.setChatGPT.tr), 98 | content: TextField( 99 | controller: inputController, 100 | ), 101 | actions: [ 102 | TextButton( 103 | child: Text(Strings.cancel.tr), 104 | onPressed: () { 105 | Navigator.of(context).pop('cancel'); 106 | }, 107 | ), 108 | TextButton( 109 | child: Text(Strings.submit.tr), 110 | onPressed: () { 111 | var key = inputController.value.text; 112 | if (key.isEmpty) { 113 | ToastUtil.showError(Strings.setKeyTip); 114 | return; 115 | } 116 | SPManager.instance.saveChatGptKey(key); 117 | Navigator.of(context).pop('ok'); 118 | }), 119 | ], 120 | ); 121 | //显示对话框 122 | showDialog( 123 | context: context, 124 | builder: (BuildContext context) { 125 | return alert; 126 | }, 127 | ); 128 | } 129 | 130 | ///显示关于 131 | _showAbout(BuildContext context) { 132 | showAboutDialog( 133 | context: context, 134 | applicationName: 'ChatGPT APP', 135 | applicationIcon: 136 | Image.asset("assets/images/logo.png", width: 80, height: 80), 137 | applicationVersion: '1.0.0', 138 | applicationLegalese: 'copyright @ gstory', 139 | useRootNavigator: true, 140 | children: [ 141 | Container(height: 20), 142 | ListTile( 143 | leading: const Icon(Icons.label_important_outline), 144 | title: Text(Strings.appHome.tr), 145 | trailing: const Icon(Icons.keyboard_arrow_right), 146 | contentPadding: const EdgeInsets.symmetric(horizontal: 4), 147 | onTap: () async { 148 | await launchUrl( 149 | Uri.parse("https://github.com/gstory0404/chatgpt_app")); 150 | }, 151 | ), 152 | ListTile( 153 | leading: const Icon(Icons.label_important_outline), 154 | title: Text(Strings.appPact.tr), 155 | trailing: const Icon(Icons.keyboard_arrow_right), 156 | contentPadding: const EdgeInsets.symmetric(horizontal: 4), 157 | onTap: () async { 158 | await launchUrl(Uri.parse( 159 | "https://github.com/gstory0404/chatgpt_app/blob/master/LICENSE")); 160 | }, 161 | ), 162 | ], 163 | ); 164 | } 165 | } 166 | -------------------------------------------------------------------------------- /lib/utils/chat_util.dart: -------------------------------------------------------------------------------- 1 | import 'package:chatgpt_app/page/bean/history_bean.dart'; 2 | 3 | /// @Author: gstory 4 | /// @CreateDate: 2023/2/14 11:42 5 | /// @Email gstory0404@gmail.com 6 | /// @Description: dart类作用描述 7 | 8 | class ChatUtil { 9 | 10 | } 11 | -------------------------------------------------------------------------------- /lib/utils/language_util.dart: -------------------------------------------------------------------------------- 1 | import 'dart:ui'; 2 | 3 | import 'package:chatgpt_app/config/global_keys.dart'; 4 | import 'package:chatgpt_app/manager/sp_manager.dart'; 5 | import 'package:get/get.dart'; 6 | 7 | /// @Author: gstory 8 | /// @CreateDate: 2023/3/17 12:02 9 | /// @Email gstory0404@gmail.com 10 | /// @Description: dart类作用描述 11 | /// 12 | 13 | class LanguageUtil{ 14 | 15 | //获取当前语言 16 | static String getLanguage(){ 17 | var language = SPManager.instance.getLanguage(); 18 | print("language=$language"); 19 | return language; 20 | } 21 | 22 | //更新app语言 23 | static void updateLanguage(){ 24 | var lan = SPManager.instance.getLanguage(); 25 | var locale = getLanguageLocale(lan); 26 | Get.updateLocale(locale); 27 | } 28 | 29 | //设置语言 30 | static void setLanguage(String lan){ 31 | SPManager.instance.saveLanguage(lan); 32 | var locale = getLanguageLocale(lan); 33 | Get.updateLocale(locale); 34 | } 35 | 36 | //获取Locale 37 | static Locale getLanguageLocale(String lan){ 38 | switch(lan){ 39 | case LanguageKey.en: 40 | return const Locale('en', 'US'); 41 | case LanguageKey.zh: 42 | return const Locale('zh', 'CN'); 43 | } 44 | return Get.deviceLocale ?? const Locale('zh', 'CN'); 45 | } 46 | } -------------------------------------------------------------------------------- /lib/utils/net_util.dart: -------------------------------------------------------------------------------- 1 | import 'dart:convert'; 2 | import 'dart:io'; 3 | 4 | import 'package:chatgpt_app/page/bean/chatgpt_entity.dart'; 5 | import 'package:dio/dio.dart'; 6 | 7 | import '../manager/sp_manager.dart'; 8 | 9 | /// @Author: gstory 10 | /// @CreateDate: 2023/2/13 11:34 11 | /// @Email gstory0404@gmail.com 12 | /// @Description: dart类作用描述 13 | 14 | class NetUtils { 15 | static Future sendMessage( 16 | List messages, 17 | Function success, 18 | Function fail, 19 | ) async { 20 | Dio dio = Dio(); 21 | dio.options.headers = { 22 | "Authorization": "Bearer ${SPManager.instance.getChatGptKey()}", 23 | "content-type": " application/json" 24 | }; 25 | dio.options.connectTimeout = const Duration(minutes: 1); // 服务器链接超时,1分钟 26 | dio.options.receiveTimeout = const Duration(minutes: 1); // 响应流上前后两次接受到数据的间隔,1分钟 27 | dio.options.contentType = ContentType.json.toString(); 28 | dio.options.responseType = ResponseType.json; 29 | // print("send===> ${json.encode(messages)}"); 30 | dio.post("https://api.openai.com/v1/chat/completions", data: { 31 | "model": "gpt-3.5-turbo", 32 | "messages": messages, 33 | "max_tokens": SPManager.instance.getChatMaxToken(), 34 | "temperature": 0.4, 35 | "top_p": 1, 36 | "frequency_penalty": 0, 37 | "presence_penalty": 0 38 | }).then((value) { 39 | success(value); 40 | }).catchError((e) { 41 | if (e is DioError) { 42 | DioError dioError = e; 43 | fail(dioError.response); 44 | print("请求异常 ${dioError.response}"); 45 | } else { 46 | fail(e); 47 | } 48 | }); 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /lib/utils/toast_util.dart: -------------------------------------------------------------------------------- 1 | import 'package:cherry_toast/cherry_toast.dart'; 2 | import 'package:cherry_toast/resources/arrays.dart'; 3 | import 'package:flutter/cupertino.dart'; 4 | import 'package:get/get.dart'; 5 | 6 | /// @Author: gstory 7 | /// @CreateDate: 2023/2/13 12:21 8 | /// @Email gstory0404@gmail.com 9 | /// @Description: dart类作用描述 10 | 11 | class ToastUtil { 12 | /// 显示错误提示 13 | static showError(String msg) { 14 | CherryToast.error( 15 | title: Text(msg), 16 | animationType: AnimationType.fromTop, 17 | autoDismiss: true, 18 | ).show(Get.context!); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /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 "chatgpt_app") 8 | # The unique GTK application identifier for this application. See: 9 | # https://wiki.gnome.org/HowDoI/ChooseApplicationID 10 | set(APPLICATION_ID "com.gstory.chatgpt_app") 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 | # Generated plugin build rules, which manage building the plugins and adding 90 | # them to the application. 91 | include(flutter/generated_plugins.cmake) 92 | 93 | 94 | # === Installation === 95 | # By default, "installing" just makes a relocatable bundle in the build 96 | # directory. 97 | set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle") 98 | if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) 99 | set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) 100 | endif() 101 | 102 | # Start with a clean build bundle directory every time. 103 | install(CODE " 104 | file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\") 105 | " COMPONENT Runtime) 106 | 107 | set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") 108 | set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib") 109 | 110 | install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" 111 | COMPONENT Runtime) 112 | 113 | install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" 114 | COMPONENT Runtime) 115 | 116 | install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 117 | COMPONENT Runtime) 118 | 119 | foreach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES}) 120 | install(FILES "${bundled_library}" 121 | DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 122 | COMPONENT Runtime) 123 | endforeach(bundled_library) 124 | 125 | # Fully re-copy the assets directory on each build to avoid having stale files 126 | # from a previous install. 127 | set(FLUTTER_ASSET_DIR_NAME "flutter_assets") 128 | install(CODE " 129 | file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") 130 | " COMPONENT Runtime) 131 | install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" 132 | DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) 133 | 134 | # Install the AOT library on non-Debug builds only. 135 | if(NOT CMAKE_BUILD_TYPE MATCHES "Debug") 136 | install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 137 | COMPONENT Runtime) 138 | endif() 139 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | #include 10 | #include 11 | #include 12 | 13 | void fl_register_plugins(FlPluginRegistry* registry) { 14 | g_autoptr(FlPluginRegistrar) screen_retriever_registrar = 15 | fl_plugin_registry_get_registrar_for_plugin(registry, "ScreenRetrieverPlugin"); 16 | screen_retriever_plugin_register_with_registrar(screen_retriever_registrar); 17 | g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar = 18 | fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin"); 19 | url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar); 20 | g_autoptr(FlPluginRegistrar) window_manager_registrar = 21 | fl_plugin_registry_get_registrar_for_plugin(registry, "WindowManagerPlugin"); 22 | window_manager_plugin_register_with_registrar(window_manager_registrar); 23 | } 24 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Generated file, do not edit. 3 | # 4 | 5 | list(APPEND FLUTTER_PLUGIN_LIST 6 | screen_retriever 7 | url_launcher_linux 8 | window_manager 9 | ) 10 | 11 | list(APPEND FLUTTER_FFI_PLUGIN_LIST 12 | ) 13 | 14 | set(PLUGIN_BUNDLED_LIBRARIES) 15 | 16 | foreach(plugin ${FLUTTER_PLUGIN_LIST}) 17 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) 18 | target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) 19 | list(APPEND PLUGIN_BUNDLED_LIBRARIES $) 20 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) 21 | endforeach(plugin) 22 | 23 | foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) 24 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin}) 25 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) 26 | endforeach(ffi_plugin) 27 | -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- 1 | #include "my_application.h" 2 | 3 | int main(int argc, char** argv) { 4 | g_autoptr(MyApplication) app = my_application_new(); 5 | return g_application_run(G_APPLICATION(app), argc, argv); 6 | } 7 | -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- 1 | #include "my_application.h" 2 | 3 | #include 4 | #ifdef GDK_WINDOWING_X11 5 | #include 6 | #endif 7 | 8 | #include "flutter/generated_plugin_registrant.h" 9 | 10 | struct _MyApplication { 11 | GtkApplication parent_instance; 12 | char** dart_entrypoint_arguments; 13 | }; 14 | 15 | G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION) 16 | 17 | // Implements GApplication::activate. 18 | static void my_application_activate(GApplication* application) { 19 | MyApplication* self = MY_APPLICATION(application); 20 | GtkWindow* window = 21 | GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application))); 22 | 23 | // Use a header bar when running in GNOME as this is the common style used 24 | // by applications and is the setup most users will be using (e.g. Ubuntu 25 | // desktop). 26 | // If running on X and not using GNOME then just use a traditional title bar 27 | // in case the window manager does more exotic layout, e.g. tiling. 28 | // If running on Wayland assume the header bar will work (may need changing 29 | // if future cases occur). 30 | gboolean use_header_bar = TRUE; 31 | #ifdef GDK_WINDOWING_X11 32 | GdkScreen* screen = gtk_window_get_screen(window); 33 | if (GDK_IS_X11_SCREEN(screen)) { 34 | const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen); 35 | if (g_strcmp0(wm_name, "GNOME Shell") != 0) { 36 | use_header_bar = FALSE; 37 | } 38 | } 39 | #endif 40 | if (use_header_bar) { 41 | GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); 42 | gtk_widget_show(GTK_WIDGET(header_bar)); 43 | gtk_header_bar_set_title(header_bar, "chatgpt_app"); 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, "chatgpt_app"); 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 | -------------------------------------------------------------------------------- /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/.gitignore: -------------------------------------------------------------------------------- 1 | # Flutter-related 2 | **/Flutter/ephemeral/ 3 | **/Pods/ 4 | 5 | # Xcode-related 6 | **/dgph 7 | **/xcuserdata/ 8 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | import FlutterMacOS 6 | import Foundation 7 | 8 | import screen_retriever 9 | import shared_preferences_foundation 10 | import url_launcher_macos 11 | import window_manager 12 | 13 | func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { 14 | ScreenRetrieverPlugin.register(with: registry.registrar(forPlugin: "ScreenRetrieverPlugin")) 15 | SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) 16 | UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin")) 17 | WindowManagerPlugin.register(with: registry.registrar(forPlugin: "WindowManagerPlugin")) 18 | } 19 | -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- 1 | platform :osx, '10.14' 2 | 3 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency. 4 | ENV['COCOAPODS_DISABLE_STATS'] = 'true' 5 | 6 | project 'Runner', { 7 | 'Debug' => :debug, 8 | 'Profile' => :release, 9 | 'Release' => :release, 10 | } 11 | 12 | def flutter_root 13 | generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'ephemeral', 'Flutter-Generated.xcconfig'), __FILE__) 14 | unless File.exist?(generated_xcode_build_settings_path) 15 | raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure \"flutter pub get\" is executed first" 16 | end 17 | 18 | File.foreach(generated_xcode_build_settings_path) do |line| 19 | matches = line.match(/FLUTTER_ROOT\=(.*)/) 20 | return matches[1].strip if matches 21 | end 22 | raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Flutter-Generated.xcconfig, then run \"flutter pub get\"" 23 | end 24 | 25 | require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) 26 | 27 | flutter_macos_podfile_setup 28 | 29 | target 'Runner' do 30 | use_frameworks! 31 | use_modular_headers! 32 | 33 | flutter_install_all_macos_pods File.dirname(File.realpath(__FILE__)) 34 | end 35 | 36 | post_install do |installer| 37 | installer.pods_project.targets.each do |target| 38 | flutter_additional_macos_build_settings(target) 39 | end 40 | end 41 | -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - FlutterMacOS (1.0.0) 3 | - screen_retriever (0.0.1): 4 | - FlutterMacOS 5 | - shared_preferences_foundation (0.0.1): 6 | - Flutter 7 | - FlutterMacOS 8 | - url_launcher_macos (0.0.1): 9 | - FlutterMacOS 10 | - window_manager (0.2.0): 11 | - FlutterMacOS 12 | 13 | DEPENDENCIES: 14 | - FlutterMacOS (from `Flutter/ephemeral`) 15 | - screen_retriever (from `Flutter/ephemeral/.symlinks/plugins/screen_retriever/macos`) 16 | - shared_preferences_foundation (from `Flutter/ephemeral/.symlinks/plugins/shared_preferences_foundation/macos`) 17 | - url_launcher_macos (from `Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos`) 18 | - window_manager (from `Flutter/ephemeral/.symlinks/plugins/window_manager/macos`) 19 | 20 | EXTERNAL SOURCES: 21 | FlutterMacOS: 22 | :path: Flutter/ephemeral 23 | screen_retriever: 24 | :path: Flutter/ephemeral/.symlinks/plugins/screen_retriever/macos 25 | shared_preferences_foundation: 26 | :path: Flutter/ephemeral/.symlinks/plugins/shared_preferences_foundation/macos 27 | url_launcher_macos: 28 | :path: Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos 29 | window_manager: 30 | :path: Flutter/ephemeral/.symlinks/plugins/window_manager/macos 31 | 32 | SPEC CHECKSUMS: 33 | FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24 34 | screen_retriever: 59634572a57080243dd1bf715e55b6c54f241a38 35 | shared_preferences_foundation: 297b3ebca31b34ec92be11acd7fb0ba932c822ca 36 | url_launcher_macos: c04e4fa86382d4f94f6b38f14625708be3ae52e2 37 | window_manager: 3a1844359a6295ab1e47659b1a777e36773cd6e8 38 | 39 | PODFILE CHECKSUM: 353c8bcc5d5b0994e508d035b5431cfe18c1dea7 40 | 41 | COCOAPODS: 1.11.3 42 | -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 41 | 42 | 52 | 54 | 60 | 61 | 62 | 63 | 69 | 71 | 77 | 78 | 79 | 80 | 82 | 83 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "size": "16x16", 5 | "idiom": "mac", 6 | "filename": "icon-16.png", 7 | "scale": "1x" 8 | }, 9 | { 10 | "size": "16x16", 11 | "idiom": "mac", 12 | "filename": "icon-16@2x.png", 13 | "scale": "2x" 14 | }, 15 | { 16 | "size": "32x32", 17 | "idiom": "mac", 18 | "filename": "icon-32.png", 19 | "scale": "1x" 20 | }, 21 | { 22 | "size": "32x32", 23 | "idiom": "mac", 24 | "filename": "icon-32@2x.png", 25 | "scale": "2x" 26 | }, 27 | { 28 | "size": "128x128", 29 | "idiom": "mac", 30 | "filename": "icon-128.png", 31 | "scale": "1x" 32 | }, 33 | { 34 | "size": "128x128", 35 | "idiom": "mac", 36 | "filename": "icon-128@2x.png", 37 | "scale": "2x" 38 | }, 39 | { 40 | "size": "256x256", 41 | "idiom": "mac", 42 | "filename": "icon-256.png", 43 | "scale": "1x" 44 | }, 45 | { 46 | "size": "256x256", 47 | "idiom": "mac", 48 | "filename": "icon-256@2x.png", 49 | "scale": "2x" 50 | }, 51 | { 52 | "size": "512x512", 53 | "idiom": "mac", 54 | "filename": "icon-512.png", 55 | "scale": "1x" 56 | }, 57 | { 58 | "size": "512x512", 59 | "idiom": "mac", 60 | "filename": "icon-512@2x.png", 61 | "scale": "2x" 62 | } 63 | ], 64 | "info": { 65 | "version": 1, 66 | "author": "icon.wuruihong.com" 67 | } 68 | } -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-128@2x.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-16@2x.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-256@2x.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-32@2x.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/macos/Runner/Assets.xcassets/AppIcon.appiconset/icon-512@2x.png -------------------------------------------------------------------------------- /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 = chatgpt_app 9 | 10 | // The application's bundle identifier 11 | PRODUCT_BUNDLE_IDENTIFIER = com.gstory.chatgptApp 12 | 13 | // The copyright displayed in application information 14 | PRODUCT_COPYRIGHT = Copyright © 2023 com.gstory. All rights reserved. 15 | -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Debug.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Release.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /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/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 | com.apple.security.network.client 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /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 | ChatGPT 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 | NSAppTransportSecurity 32 | 33 | NSAllowsArbitraryLoads 34 | 35 | NSAllowsArbitraryLoadsForMedia 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | class MainFlutterWindow: NSWindow { 5 | override func awakeFromNib() { 6 | let flutterViewController = FlutterViewController.init() 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 | -------------------------------------------------------------------------------- /macos/Runner/Release.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 | com.apple.security.network.client 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: chatgpt_app 2 | description: ChatGPT APP 3 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev 4 | version: 1.0.2+3 5 | 6 | environment: 7 | sdk: '>=2.19.1 <3.0.0' 8 | 9 | dependencies: 10 | flutter: 11 | sdk: flutter 12 | flutter_localizations: 13 | sdk: flutter 14 | cupertino_icons: ^1.0.2 15 | window_manager: ^0.2.8 16 | dio: ^5.1.0 17 | cherry_toast: ^1.0.9 18 | url_launcher: ^6.1.7 19 | shared_preferences: ^2.0.17 20 | markdown_widget: ^2.0.0+1 21 | get: ^4.6.5 22 | 23 | dev_dependencies: 24 | flutter_test: 25 | sdk: flutter 26 | flutter_lints: ^2.0.0 27 | 28 | flutter: 29 | 30 | # The following line ensures that the Material Icons font is 31 | # included with your application, so that you can use the icons in 32 | # the material Icons class. 33 | uses-material-design: true 34 | assets: 35 | - assets/images/logo.png 36 | - assets/images/logo_chatgpt.png 37 | - assets/images/logo_user.png 38 | - assets/images/logo_system.png -------------------------------------------------------------------------------- /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:chatgpt_app/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 | -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | ChatGPT 33 | 34 | 35 | 39 | 40 | 41 | 42 | 43 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "chatgpt_app", 3 | "short_name": "chatgpt_app", 4 | "start_url": ".", 5 | "display": "standalone", 6 | "background_color": "#0175C2", 7 | "theme_color": "#0175C2", 8 | "description": "ChatGPT APP", 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/.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 | -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Project-level configuration. 2 | cmake_minimum_required(VERSION 3.14) 3 | project(chatgpt_app 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 "chatgpt_app") 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 | # Generated plugin build rules, which manage building the plugins and adding 56 | # them to the application. 57 | include(flutter/generated_plugins.cmake) 58 | 59 | 60 | # === Installation === 61 | # Support files are copied into place next to the executable, so that it can 62 | # run in place. This is done instead of making a separate bundle (as on Linux) 63 | # so that building and running from within Visual Studio will work. 64 | set(BUILD_BUNDLE_DIR "$") 65 | # Make the "install" step default, as it's required to run. 66 | set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) 67 | if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) 68 | set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) 69 | endif() 70 | 71 | set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") 72 | set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") 73 | 74 | install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" 75 | COMPONENT Runtime) 76 | 77 | install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" 78 | COMPONENT Runtime) 79 | 80 | install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 81 | COMPONENT Runtime) 82 | 83 | if(PLUGIN_BUNDLED_LIBRARIES) 84 | install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" 85 | DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" 86 | COMPONENT Runtime) 87 | endif() 88 | 89 | # Fully re-copy the assets directory on each build to avoid having stale files 90 | # from a previous install. 91 | set(FLUTTER_ASSET_DIR_NAME "flutter_assets") 92 | install(CODE " 93 | file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") 94 | " COMPONENT Runtime) 95 | install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" 96 | DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) 97 | 98 | # Install the AOT library on non-Debug builds only. 99 | install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" 100 | CONFIGURATIONS Profile;Release 101 | COMPONENT Runtime) 102 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | #include 10 | #include 11 | #include 12 | 13 | void RegisterPlugins(flutter::PluginRegistry* registry) { 14 | ScreenRetrieverPluginRegisterWithRegistrar( 15 | registry->GetRegistrarForPlugin("ScreenRetrieverPlugin")); 16 | UrlLauncherWindowsRegisterWithRegistrar( 17 | registry->GetRegistrarForPlugin("UrlLauncherWindows")); 18 | WindowManagerPluginRegisterWithRegistrar( 19 | registry->GetRegistrarForPlugin("WindowManagerPlugin")); 20 | } 21 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Generated file, do not edit. 3 | # 4 | 5 | list(APPEND FLUTTER_PLUGIN_LIST 6 | screen_retriever 7 | url_launcher_windows 8 | window_manager 9 | ) 10 | 11 | list(APPEND FLUTTER_FFI_PLUGIN_LIST 12 | ) 13 | 14 | set(PLUGIN_BUNDLED_LIBRARIES) 15 | 16 | foreach(plugin ${FLUTTER_PLUGIN_LIST}) 17 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) 18 | target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) 19 | list(APPEND PLUGIN_BUNDLED_LIBRARIES $) 20 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) 21 | endforeach(plugin) 22 | 23 | foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) 24 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin}) 25 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) 26 | endforeach(ffi_plugin) 27 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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.gstory" "\0" 93 | VALUE "FileDescription", "chatgpt_app" "\0" 94 | VALUE "FileVersion", VERSION_AS_STRING "\0" 95 | VALUE "InternalName", "chatgpt_app" "\0" 96 | VALUE "LegalCopyright", "Copyright (C) 2023 com.gstory. All rights reserved." "\0" 97 | VALUE "OriginalFilename", "chatgpt_app.exe" "\0" 98 | VALUE "ProductName", "chatgpt_app" "\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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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"ChatGPT", 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gstory0404/chatgpt_app/13d5a3af1be4241f6d48583262084a2be09a9678/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | std::string utf8_string; 52 | if (target_length == 0 || target_length > utf8_string.max_size()) { 53 | return utf8_string; 54 | } 55 | utf8_string.resize(target_length); 56 | int converted_length = ::WideCharToMultiByte( 57 | CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, 58 | -1, utf8_string.data(), 59 | target_length, nullptr, nullptr); 60 | if (converted_length == 0) { 61 | return std::string(); 62 | } 63 | return utf8_string; 64 | } 65 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 registar 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 | -------------------------------------------------------------------------------- /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 | // responsponds 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 | --------------------------------------------------------------------------------