[PR #642] [MERGED] feat: add heading widget to example. #4253

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/642
Author: @LucasXu0
Created: 7/19/2022
Status: Merged
Merged: 7/19/2022
Merged by: @LucasXu0

Base: feat/flowy_editorHead: feat/flowy_editor


📝 Commits (5)

  • d5015f0 feat: add url_launcher into dependency
  • 5cba777 Merge branch 'AppFlowy-IO:feat/flowy_editor' into feat/flowy_editor
  • f526d29 chore: support https request in macOS platform.
  • 4422d2b Merge branch 'AppFlowy-IO:feat/flowy_editor' into feat/flowy_editor
  • fef9e20 chore: add heading widget to example

📊 Changes

23 files changed (+433 additions, -101 deletions)

View changed files

📝 frontend/app_flowy/packages/flowy_editor/example/assets/document.json (+45 -24)
📝 frontend/app_flowy/packages/flowy_editor/example/ios/Flutter/Debug.xcconfig (+1 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/ios/Flutter/Release.xcconfig (+1 -0)
frontend/app_flowy/packages/flowy_editor/example/ios/Podfile (+41 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/lib/main.dart (+3 -1)
📝 frontend/app_flowy/packages/flowy_editor/example/lib/plugin/image_node_widget.dart (+1 -11)
📝 frontend/app_flowy/packages/flowy_editor/example/lib/plugin/text_node_widget.dart (+76 -63)
frontend/app_flowy/packages/flowy_editor/example/lib/plugin/text_with_heading_node_widget.dart (+45 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/linux/flutter/generated_plugin_registrant.cc (+4 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/linux/flutter/generated_plugins.cmake (+1 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/macos/Flutter/Flutter-Debug.xcconfig (+1 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/macos/Flutter/Flutter-Release.xcconfig (+1 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/macos/Flutter/GeneratedPluginRegistrant.swift (+2 -0)
frontend/app_flowy/packages/flowy_editor/example/macos/Podfile (+40 -0)
frontend/app_flowy/packages/flowy_editor/example/macos/Podfile.lock (+22 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/macos/Runner.xcodeproj/project.pbxproj (+61 -1)
📝 frontend/app_flowy/packages/flowy_editor/example/macos/Runner.xcworkspace/contents.xcworkspacedata (+3 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/macos/Runner/DebugProfile.entitlements (+2 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/macos/Runner/Release.entitlements (+2 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/pubspec.lock (+76 -1)

...and 3 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/642 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 7/19/2022 **Status:** ✅ Merged **Merged:** 7/19/2022 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `feat/flowy_editor` ← **Head:** `feat/flowy_editor` --- ### 📝 Commits (5) - [`d5015f0`](https://github.com/AppFlowy-IO/AppFlowy/commit/d5015f0dfb848de9fa3e916d6e8680e2f14809fc) feat: add url_launcher into dependency - [`5cba777`](https://github.com/AppFlowy-IO/AppFlowy/commit/5cba7774107ee6905095e4ccaeccb966588dc255) Merge branch 'AppFlowy-IO:feat/flowy_editor' into feat/flowy_editor - [`f526d29`](https://github.com/AppFlowy-IO/AppFlowy/commit/f526d29f594ff90d607ed239d56c5ac44b372fe3) chore: support https request in macOS platform. - [`4422d2b`](https://github.com/AppFlowy-IO/AppFlowy/commit/4422d2b4d2903f9f7f0b2a704f51fbb5032816b9) Merge branch 'AppFlowy-IO:feat/flowy_editor' into feat/flowy_editor - [`fef9e20`](https://github.com/AppFlowy-IO/AppFlowy/commit/fef9e20e467cf6fc0162e82383fa3edd36bd3191) chore: add heading widget to example ### 📊 Changes **23 files changed** (+433 additions, -101 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/packages/flowy_editor/example/assets/document.json` (+45 -24) 📝 `frontend/app_flowy/packages/flowy_editor/example/ios/Flutter/Debug.xcconfig` (+1 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/ios/Flutter/Release.xcconfig` (+1 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/ios/Podfile` (+41 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/lib/main.dart` (+3 -1) 📝 `frontend/app_flowy/packages/flowy_editor/example/lib/plugin/image_node_widget.dart` (+1 -11) 📝 `frontend/app_flowy/packages/flowy_editor/example/lib/plugin/text_node_widget.dart` (+76 -63) ➕ `frontend/app_flowy/packages/flowy_editor/example/lib/plugin/text_with_heading_node_widget.dart` (+45 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/linux/flutter/generated_plugin_registrant.cc` (+4 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/linux/flutter/generated_plugins.cmake` (+1 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/macos/Flutter/Flutter-Debug.xcconfig` (+1 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/macos/Flutter/Flutter-Release.xcconfig` (+1 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/macos/Flutter/GeneratedPluginRegistrant.swift` (+2 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/macos/Podfile` (+40 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/macos/Podfile.lock` (+22 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/macos/Runner.xcodeproj/project.pbxproj` (+61 -1) 📝 `frontend/app_flowy/packages/flowy_editor/example/macos/Runner.xcworkspace/contents.xcworkspacedata` (+3 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/macos/Runner/DebugProfile.entitlements` (+2 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/macos/Runner/Release.entitlements` (+2 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/pubspec.lock` (+76 -1) _...and 3 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:59 +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#4253
No description provided.