├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── xiaofanshu_flutter │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── playstore-icon.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── devtools_options.yaml ├── fonts ├── iconfont.json └── iconfont.ttf ├── images ├── Camera_XHS_17177307112011000g0082qmjqflak806g5ocd82pk1iu2q1bqvu8.jpg ├── IMG_202406102819_94x94.png ├── loginBackground.webp ├── mmexport1718487030741.png ├── mmexport1718487036019.png └── touxiang.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── 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-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.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 └── RunnerTests │ └── RunnerTests.swift ├── lib ├── apis │ └── app.dart ├── bindings │ └── controller_binding.dart ├── components │ ├── audio_animation.dart │ ├── audio_overlay.dart │ ├── background_image_pre.dart │ ├── crop_page.dart │ ├── export_result.dart │ ├── export_service.dart │ ├── image_preview.dart │ ├── item.dart │ ├── location_picker.dart │ ├── timer_count.dart │ └── video_horizontal_pre.dart ├── config │ ├── amap_config.dart │ ├── base_request.dart │ ├── custom_icon.dart │ ├── routes.dart │ └── text_field_config.dart ├── controller │ ├── attention_controller.dart │ ├── attention_fans_controller.dart │ ├── chat_controller.dart │ ├── edit_info_controller.dart │ ├── home_controller.dart │ ├── location_controller.dart │ ├── login_controller.dart │ ├── mine_controller.dart │ ├── near_notes_controller.dart │ ├── note_details_image_controller.dart │ ├── note_details_video_controller.dart │ ├── other_mine_controller.dart │ ├── praise_and_collection_controller.dart │ ├── publish_notes_controller.dart │ ├── recently_message_controller.dart │ ├── recommend_controller.dart │ ├── retrieve_account_controller.dart │ ├── search_controller.dart │ ├── search_result_controller.dart │ ├── settings_controller.dart │ └── websocket_controller.dart ├── enum │ ├── chat_type.dart │ └── message_type.dart ├── main.dart ├── mapper │ ├── chat_message_mapper.dart │ ├── collect_emoji_mapper.dart │ ├── draft_notes_mapper.dart │ ├── praise_and_collection_mapper.dart │ ├── recently_message_mapper.dart │ ├── recommend_tab_mapper.dart │ ├── search_history_mapper.dart │ └── system_message_mapper.dart ├── model │ ├── collect_emoji.dart │ ├── comment.dart │ ├── draft_notes.dart │ ├── emoji.dart │ ├── notes.dart │ ├── recently_message.dart │ ├── recommend_tab.dart │ ├── response.dart │ ├── user.dart │ └── websocket_message_vo.dart ├── pages │ ├── auth │ │ ├── login.dart │ │ └── retrieve_account.dart │ ├── home │ │ ├── home.dart │ │ ├── index │ │ │ ├── attention.dart │ │ │ ├── index.dart │ │ │ ├── near_notes.dart │ │ │ └── recommend.dart │ │ ├── message │ │ │ ├── chat.dart │ │ │ ├── praise_and_collection.dart │ │ │ └── recently_message.dart │ │ └── mine │ │ │ ├── attention_fans.dart │ │ │ ├── edit_information.dart │ │ │ ├── mine.dart │ │ │ ├── other_mine.dart │ │ │ └── settings.dart │ ├── notesDetail │ │ ├── note_details_image.dart │ │ └── note_details_video.dart │ ├── publish │ │ ├── publish_note.dart │ │ └── video_clip.dart │ └── search │ │ ├── search.dart │ │ └── search_result.dart ├── static │ ├── custom_code.dart │ ├── custom_color.dart │ ├── custom_string.dart │ ├── default_data.dart │ └── emoji_map.dart └── utils │ ├── adapt.dart │ ├── audio_play_manager.dart │ ├── comment_util.dart │ ├── date_show_util.dart │ ├── db_util.dart │ ├── image_util.dart │ ├── loading_util.dart │ ├── parameter_verification.dart │ ├── permission_apply.dart │ ├── request.dart │ ├── snackbar_util.dart │ ├── store_util.dart │ ├── toast_util.dart │ └── websocket_manager.dart ├── pubspec.lock ├── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/xiaofanshu_flutter/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/java/com/example/xiaofanshu_flutter/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/playstore-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/playstore-icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/devtools_options.yaml -------------------------------------------------------------------------------- /fonts/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/fonts/iconfont.json -------------------------------------------------------------------------------- /fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/fonts/iconfont.ttf -------------------------------------------------------------------------------- /images/Camera_XHS_17177307112011000g0082qmjqflak806g5ocd82pk1iu2q1bqvu8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/images/Camera_XHS_17177307112011000g0082qmjqflak806g5ocd82pk1iu2q1bqvu8.jpg -------------------------------------------------------------------------------- /images/IMG_202406102819_94x94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/images/IMG_202406102819_94x94.png -------------------------------------------------------------------------------- /images/loginBackground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/images/loginBackground.webp -------------------------------------------------------------------------------- /images/mmexport1718487030741.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/images/mmexport1718487030741.png -------------------------------------------------------------------------------- /images/mmexport1718487036019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/images/mmexport1718487036019.png -------------------------------------------------------------------------------- /images/touxiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/images/touxiang.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /lib/apis/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/apis/app.dart -------------------------------------------------------------------------------- /lib/bindings/controller_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/bindings/controller_binding.dart -------------------------------------------------------------------------------- /lib/components/audio_animation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/components/audio_animation.dart -------------------------------------------------------------------------------- /lib/components/audio_overlay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/components/audio_overlay.dart -------------------------------------------------------------------------------- /lib/components/background_image_pre.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/components/background_image_pre.dart -------------------------------------------------------------------------------- /lib/components/crop_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/components/crop_page.dart -------------------------------------------------------------------------------- /lib/components/export_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/components/export_result.dart -------------------------------------------------------------------------------- /lib/components/export_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/components/export_service.dart -------------------------------------------------------------------------------- /lib/components/image_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/components/image_preview.dart -------------------------------------------------------------------------------- /lib/components/item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/components/item.dart -------------------------------------------------------------------------------- /lib/components/location_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/components/location_picker.dart -------------------------------------------------------------------------------- /lib/components/timer_count.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/components/timer_count.dart -------------------------------------------------------------------------------- /lib/components/video_horizontal_pre.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/components/video_horizontal_pre.dart -------------------------------------------------------------------------------- /lib/config/amap_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/config/amap_config.dart -------------------------------------------------------------------------------- /lib/config/base_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/config/base_request.dart -------------------------------------------------------------------------------- /lib/config/custom_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/config/custom_icon.dart -------------------------------------------------------------------------------- /lib/config/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/config/routes.dart -------------------------------------------------------------------------------- /lib/config/text_field_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/config/text_field_config.dart -------------------------------------------------------------------------------- /lib/controller/attention_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/attention_controller.dart -------------------------------------------------------------------------------- /lib/controller/attention_fans_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/attention_fans_controller.dart -------------------------------------------------------------------------------- /lib/controller/chat_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/chat_controller.dart -------------------------------------------------------------------------------- /lib/controller/edit_info_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/edit_info_controller.dart -------------------------------------------------------------------------------- /lib/controller/home_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/home_controller.dart -------------------------------------------------------------------------------- /lib/controller/location_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/location_controller.dart -------------------------------------------------------------------------------- /lib/controller/login_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/login_controller.dart -------------------------------------------------------------------------------- /lib/controller/mine_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/mine_controller.dart -------------------------------------------------------------------------------- /lib/controller/near_notes_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/near_notes_controller.dart -------------------------------------------------------------------------------- /lib/controller/note_details_image_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/note_details_image_controller.dart -------------------------------------------------------------------------------- /lib/controller/note_details_video_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/note_details_video_controller.dart -------------------------------------------------------------------------------- /lib/controller/other_mine_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/other_mine_controller.dart -------------------------------------------------------------------------------- /lib/controller/praise_and_collection_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/praise_and_collection_controller.dart -------------------------------------------------------------------------------- /lib/controller/publish_notes_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/publish_notes_controller.dart -------------------------------------------------------------------------------- /lib/controller/recently_message_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/recently_message_controller.dart -------------------------------------------------------------------------------- /lib/controller/recommend_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/recommend_controller.dart -------------------------------------------------------------------------------- /lib/controller/retrieve_account_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/retrieve_account_controller.dart -------------------------------------------------------------------------------- /lib/controller/search_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/search_controller.dart -------------------------------------------------------------------------------- /lib/controller/search_result_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/search_result_controller.dart -------------------------------------------------------------------------------- /lib/controller/settings_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/settings_controller.dart -------------------------------------------------------------------------------- /lib/controller/websocket_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/controller/websocket_controller.dart -------------------------------------------------------------------------------- /lib/enum/chat_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/enum/chat_type.dart -------------------------------------------------------------------------------- /lib/enum/message_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/enum/message_type.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/mapper/chat_message_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/mapper/chat_message_mapper.dart -------------------------------------------------------------------------------- /lib/mapper/collect_emoji_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/mapper/collect_emoji_mapper.dart -------------------------------------------------------------------------------- /lib/mapper/draft_notes_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/mapper/draft_notes_mapper.dart -------------------------------------------------------------------------------- /lib/mapper/praise_and_collection_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/mapper/praise_and_collection_mapper.dart -------------------------------------------------------------------------------- /lib/mapper/recently_message_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/mapper/recently_message_mapper.dart -------------------------------------------------------------------------------- /lib/mapper/recommend_tab_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/mapper/recommend_tab_mapper.dart -------------------------------------------------------------------------------- /lib/mapper/search_history_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/mapper/search_history_mapper.dart -------------------------------------------------------------------------------- /lib/mapper/system_message_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/mapper/system_message_mapper.dart -------------------------------------------------------------------------------- /lib/model/collect_emoji.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/model/collect_emoji.dart -------------------------------------------------------------------------------- /lib/model/comment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/model/comment.dart -------------------------------------------------------------------------------- /lib/model/draft_notes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/model/draft_notes.dart -------------------------------------------------------------------------------- /lib/model/emoji.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/model/emoji.dart -------------------------------------------------------------------------------- /lib/model/notes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/model/notes.dart -------------------------------------------------------------------------------- /lib/model/recently_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/model/recently_message.dart -------------------------------------------------------------------------------- /lib/model/recommend_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/model/recommend_tab.dart -------------------------------------------------------------------------------- /lib/model/response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/model/response.dart -------------------------------------------------------------------------------- /lib/model/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/model/user.dart -------------------------------------------------------------------------------- /lib/model/websocket_message_vo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/model/websocket_message_vo.dart -------------------------------------------------------------------------------- /lib/pages/auth/login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/auth/login.dart -------------------------------------------------------------------------------- /lib/pages/auth/retrieve_account.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/auth/retrieve_account.dart -------------------------------------------------------------------------------- /lib/pages/home/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/home/home.dart -------------------------------------------------------------------------------- /lib/pages/home/index/attention.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/home/index/attention.dart -------------------------------------------------------------------------------- /lib/pages/home/index/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/home/index/index.dart -------------------------------------------------------------------------------- /lib/pages/home/index/near_notes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/home/index/near_notes.dart -------------------------------------------------------------------------------- /lib/pages/home/index/recommend.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/home/index/recommend.dart -------------------------------------------------------------------------------- /lib/pages/home/message/chat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/home/message/chat.dart -------------------------------------------------------------------------------- /lib/pages/home/message/praise_and_collection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/home/message/praise_and_collection.dart -------------------------------------------------------------------------------- /lib/pages/home/message/recently_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/home/message/recently_message.dart -------------------------------------------------------------------------------- /lib/pages/home/mine/attention_fans.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/home/mine/attention_fans.dart -------------------------------------------------------------------------------- /lib/pages/home/mine/edit_information.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/home/mine/edit_information.dart -------------------------------------------------------------------------------- /lib/pages/home/mine/mine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/home/mine/mine.dart -------------------------------------------------------------------------------- /lib/pages/home/mine/other_mine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/home/mine/other_mine.dart -------------------------------------------------------------------------------- /lib/pages/home/mine/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/home/mine/settings.dart -------------------------------------------------------------------------------- /lib/pages/notesDetail/note_details_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/notesDetail/note_details_image.dart -------------------------------------------------------------------------------- /lib/pages/notesDetail/note_details_video.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/notesDetail/note_details_video.dart -------------------------------------------------------------------------------- /lib/pages/publish/publish_note.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/publish/publish_note.dart -------------------------------------------------------------------------------- /lib/pages/publish/video_clip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/publish/video_clip.dart -------------------------------------------------------------------------------- /lib/pages/search/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/search/search.dart -------------------------------------------------------------------------------- /lib/pages/search/search_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/pages/search/search_result.dart -------------------------------------------------------------------------------- /lib/static/custom_code.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/static/custom_code.dart -------------------------------------------------------------------------------- /lib/static/custom_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/static/custom_color.dart -------------------------------------------------------------------------------- /lib/static/custom_string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/static/custom_string.dart -------------------------------------------------------------------------------- /lib/static/default_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/static/default_data.dart -------------------------------------------------------------------------------- /lib/static/emoji_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/static/emoji_map.dart -------------------------------------------------------------------------------- /lib/utils/adapt.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/utils/adapt.dart -------------------------------------------------------------------------------- /lib/utils/audio_play_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/utils/audio_play_manager.dart -------------------------------------------------------------------------------- /lib/utils/comment_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/utils/comment_util.dart -------------------------------------------------------------------------------- /lib/utils/date_show_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/utils/date_show_util.dart -------------------------------------------------------------------------------- /lib/utils/db_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/utils/db_util.dart -------------------------------------------------------------------------------- /lib/utils/image_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/utils/image_util.dart -------------------------------------------------------------------------------- /lib/utils/loading_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/utils/loading_util.dart -------------------------------------------------------------------------------- /lib/utils/parameter_verification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/utils/parameter_verification.dart -------------------------------------------------------------------------------- /lib/utils/permission_apply.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/utils/permission_apply.dart -------------------------------------------------------------------------------- /lib/utils/request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/utils/request.dart -------------------------------------------------------------------------------- /lib/utils/snackbar_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/utils/snackbar_util.dart -------------------------------------------------------------------------------- /lib/utils/store_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/utils/store_util.dart -------------------------------------------------------------------------------- /lib/utils/toast_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/utils/toast_util.dart -------------------------------------------------------------------------------- /lib/utils/websocket_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/lib/utils/websocket_manager.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/123yyh123/xiaofanshu_flutter/HEAD/web/manifest.json --------------------------------------------------------------------------------