[PR #607] [MERGED] Add render plugins #4232

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/607
Author: @LucasXu0
Created: 7/12/2022
Status: Merged
Merged: 7/13/2022
Merged by: @appflowy

Base: feat/flowy_editorHead: feat/flowy_editor


📝 Commits (6)

  • a298348 feat: add render plugins and example
  • 5efa402 Merge branch 'AppFlowy-IO:feat/flowy_editor' into feat/flowy_editor
  • e3c4896 feat: add image node widget in example
  • cf0da22 refactor: abstract node widget builder
  • 88f73bf chore: add comment to RenderPlugins
  • 05786d1 feat: pass BuildContext to NodeWidgetBuilder

📊 Changes

132 files changed (+4688 additions, -7 deletions)

View changed files

frontend/app_flowy/packages/flowy_editor/example/.gitignore (+47 -0)
frontend/app_flowy/packages/flowy_editor/example/.metadata (+45 -0)
frontend/app_flowy/packages/flowy_editor/example/README.md (+16 -0)
frontend/app_flowy/packages/flowy_editor/example/analysis_options.yaml (+29 -0)
frontend/app_flowy/packages/flowy_editor/example/android/.gitignore (+13 -0)
frontend/app_flowy/packages/flowy_editor/example/android/app/build.gradle (+71 -0)
frontend/app_flowy/packages/flowy_editor/example/android/app/src/debug/AndroidManifest.xml (+8 -0)
frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/AndroidManifest.xml (+34 -0)
frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt (+6 -0)
frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/drawable-v21/launch_background.xml (+12 -0)
frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/drawable/launch_background.xml (+12 -0)
frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png (+0 -0)
frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png (+0 -0)
frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png (+0 -0)
frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png (+0 -0)
frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png (+0 -0)
frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/values-night/styles.xml (+18 -0)
frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/values/styles.xml (+18 -0)
frontend/app_flowy/packages/flowy_editor/example/android/app/src/profile/AndroidManifest.xml (+8 -0)
frontend/app_flowy/packages/flowy_editor/example/android/build.gradle (+31 -0)

...and 80 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/607 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 7/12/2022 **Status:** ✅ Merged **Merged:** 7/13/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `feat/flowy_editor` ← **Head:** `feat/flowy_editor` --- ### 📝 Commits (6) - [`a298348`](https://github.com/AppFlowy-IO/AppFlowy/commit/a298348def3d24fc1056f6b2ee04c46a55b4d28d) feat: add render plugins and example - [`5efa402`](https://github.com/AppFlowy-IO/AppFlowy/commit/5efa402582bb49da8391a09a4c91185d56517323) Merge branch 'AppFlowy-IO:feat/flowy_editor' into feat/flowy_editor - [`e3c4896`](https://github.com/AppFlowy-IO/AppFlowy/commit/e3c489612eefb91d99e1bc9861a8f1161a1bac54) feat: add image node widget in example - [`cf0da22`](https://github.com/AppFlowy-IO/AppFlowy/commit/cf0da22d6348b73c4598f4529cf42e03fb34cb78) refactor: abstract node widget builder - [`88f73bf`](https://github.com/AppFlowy-IO/AppFlowy/commit/88f73bfbd4b6173b21bd88be606371bee7045af3) chore: add comment to RenderPlugins - [`05786d1`](https://github.com/AppFlowy-IO/AppFlowy/commit/05786d12556145cdc211ba9e8bd597560c869b0d) feat: pass BuildContext to NodeWidgetBuilder ### 📊 Changes **132 files changed** (+4688 additions, -7 deletions) <details> <summary>View changed files</summary> ➕ `frontend/app_flowy/packages/flowy_editor/example/.gitignore` (+47 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/.metadata` (+45 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/README.md` (+16 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/analysis_options.yaml` (+29 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/.gitignore` (+13 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/build.gradle` (+71 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/src/debug/AndroidManifest.xml` (+8 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/AndroidManifest.xml` (+34 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt` (+6 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/drawable-v21/launch_background.xml` (+12 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/drawable/launch_background.xml` (+12 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png` (+0 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png` (+0 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png` (+0 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png` (+0 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png` (+0 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/values-night/styles.xml` (+18 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/src/main/res/values/styles.xml` (+18 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/app/src/profile/AndroidManifest.xml` (+8 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/android/build.gradle` (+31 -0) _...and 80 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:36:53 +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#4232
No description provided.