[PR #7115] [MERGED] fix: simple table issues on mobile #7739

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/7115
Author: @LucasXu0
Created: 12/31/2024
Status: Merged
Merged: 12/31/2024
Merged by: @LucasXu0

Base: mainHead: fix_simple_table_issues_v2


📝 Commits (8)

  • 06b2460 fix: header row/column tap areas are too small on mobile
  • 41bc0dc test: header row/column tap areas are too small on mobile
  • 9b3291c feat: enable auto scroll after inserting column or row
  • 733013e fix: enter after emoji will create a softbreak on mobile
  • 47c918d fix: header row/column tap areas are too small on mobile
  • 857de04 Merge branch 'main' into fix_simple_table_issues_v2
  • 1920cad fix: simple table alignment not work for item that wraps
  • 21e72ba test: simple table alignment not work for item that wraps

📊 Changes

9 files changed (+239 additions, -40 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/mobile/document/simple_table_test.dart (+49 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_constants.dart (+3 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_operations/simple_table_style_operation.dart (+67 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_widgets/_desktop_simple_table_widget.dart (+8 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_widgets/_mobile_simple_table_widget.dart (+8 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_widgets/_simple_table_bottom_sheet_actions.dart (+60 -36)
📝 frontend/appflowy_flutter/pubspec.lock (+2 -2)
📝 frontend/appflowy_flutter/pubspec.yaml (+1 -1)
📝 frontend/appflowy_flutter/test/unit_test/simple_table/simple_table_style_operation_test.dart (+41 -0)

📄 Description

Feature Preview


PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 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/7115 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 12/31/2024 **Status:** ✅ Merged **Merged:** 12/31/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `fix_simple_table_issues_v2` --- ### 📝 Commits (8) - [`06b2460`](https://github.com/AppFlowy-IO/AppFlowy/commit/06b24600768642fc7d475760de7bbbbac2e53381) fix: header row/column tap areas are too small on mobile - [`41bc0dc`](https://github.com/AppFlowy-IO/AppFlowy/commit/41bc0dcbf096f77f0cca17d8f580b2c3a13bddde) test: header row/column tap areas are too small on mobile - [`9b3291c`](https://github.com/AppFlowy-IO/AppFlowy/commit/9b3291c8c27b35eef5fbd051c8ba85ddada53c03) feat: enable auto scroll after inserting column or row - [`733013e`](https://github.com/AppFlowy-IO/AppFlowy/commit/733013e6c313a86e2ab48e37b1c156049bb8a6f1) fix: enter after emoji will create a softbreak on mobile - [`47c918d`](https://github.com/AppFlowy-IO/AppFlowy/commit/47c918db2fd3d19101b437a0b91da2e7c71597de) fix: header row/column tap areas are too small on mobile - [`857de04`](https://github.com/AppFlowy-IO/AppFlowy/commit/857de04703d2c49e8477b2c7aeb98e1cbe22ebf4) Merge branch 'main' into fix_simple_table_issues_v2 - [`1920cad`](https://github.com/AppFlowy-IO/AppFlowy/commit/1920cad0a9ad862e99df9fc2d255c302c49c5cec) fix: simple table alignment not work for item that wraps - [`21e72ba`](https://github.com/AppFlowy-IO/AppFlowy/commit/21e72ba18eb1584498e4ae09c237480677c4bf7d) test: simple table alignment not work for item that wraps ### 📊 Changes **9 files changed** (+239 additions, -40 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/mobile/document/simple_table_test.dart` (+49 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_constants.dart` (+3 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_operations/simple_table_style_operation.dart` (+67 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_widgets/_desktop_simple_table_widget.dart` (+8 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_widgets/_mobile_simple_table_widget.dart` (+8 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_widgets/_simple_table_bottom_sheet_actions.dart` (+60 -36) 📝 `frontend/appflowy_flutter/pubspec.lock` (+2 -2) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+1 -1) 📝 `frontend/appflowy_flutter/test/unit_test/simple_table/simple_table_style_operation_test.dart` (+41 -0) </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview - [x] https://github.com/AppFlowy-IO/AppFlowy/issues/7108 - [x] https://github.com/AppFlowy-IO/AppFlowy/issues/7105 - [x] https://github.com/AppFlowy-IO/AppFlowy/issues/7107 - [x] https://github.com/AppFlowy-IO/AppFlowy/issues/7106 - [x] tests <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [x] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [x] I've listed at least one issue that this PR fixes in the description above. - [x] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [x] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:20: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#7739
No description provided.