[PR #768] [MERGED] implement autoscrolling on edge touch #4325

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/768
Author: @LucasXu0
Created: 8/5/2022
Status: Merged
Merged: 8/5/2022
Merged by: @appflowy

Base: mainHead: feat/auto_scroll_service


📝 Commits (8)

  • 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
  • e578709 feat: implement autoscrolling on edge touch
  • 70853b9 Merge remote-tracking branch 'origin/main' into feat/toolbar_service

📊 Changes

28 files changed (+861 additions, -225 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 (+56 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/lib/main.dart (+40 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/pubspec.lock (+7 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/pubspec.yaml (+1 -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/editor/editor_entry.dart (+22 -23)
📝 frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/flowy_rich_text.dart (+16 -12)
📝 frontend/app_flowy/packages/flowy_editor/lib/render/selection/toolbar_widget.dart (+1 -0)
📝 frontend/app_flowy/packages/flowy_editor/lib/service/default_text_operations/format_rich_text_style.dart (+16 -7)
📝 frontend/app_flowy/packages/flowy_editor/lib/service/editor_service.dart (+42 -29)

...and 8 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/768 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 8/5/2022 **Status:** ✅ Merged **Merged:** 8/5/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/auto_scroll_service` --- ### 📝 Commits (8) - [`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 - [`e578709`](https://github.com/AppFlowy-IO/AppFlowy/commit/e5787090d299d1cbcb4774a801d67653c22eac13) feat: implement autoscrolling on edge touch - [`70853b9`](https://github.com/AppFlowy-IO/AppFlowy/commit/70853b918e17b792a9001e51fad5cb9cd32f31d8) Merge remote-tracking branch 'origin/main' into feat/toolbar_service ### 📊 Changes **28 files changed** (+861 additions, -225 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` (+56 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/lib/main.dart` (+40 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/pubspec.lock` (+7 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/pubspec.yaml` (+1 -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/editor/editor_entry.dart` (+22 -23) 📝 `frontend/app_flowy/packages/flowy_editor/lib/render/rich_text/flowy_rich_text.dart` (+16 -12) 📝 `frontend/app_flowy/packages/flowy_editor/lib/render/selection/toolbar_widget.dart` (+1 -0) 📝 `frontend/app_flowy/packages/flowy_editor/lib/service/default_text_operations/format_rich_text_style.dart` (+16 -7) 📝 `frontend/app_flowy/packages/flowy_editor/lib/service/editor_service.dart` (+42 -29) _...and 8 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#4325
No description provided.