[PR #1557] [MERGED] Added Emoji Support #4820

Closed
opened 2026-03-23 22:15:58 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1557
Author: @rizwan3395
Created: 12/9/2022
Status: Merged
Merged: 12/14/2022
Merged by: @LucasXu0

Base: mainHead: main


📝 Commits (5)

  • 3f27576 added:emoji
  • 9dfc8db Update emoji_select_widget.dart
  • 15e3d3b feat: move emoji_picker to appflowy editor plugin
  • 98d408a fix: flutter analyze problems
  • 3932d06 feat: update emoji picker UI

📊 Changes

26 files changed (+4440 additions, -23 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/document/document_page.dart (+6 -3)
📝 frontend/app_flowy/packages/appflowy_editor/example/lib/pages/simple_editor.dart (+2 -0)
📝 frontend/app_flowy/packages/appflowy_editor/example/linux/flutter/generated_plugin_registrant.cc (+4 -0)
📝 frontend/app_flowy/packages/appflowy_editor/example/linux/flutter/generated_plugins.cmake (+1 -0)
📝 frontend/app_flowy/packages/appflowy_editor/example/macos/Flutter/GeneratedPluginRegistrant.swift (+4 -0)
📝 frontend/app_flowy/packages/appflowy_editor/example/macos/Podfile.lock (+12 -0)
📝 frontend/app_flowy/packages/appflowy_editor/example/windows/flutter/generated_plugin_registrant.cc (+3 -0)
📝 frontend/app_flowy/packages/appflowy_editor/example/windows/flutter/generated_plugins.cmake (+1 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/appflowy_editor.dart (+1 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/selection_menu/selection_menu_service.dart (+28 -11)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/selection_menu/selection_menu_widget.dart (+0 -1)
📝 frontend/app_flowy/packages/appflowy_editor/test/render/selection_menu/selection_menu_widget_test.dart (+0 -1)
📝 frontend/app_flowy/packages/appflowy_editor/test/service/internal_key_event_handlers/slash_handler_test.dart (+0 -1)
📝 frontend/app_flowy/packages/appflowy_editor_plugins/lib/appflowy_editor_plugins.dart (+6 -6)
frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/emoji_picker/emoji_menu_item.dart (+176 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/emoji_picker/emoji_picker.dart (+4 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/emoji_picker/src/config.dart (+164 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/emoji_picker/src/default_emoji_picker_view.dart (+299 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/emoji_picker/src/emoji_lists.dart (+3223 -0)
frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/emoji_picker/src/emoji_picker.dart (+312 -0)

...and 6 more files

📄 Description

Added Emoji Support


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/1557 **Author:** [@rizwan3395](https://github.com/rizwan3395) **Created:** 12/9/2022 **Status:** ✅ Merged **Merged:** 12/14/2022 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (5) - [`3f27576`](https://github.com/AppFlowy-IO/AppFlowy/commit/3f275760664757b67a20e7ff660dc91c259a7a73) added:emoji - [`9dfc8db`](https://github.com/AppFlowy-IO/AppFlowy/commit/9dfc8dbb43cb285956b7b14f84854231523b1bbe) Update emoji_select_widget.dart - [`15e3d3b`](https://github.com/AppFlowy-IO/AppFlowy/commit/15e3d3b4869fbdd0a7f6b5ef9988332072ced15f) feat: move emoji_picker to appflowy editor plugin - [`98d408a`](https://github.com/AppFlowy-IO/AppFlowy/commit/98d408af87eacb47820d986929c3cd28b73a7562) fix: flutter analyze problems - [`3932d06`](https://github.com/AppFlowy-IO/AppFlowy/commit/3932d0661d571a2683bc903ffbc63e20d23b950c) feat: update emoji picker UI ### 📊 Changes **26 files changed** (+4440 additions, -23 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/document/document_page.dart` (+6 -3) 📝 `frontend/app_flowy/packages/appflowy_editor/example/lib/pages/simple_editor.dart` (+2 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/example/linux/flutter/generated_plugin_registrant.cc` (+4 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/example/linux/flutter/generated_plugins.cmake` (+1 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/example/macos/Flutter/GeneratedPluginRegistrant.swift` (+4 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/example/macos/Podfile.lock` (+12 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/example/windows/flutter/generated_plugin_registrant.cc` (+3 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/example/windows/flutter/generated_plugins.cmake` (+1 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/appflowy_editor.dart` (+1 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/selection_menu/selection_menu_service.dart` (+28 -11) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/selection_menu/selection_menu_widget.dart` (+0 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/test/render/selection_menu/selection_menu_widget_test.dart` (+0 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/test/service/internal_key_event_handlers/slash_handler_test.dart` (+0 -1) 📝 `frontend/app_flowy/packages/appflowy_editor_plugins/lib/appflowy_editor_plugins.dart` (+6 -6) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/emoji_picker/emoji_menu_item.dart` (+176 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/emoji_picker/emoji_picker.dart` (+4 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/emoji_picker/src/config.dart` (+164 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/emoji_picker/src/default_emoji_picker_view.dart` (+299 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/emoji_picker/src/emoji_lists.dart` (+3223 -0) ➕ `frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/emoji_picker/src/emoji_picker.dart` (+312 -0) _...and 6 more files_ </details> ### 📄 Description Added Emoji Support --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:15:58 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#4820
No description provided.