[PR #771] [CLOSED] feat: implement video plugins #4329

Closed
opened 2026-03-23 21:37:19 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/771
Author: @annieappflowy
Created: 8/5/2022
Status: Closed

Base: mainHead: feat/flowy_editor


📝 Commits (9)

  • a3bd9fd feat: expand rich text to handle gestures.
  • 35bafba feat: implement popup list service
  • 1166d03 feat: update selection position after updating text node style.
  • 58d656d feat: implement selectable popup list widget
  • eb7c65a feat: add empty document entry in example
  • 90fa131 fix: update the selection after render completed
  • 7513a9a Merge pull request #760 from LucasXu0/feat/toolbar_service
  • 76f8282 feat: add a example plugin
  • 48627bc Merge branch 'feat/flowy_editor' of github.com:AppFlowy-IO/AppFlowy into feat/flowy_editor

📊 Changes

27 files changed (+779 additions, -37 deletions)

View changed files

frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/bullets.svg (+8 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/checkbox.svg (+4 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/h1.svg (+4 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/h2.svg (+4 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/h3.svg (+4 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/number.svg (+3 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/text.svg (+4 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/code.svg (+4 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/assets/example.json (+15 -2)
📝 frontend/app_flowy/packages/flowy_editor/example/lib/main.dart (+42 -0)
frontend/app_flowy/packages/flowy_editor/example/lib/plugin/youtube_link_node_widget.dart (+105 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/macos/Flutter/GeneratedPluginRegistrant.swift (+2 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/macos/Podfile.lock (+6 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/pubspec.lock (+196 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/pubspec.yaml (+3 -0)
📝 frontend/app_flowy/packages/flowy_editor/lib/editor_state.dart (+1 -3)
📝 frontend/app_flowy/packages/flowy_editor/lib/extensions/node_extensions.dart (+1 -0)
📝 frontend/app_flowy/packages/flowy_editor/lib/infra/flowy_svg.dart (+10 -10)
📝 frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/flowy_rich_text.dart (+4 -1)
📝 frontend/app_flowy/packages/flowy_editor/lib/render/selection/toolbar_widget.dart (+1 -0)

...and 7 more files

📄 Description

No description provided


🔄 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/771 **Author:** [@annieappflowy](https://github.com/annieappflowy) **Created:** 8/5/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/flowy_editor` --- ### 📝 Commits (9) - [`a3bd9fd`](https://github.com/AppFlowy-IO/AppFlowy/commit/a3bd9fd0e1c854fee9265969a5b36bb0801538df) feat: expand rich text to handle gestures. - [`35bafba`](https://github.com/AppFlowy-IO/AppFlowy/commit/35bafbaadc55543a6b8a30e9cbe64c026db34949) feat: implement popup list service - [`1166d03`](https://github.com/AppFlowy-IO/AppFlowy/commit/1166d03b7558d08ef9039c33f282b065fe801af5) feat: update selection position after updating text node style. - [`58d656d`](https://github.com/AppFlowy-IO/AppFlowy/commit/58d656d9f4811d85233f26310d76928b5eedc820) feat: implement selectable popup list widget - [`eb7c65a`](https://github.com/AppFlowy-IO/AppFlowy/commit/eb7c65aa8b490c4b1852e6899d86872b6bbe060e) feat: add empty document entry in example - [`90fa131`](https://github.com/AppFlowy-IO/AppFlowy/commit/90fa1312f2b32142fda08397038287009b66616c) fix: update the selection after render completed - [`7513a9a`](https://github.com/AppFlowy-IO/AppFlowy/commit/7513a9a3f50ce0673e55cd8a0b24756c6dd7aebd) Merge pull request #760 from LucasXu0/feat/toolbar_service - [`76f8282`](https://github.com/AppFlowy-IO/AppFlowy/commit/76f8282233838c2d40d300048c8e77bc21100af4) feat: add a example plugin - [`48627bc`](https://github.com/AppFlowy-IO/AppFlowy/commit/48627bcbf83e70cabada94c7892e32a6d4219812) Merge branch 'feat/flowy_editor' of github.com:AppFlowy-IO/AppFlowy into feat/flowy_editor ### 📊 Changes **27 files changed** (+779 additions, -37 deletions) <details> <summary>View changed files</summary> ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/bullets.svg` (+8 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/checkbox.svg` (+4 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/h1.svg` (+4 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/h2.svg` (+4 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/h3.svg` (+4 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/number.svg` (+3 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/popup_list/text.svg` (+4 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/toolbar/code.svg` (+4 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/assets/example.json` (+15 -2) 📝 `frontend/app_flowy/packages/flowy_editor/example/lib/main.dart` (+42 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/lib/plugin/youtube_link_node_widget.dart` (+105 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/macos/Flutter/GeneratedPluginRegistrant.swift` (+2 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/macos/Podfile.lock` (+6 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/pubspec.lock` (+196 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/pubspec.yaml` (+3 -0) 📝 `frontend/app_flowy/packages/flowy_editor/lib/editor_state.dart` (+1 -3) 📝 `frontend/app_flowy/packages/flowy_editor/lib/extensions/node_extensions.dart` (+1 -0) 📝 `frontend/app_flowy/packages/flowy_editor/lib/infra/flowy_svg.dart` (+10 -10) 📝 `frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/flowy_rich_text.dart` (+4 -1) 📝 `frontend/app_flowy/packages/flowy_editor/lib/render/selection/toolbar_widget.dart` (+1 -0) _...and 7 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:37:19 +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#4329
No description provided.