├── .gitignore ├── .metadata ├── LICENSE ├── README-CN.md ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── taxze │ │ │ │ └── chat │ │ │ │ └── craft │ │ │ │ └── flutter_chat_craft │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── anim │ ├── voice_black.json │ ├── voice_blue.json │ ├── voice_record.json │ └── voice_ripple.json ├── fonts │ └── bahnschrift.ttf ├── images │ ├── app_icon.svg │ ├── back.svg │ ├── ic_add.svg │ ├── ic_arrow.svg │ ├── ic_audio.svg │ ├── ic_back_left.svg │ ├── ic_browser.png │ ├── ic_camera.svg │ ├── ic_chat_tools.svg │ ├── ic_check.svg │ ├── ic_collect.svg │ ├── ic_down_arrow.svg │ ├── ic_email.svg │ ├── ic_friend_setting.svg │ ├── ic_group_chat.svg │ ├── ic_home.svg │ ├── ic_keyboard.svg │ ├── ic_like.svg │ ├── ic_logout.svg │ ├── ic_mass_send.svg │ ├── ic_me.svg │ ├── ic_message_copy.svg │ ├── ic_message_forword.svg │ ├── ic_message_reply.svg │ ├── ic_more.svg │ ├── ic_new_chat_icon.svg │ ├── ic_new_contact_icon.svg │ ├── ic_new_group_icon.svg │ ├── ic_not_show_pwd.svg │ ├── ic_phone.svg │ ├── ic_photo_album.svg │ ├── ic_private_chat.svg │ ├── ic_scan.svg │ ├── ic_search.svg │ ├── ic_send.svg │ ├── ic_share_add.svg │ ├── ic_share_app.svg │ ├── ic_show_pwd.svg │ ├── ic_story_collect.svg │ ├── ic_story_comment.svg │ ├── ic_story_like.svg │ ├── ic_story_share.svg │ ├── ic_voice.svg │ ├── replaced │ │ └── close.png │ ├── share │ │ ├── github.png │ │ ├── juejin.png │ │ ├── wechat.png │ │ └── wechat_taxze.jpg │ └── voice │ │ ├── ic_voice_black.webp │ │ ├── ic_voice_blue.webp │ │ ├── ic_voice_cancel.webp │ │ ├── ic_voice_confirm.webp │ │ ├── ic_voice_convert_fail.webp │ │ ├── ic_voice_convert_suc.webp │ │ ├── ic_voice_record_bg1.webp │ │ ├── ic_voice_record_bg2.webp │ │ ├── ic_voice_record_cancel_grey.webp │ │ ├── ic_voice_record_cancel_white.webp │ │ ├── ic_voice_record_speaker.webp │ │ ├── ic_voice_record_zi_grey.webp │ │ └── ic_voice_record_zi_white.webp └── key │ └── public.pem ├── devtools_options.yaml ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── 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 ├── app.dart ├── common │ ├── apis.dart │ ├── config.dart │ ├── fluent_emoji_icon_data.dart │ ├── global_data.dart │ ├── ip_config.dart │ └── urls.dart ├── core │ ├── app_controller.dart │ └── permission_controller.dart ├── im │ └── im_utils.dart ├── main.dart ├── models │ ├── api_resp.dart │ ├── contact.dart │ ├── file_path.dart │ ├── message.dart │ ├── user_info.dart │ └── user_story.dart ├── pages │ ├── chat │ │ ├── add_friend │ │ │ ├── add_friend_binding.dart │ │ │ ├── add_friend_logic.dart │ │ │ └── add_friend_view.dart │ │ ├── chat │ │ │ ├── chat_binding.dart │ │ │ ├── chat_logic.dart │ │ │ ├── chat_view.dart │ │ │ └── widget │ │ │ │ ├── chat_input_box_view.dart │ │ │ │ ├── chat_item_view.dart │ │ │ │ ├── chat_listview.dart │ │ │ │ ├── chat_picture.dart │ │ │ │ ├── chat_quote_text.dart │ │ │ │ ├── chat_reply_emoji.dart │ │ │ │ ├── chat_send_failed_view.dart │ │ │ │ ├── chat_send_progress.dart │ │ │ │ ├── chat_single_layout.dart │ │ │ │ ├── chat_text.dart │ │ │ │ ├── chat_typing_view.dart │ │ │ │ ├── chat_voice_record_widget │ │ │ │ ├── chat_voice_record_bar.dart │ │ │ │ ├── chat_voice_record_layout.dart │ │ │ │ ├── chat_voice_record_view.dart │ │ │ │ └── voice_record.dart │ │ │ │ ├── chat_voice_view.dart │ │ │ │ ├── interactive_dialog │ │ │ │ ├── interactive_dialog.dart │ │ │ │ ├── list_meme_widget.dart │ │ │ │ └── list_tools_widget.dart │ │ │ │ └── menu │ │ │ │ ├── chat_menu.dart │ │ │ │ └── message_custom_popup.dart │ │ ├── conversation_binding.dart │ │ ├── conversation_logic.dart │ │ ├── conversation_view.dart │ │ ├── new_chat │ │ │ ├── new_chat_binding.dart │ │ │ ├── new_chat_logic.dart │ │ │ ├── new_chat_view.dart │ │ │ └── widget │ │ │ │ ├── new_chat_cursor.dart │ │ │ │ ├── new_chat_index_bar.dart │ │ │ │ └── new_chat_item.dart │ │ ├── rtc │ │ │ └── video_call │ │ │ │ ├── video_call_binding.dart │ │ │ │ ├── video_call_logic.dart │ │ │ │ └── video_call_page.dart │ │ └── widget │ │ │ ├── appbar_title.dart │ │ │ ├── conversation_item_view.dart │ │ │ └── dashed_circle_border.dart │ ├── common │ │ └── check_code │ │ │ ├── check_code_binding.dart │ │ │ ├── check_code_logic.dart │ │ │ └── check_code_view.dart │ ├── home │ │ ├── home_binding.dart │ │ ├── home_logic.dart │ │ ├── home_view.dart │ │ └── widget │ │ │ └── home_dialog.dart │ ├── login │ │ ├── invite │ │ │ ├── invite_binding.dart │ │ │ ├── invite_logic.dart │ │ │ ├── invite_state.dart │ │ │ └── invite_view.dart │ │ ├── login_binding.dart │ │ ├── login_email │ │ │ ├── login_email_binding.dart │ │ │ ├── login_email_logic.dart │ │ │ └── login_email_view.dart │ │ ├── login_logic.dart │ │ ├── login_view.dart │ │ ├── register │ │ │ ├── register_binding.dart │ │ │ ├── register_logic.dart │ │ │ └── register_view.dart │ │ └── widget │ │ │ └── login_universal_widget.dart │ ├── mine │ │ ├── mine_binding.dart │ │ ├── mine_logic.dart │ │ ├── mine_story_details │ │ │ ├── mine_story_details_binding.dart │ │ │ ├── mine_story_details_logic.dart │ │ │ ├── mine_story_details_view.dart │ │ │ └── widget │ │ │ │ └── mine_story_interactive_dialog │ │ │ │ ├── list_meme_widget.dart │ │ │ │ ├── list_reply_input.dart │ │ │ │ └── mine_story_interactive_dialog.dart │ │ ├── mine_view.dart │ │ └── profile │ │ │ ├── profile_binding.dart │ │ │ ├── profile_logic.dart │ │ │ ├── profile_state.dart │ │ │ ├── profile_view.dart │ │ │ └── widget │ │ │ ├── password_dialog.dart │ │ │ └── setting_dialog.dart │ └── splash │ │ ├── contact_me_dialog.dart │ │ ├── splash_binding.dart │ │ ├── splash_logic.dart │ │ └── splash_view.dart ├── res │ ├── images.dart │ ├── lang │ │ ├── en_US.dart │ │ └── zh_CN.dart │ ├── strings.dart │ └── styles.dart ├── routes │ ├── app_navigator.dart │ ├── app_pages.dart │ ├── app_routes.dart │ └── router_utils.dart ├── utils │ ├── app_reg_exp.dart │ ├── app_utils.dart │ ├── db │ │ ├── base_db_provider.dart │ │ ├── conversation_db_provider.dart │ │ └── sql_manager.dart │ ├── device_utils.dart │ ├── file_util.dart │ ├── http_util.dart │ ├── image_util.dart │ ├── object_util.dart │ ├── permission_util.dart │ ├── regex_util.dart │ ├── sp │ │ ├── data_persistence.dart │ │ └── sp_util.dart │ ├── touch_close_keyboard.dart │ └── web_socket_manager.dart └── widget │ ├── app_view.dart │ ├── aspect_ratio_image.dart │ ├── avatar_widget.dart │ ├── barrage │ ├── barrage_config.dart │ ├── barrage_controller.dart │ ├── barrage_model.dart │ ├── barrage_track.dart │ ├── barrage_utils.dart │ └── barrage_view.dart │ ├── cached_image.dart │ ├── click_item.dart │ ├── dashed_circle_border.dart │ ├── expanded_viewport.dart │ ├── loading_view.dart │ ├── mimicking_hero_animation_image.dart │ ├── my_appbar.dart │ ├── my_check_box.dart │ ├── photo_browser.dart │ ├── text_btn.dart │ ├── toast_utils.dart │ └── water_mark_view.dart ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── 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 │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── 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 └── 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/LICENSE -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/taxze/chat/craft/flutter_chat_craft/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/app/src/main/kotlin/com/taxze/chat/craft/flutter_chat_craft/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/anim/voice_black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/anim/voice_black.json -------------------------------------------------------------------------------- /assets/anim/voice_blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/anim/voice_blue.json -------------------------------------------------------------------------------- /assets/anim/voice_record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/anim/voice_record.json -------------------------------------------------------------------------------- /assets/anim/voice_ripple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/anim/voice_ripple.json -------------------------------------------------------------------------------- /assets/fonts/bahnschrift.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/fonts/bahnschrift.ttf -------------------------------------------------------------------------------- /assets/images/app_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/app_icon.svg -------------------------------------------------------------------------------- /assets/images/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/back.svg -------------------------------------------------------------------------------- /assets/images/ic_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_add.svg -------------------------------------------------------------------------------- /assets/images/ic_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_arrow.svg -------------------------------------------------------------------------------- /assets/images/ic_audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_audio.svg -------------------------------------------------------------------------------- /assets/images/ic_back_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_back_left.svg -------------------------------------------------------------------------------- /assets/images/ic_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_browser.png -------------------------------------------------------------------------------- /assets/images/ic_camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_camera.svg -------------------------------------------------------------------------------- /assets/images/ic_chat_tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_chat_tools.svg -------------------------------------------------------------------------------- /assets/images/ic_check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_check.svg -------------------------------------------------------------------------------- /assets/images/ic_collect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_collect.svg -------------------------------------------------------------------------------- /assets/images/ic_down_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_down_arrow.svg -------------------------------------------------------------------------------- /assets/images/ic_email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_email.svg -------------------------------------------------------------------------------- /assets/images/ic_friend_setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_friend_setting.svg -------------------------------------------------------------------------------- /assets/images/ic_group_chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_group_chat.svg -------------------------------------------------------------------------------- /assets/images/ic_home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_home.svg -------------------------------------------------------------------------------- /assets/images/ic_keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_keyboard.svg -------------------------------------------------------------------------------- /assets/images/ic_like.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_like.svg -------------------------------------------------------------------------------- /assets/images/ic_logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_logout.svg -------------------------------------------------------------------------------- /assets/images/ic_mass_send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_mass_send.svg -------------------------------------------------------------------------------- /assets/images/ic_me.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_me.svg -------------------------------------------------------------------------------- /assets/images/ic_message_copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_message_copy.svg -------------------------------------------------------------------------------- /assets/images/ic_message_forword.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_message_forword.svg -------------------------------------------------------------------------------- /assets/images/ic_message_reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_message_reply.svg -------------------------------------------------------------------------------- /assets/images/ic_more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_more.svg -------------------------------------------------------------------------------- /assets/images/ic_new_chat_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_new_chat_icon.svg -------------------------------------------------------------------------------- /assets/images/ic_new_contact_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_new_contact_icon.svg -------------------------------------------------------------------------------- /assets/images/ic_new_group_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_new_group_icon.svg -------------------------------------------------------------------------------- /assets/images/ic_not_show_pwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_not_show_pwd.svg -------------------------------------------------------------------------------- /assets/images/ic_phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_phone.svg -------------------------------------------------------------------------------- /assets/images/ic_photo_album.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_photo_album.svg -------------------------------------------------------------------------------- /assets/images/ic_private_chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_private_chat.svg -------------------------------------------------------------------------------- /assets/images/ic_scan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_scan.svg -------------------------------------------------------------------------------- /assets/images/ic_search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_search.svg -------------------------------------------------------------------------------- /assets/images/ic_send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_send.svg -------------------------------------------------------------------------------- /assets/images/ic_share_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_share_add.svg -------------------------------------------------------------------------------- /assets/images/ic_share_app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_share_app.svg -------------------------------------------------------------------------------- /assets/images/ic_show_pwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_show_pwd.svg -------------------------------------------------------------------------------- /assets/images/ic_story_collect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_story_collect.svg -------------------------------------------------------------------------------- /assets/images/ic_story_comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_story_comment.svg -------------------------------------------------------------------------------- /assets/images/ic_story_like.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_story_like.svg -------------------------------------------------------------------------------- /assets/images/ic_story_share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_story_share.svg -------------------------------------------------------------------------------- /assets/images/ic_voice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/ic_voice.svg -------------------------------------------------------------------------------- /assets/images/replaced/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/replaced/close.png -------------------------------------------------------------------------------- /assets/images/share/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/share/github.png -------------------------------------------------------------------------------- /assets/images/share/juejin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/share/juejin.png -------------------------------------------------------------------------------- /assets/images/share/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/share/wechat.png -------------------------------------------------------------------------------- /assets/images/share/wechat_taxze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/share/wechat_taxze.jpg -------------------------------------------------------------------------------- /assets/images/voice/ic_voice_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/voice/ic_voice_black.webp -------------------------------------------------------------------------------- /assets/images/voice/ic_voice_blue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/voice/ic_voice_blue.webp -------------------------------------------------------------------------------- /assets/images/voice/ic_voice_cancel.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/voice/ic_voice_cancel.webp -------------------------------------------------------------------------------- /assets/images/voice/ic_voice_confirm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/voice/ic_voice_confirm.webp -------------------------------------------------------------------------------- /assets/images/voice/ic_voice_convert_fail.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/voice/ic_voice_convert_fail.webp -------------------------------------------------------------------------------- /assets/images/voice/ic_voice_convert_suc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/voice/ic_voice_convert_suc.webp -------------------------------------------------------------------------------- /assets/images/voice/ic_voice_record_bg1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/voice/ic_voice_record_bg1.webp -------------------------------------------------------------------------------- /assets/images/voice/ic_voice_record_bg2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/voice/ic_voice_record_bg2.webp -------------------------------------------------------------------------------- /assets/images/voice/ic_voice_record_cancel_grey.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/voice/ic_voice_record_cancel_grey.webp -------------------------------------------------------------------------------- /assets/images/voice/ic_voice_record_cancel_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/voice/ic_voice_record_cancel_white.webp -------------------------------------------------------------------------------- /assets/images/voice/ic_voice_record_speaker.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/voice/ic_voice_record_speaker.webp -------------------------------------------------------------------------------- /assets/images/voice/ic_voice_record_zi_grey.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/voice/ic_voice_record_zi_grey.webp -------------------------------------------------------------------------------- /assets/images/voice/ic_voice_record_zi_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/images/voice/ic_voice_record_zi_white.webp -------------------------------------------------------------------------------- /assets/key/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/assets/key/public.pem -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- 1 | extensions: 2 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/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/taxze6/flutter-chat-craft/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/app.dart -------------------------------------------------------------------------------- /lib/common/apis.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/common/apis.dart -------------------------------------------------------------------------------- /lib/common/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/common/config.dart -------------------------------------------------------------------------------- /lib/common/fluent_emoji_icon_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/common/fluent_emoji_icon_data.dart -------------------------------------------------------------------------------- /lib/common/global_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/common/global_data.dart -------------------------------------------------------------------------------- /lib/common/ip_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/common/ip_config.dart -------------------------------------------------------------------------------- /lib/common/urls.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/common/urls.dart -------------------------------------------------------------------------------- /lib/core/app_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/core/app_controller.dart -------------------------------------------------------------------------------- /lib/core/permission_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/core/permission_controller.dart -------------------------------------------------------------------------------- /lib/im/im_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/im/im_utils.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/api_resp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/models/api_resp.dart -------------------------------------------------------------------------------- /lib/models/contact.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/models/contact.dart -------------------------------------------------------------------------------- /lib/models/file_path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/models/file_path.dart -------------------------------------------------------------------------------- /lib/models/message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/models/message.dart -------------------------------------------------------------------------------- /lib/models/user_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/models/user_info.dart -------------------------------------------------------------------------------- /lib/models/user_story.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/models/user_story.dart -------------------------------------------------------------------------------- /lib/pages/chat/add_friend/add_friend_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/add_friend/add_friend_binding.dart -------------------------------------------------------------------------------- /lib/pages/chat/add_friend/add_friend_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/add_friend/add_friend_logic.dart -------------------------------------------------------------------------------- /lib/pages/chat/add_friend/add_friend_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/add_friend/add_friend_view.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/chat_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/chat_binding.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/chat_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/chat_logic.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/chat_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/chat_view.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_input_box_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_input_box_view.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_item_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_item_view.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_listview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_listview.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_picture.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_picture.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_quote_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_quote_text.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_reply_emoji.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_reply_emoji.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_send_failed_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_send_failed_view.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_send_progress.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_send_progress.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_single_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_single_layout.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_text.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_typing_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_typing_view.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_voice_record_widget/chat_voice_record_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_voice_record_widget/chat_voice_record_bar.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_voice_record_widget/chat_voice_record_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_voice_record_widget/chat_voice_record_layout.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_voice_record_widget/chat_voice_record_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_voice_record_widget/chat_voice_record_view.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_voice_record_widget/voice_record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_voice_record_widget/voice_record.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/chat_voice_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/chat_voice_view.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/interactive_dialog/interactive_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/interactive_dialog/interactive_dialog.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/interactive_dialog/list_meme_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/interactive_dialog/list_meme_widget.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/interactive_dialog/list_tools_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/interactive_dialog/list_tools_widget.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/menu/chat_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/menu/chat_menu.dart -------------------------------------------------------------------------------- /lib/pages/chat/chat/widget/menu/message_custom_popup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/chat/widget/menu/message_custom_popup.dart -------------------------------------------------------------------------------- /lib/pages/chat/conversation_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/conversation_binding.dart -------------------------------------------------------------------------------- /lib/pages/chat/conversation_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/conversation_logic.dart -------------------------------------------------------------------------------- /lib/pages/chat/conversation_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/conversation_view.dart -------------------------------------------------------------------------------- /lib/pages/chat/new_chat/new_chat_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/new_chat/new_chat_binding.dart -------------------------------------------------------------------------------- /lib/pages/chat/new_chat/new_chat_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/new_chat/new_chat_logic.dart -------------------------------------------------------------------------------- /lib/pages/chat/new_chat/new_chat_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/new_chat/new_chat_view.dart -------------------------------------------------------------------------------- /lib/pages/chat/new_chat/widget/new_chat_cursor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/new_chat/widget/new_chat_cursor.dart -------------------------------------------------------------------------------- /lib/pages/chat/new_chat/widget/new_chat_index_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/new_chat/widget/new_chat_index_bar.dart -------------------------------------------------------------------------------- /lib/pages/chat/new_chat/widget/new_chat_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/new_chat/widget/new_chat_item.dart -------------------------------------------------------------------------------- /lib/pages/chat/rtc/video_call/video_call_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/rtc/video_call/video_call_binding.dart -------------------------------------------------------------------------------- /lib/pages/chat/rtc/video_call/video_call_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/rtc/video_call/video_call_logic.dart -------------------------------------------------------------------------------- /lib/pages/chat/rtc/video_call/video_call_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/rtc/video_call/video_call_page.dart -------------------------------------------------------------------------------- /lib/pages/chat/widget/appbar_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/widget/appbar_title.dart -------------------------------------------------------------------------------- /lib/pages/chat/widget/conversation_item_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/widget/conversation_item_view.dart -------------------------------------------------------------------------------- /lib/pages/chat/widget/dashed_circle_border.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/chat/widget/dashed_circle_border.dart -------------------------------------------------------------------------------- /lib/pages/common/check_code/check_code_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/common/check_code/check_code_binding.dart -------------------------------------------------------------------------------- /lib/pages/common/check_code/check_code_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/common/check_code/check_code_logic.dart -------------------------------------------------------------------------------- /lib/pages/common/check_code/check_code_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/common/check_code/check_code_view.dart -------------------------------------------------------------------------------- /lib/pages/home/home_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/home/home_binding.dart -------------------------------------------------------------------------------- /lib/pages/home/home_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/home/home_logic.dart -------------------------------------------------------------------------------- /lib/pages/home/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/home/home_view.dart -------------------------------------------------------------------------------- /lib/pages/home/widget/home_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/home/widget/home_dialog.dart -------------------------------------------------------------------------------- /lib/pages/login/invite/invite_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/login/invite/invite_binding.dart -------------------------------------------------------------------------------- /lib/pages/login/invite/invite_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/login/invite/invite_logic.dart -------------------------------------------------------------------------------- /lib/pages/login/invite/invite_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/login/invite/invite_state.dart -------------------------------------------------------------------------------- /lib/pages/login/invite/invite_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/login/invite/invite_view.dart -------------------------------------------------------------------------------- /lib/pages/login/login_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/login/login_binding.dart -------------------------------------------------------------------------------- /lib/pages/login/login_email/login_email_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/login/login_email/login_email_binding.dart -------------------------------------------------------------------------------- /lib/pages/login/login_email/login_email_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/login/login_email/login_email_logic.dart -------------------------------------------------------------------------------- /lib/pages/login/login_email/login_email_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/login/login_email/login_email_view.dart -------------------------------------------------------------------------------- /lib/pages/login/login_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/login/login_logic.dart -------------------------------------------------------------------------------- /lib/pages/login/login_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/login/login_view.dart -------------------------------------------------------------------------------- /lib/pages/login/register/register_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/login/register/register_binding.dart -------------------------------------------------------------------------------- /lib/pages/login/register/register_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/login/register/register_logic.dart -------------------------------------------------------------------------------- /lib/pages/login/register/register_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/login/register/register_view.dart -------------------------------------------------------------------------------- /lib/pages/login/widget/login_universal_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/login/widget/login_universal_widget.dart -------------------------------------------------------------------------------- /lib/pages/mine/mine_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/mine_binding.dart -------------------------------------------------------------------------------- /lib/pages/mine/mine_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/mine_logic.dart -------------------------------------------------------------------------------- /lib/pages/mine/mine_story_details/mine_story_details_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/mine_story_details/mine_story_details_binding.dart -------------------------------------------------------------------------------- /lib/pages/mine/mine_story_details/mine_story_details_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/mine_story_details/mine_story_details_logic.dart -------------------------------------------------------------------------------- /lib/pages/mine/mine_story_details/mine_story_details_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/mine_story_details/mine_story_details_view.dart -------------------------------------------------------------------------------- /lib/pages/mine/mine_story_details/widget/mine_story_interactive_dialog/list_meme_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/mine_story_details/widget/mine_story_interactive_dialog/list_meme_widget.dart -------------------------------------------------------------------------------- /lib/pages/mine/mine_story_details/widget/mine_story_interactive_dialog/list_reply_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/mine_story_details/widget/mine_story_interactive_dialog/list_reply_input.dart -------------------------------------------------------------------------------- /lib/pages/mine/mine_story_details/widget/mine_story_interactive_dialog/mine_story_interactive_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/mine_story_details/widget/mine_story_interactive_dialog/mine_story_interactive_dialog.dart -------------------------------------------------------------------------------- /lib/pages/mine/mine_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/mine_view.dart -------------------------------------------------------------------------------- /lib/pages/mine/profile/profile_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/profile/profile_binding.dart -------------------------------------------------------------------------------- /lib/pages/mine/profile/profile_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/profile/profile_logic.dart -------------------------------------------------------------------------------- /lib/pages/mine/profile/profile_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/profile/profile_state.dart -------------------------------------------------------------------------------- /lib/pages/mine/profile/profile_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/profile/profile_view.dart -------------------------------------------------------------------------------- /lib/pages/mine/profile/widget/password_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/profile/widget/password_dialog.dart -------------------------------------------------------------------------------- /lib/pages/mine/profile/widget/setting_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/mine/profile/widget/setting_dialog.dart -------------------------------------------------------------------------------- /lib/pages/splash/contact_me_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/splash/contact_me_dialog.dart -------------------------------------------------------------------------------- /lib/pages/splash/splash_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/splash/splash_binding.dart -------------------------------------------------------------------------------- /lib/pages/splash/splash_logic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/splash/splash_logic.dart -------------------------------------------------------------------------------- /lib/pages/splash/splash_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/pages/splash/splash_view.dart -------------------------------------------------------------------------------- /lib/res/images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/res/images.dart -------------------------------------------------------------------------------- /lib/res/lang/en_US.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/res/lang/en_US.dart -------------------------------------------------------------------------------- /lib/res/lang/zh_CN.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/res/lang/zh_CN.dart -------------------------------------------------------------------------------- /lib/res/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/res/strings.dart -------------------------------------------------------------------------------- /lib/res/styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/res/styles.dart -------------------------------------------------------------------------------- /lib/routes/app_navigator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/routes/app_navigator.dart -------------------------------------------------------------------------------- /lib/routes/app_pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/routes/app_pages.dart -------------------------------------------------------------------------------- /lib/routes/app_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/routes/app_routes.dart -------------------------------------------------------------------------------- /lib/routes/router_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/routes/router_utils.dart -------------------------------------------------------------------------------- /lib/utils/app_reg_exp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/app_reg_exp.dart -------------------------------------------------------------------------------- /lib/utils/app_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/app_utils.dart -------------------------------------------------------------------------------- /lib/utils/db/base_db_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/db/base_db_provider.dart -------------------------------------------------------------------------------- /lib/utils/db/conversation_db_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/db/conversation_db_provider.dart -------------------------------------------------------------------------------- /lib/utils/db/sql_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/db/sql_manager.dart -------------------------------------------------------------------------------- /lib/utils/device_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/device_utils.dart -------------------------------------------------------------------------------- /lib/utils/file_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/file_util.dart -------------------------------------------------------------------------------- /lib/utils/http_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/http_util.dart -------------------------------------------------------------------------------- /lib/utils/image_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/image_util.dart -------------------------------------------------------------------------------- /lib/utils/object_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/object_util.dart -------------------------------------------------------------------------------- /lib/utils/permission_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/permission_util.dart -------------------------------------------------------------------------------- /lib/utils/regex_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/regex_util.dart -------------------------------------------------------------------------------- /lib/utils/sp/data_persistence.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/sp/data_persistence.dart -------------------------------------------------------------------------------- /lib/utils/sp/sp_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/sp/sp_util.dart -------------------------------------------------------------------------------- /lib/utils/touch_close_keyboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/touch_close_keyboard.dart -------------------------------------------------------------------------------- /lib/utils/web_socket_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/utils/web_socket_manager.dart -------------------------------------------------------------------------------- /lib/widget/app_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/app_view.dart -------------------------------------------------------------------------------- /lib/widget/aspect_ratio_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/aspect_ratio_image.dart -------------------------------------------------------------------------------- /lib/widget/avatar_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/avatar_widget.dart -------------------------------------------------------------------------------- /lib/widget/barrage/barrage_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/barrage/barrage_config.dart -------------------------------------------------------------------------------- /lib/widget/barrage/barrage_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/barrage/barrage_controller.dart -------------------------------------------------------------------------------- /lib/widget/barrage/barrage_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/barrage/barrage_model.dart -------------------------------------------------------------------------------- /lib/widget/barrage/barrage_track.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/barrage/barrage_track.dart -------------------------------------------------------------------------------- /lib/widget/barrage/barrage_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/barrage/barrage_utils.dart -------------------------------------------------------------------------------- /lib/widget/barrage/barrage_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/barrage/barrage_view.dart -------------------------------------------------------------------------------- /lib/widget/cached_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/cached_image.dart -------------------------------------------------------------------------------- /lib/widget/click_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/click_item.dart -------------------------------------------------------------------------------- /lib/widget/dashed_circle_border.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/dashed_circle_border.dart -------------------------------------------------------------------------------- /lib/widget/expanded_viewport.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/expanded_viewport.dart -------------------------------------------------------------------------------- /lib/widget/loading_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/loading_view.dart -------------------------------------------------------------------------------- /lib/widget/mimicking_hero_animation_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/mimicking_hero_animation_image.dart -------------------------------------------------------------------------------- /lib/widget/my_appbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/my_appbar.dart -------------------------------------------------------------------------------- /lib/widget/my_check_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/my_check_box.dart -------------------------------------------------------------------------------- /lib/widget/photo_browser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/photo_browser.dart -------------------------------------------------------------------------------- /lib/widget/text_btn.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/text_btn.dart -------------------------------------------------------------------------------- /lib/widget/toast_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/toast_utils.dart -------------------------------------------------------------------------------- /lib/widget/water_mark_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/lib/widget/water_mark_view.dart -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taxze6/flutter-chat-craft/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------