Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Native Text processing context menu #2515

Open
1 task done
theachoem opened this issue Mar 17, 2025 · 1 comment · May be fixed by #2526
Open
1 task done

Native Text processing context menu #2515

theachoem opened this issue Mar 17, 2025 · 1 comment · May be fixed by #2526
Labels
enhancement New feature or request good first issue Good for newcomers moderate Issues that are important for improving functionality or user experience.

Comments

@theachoem
Copy link
Contributor

theachoem commented Mar 17, 2025

Have you checked for an existing issue?

Use case

Have access to native context menus like Translate, Search, etc.

Proposal


Changes in raw_editor_state.dart:
If we check in the Flutter text field, we can access those native context menus. What we need to do is load it in raw_editor_state.dart, then add them to the contextMenuButtonItems.

  @protected
  @override
  void initState() {
    super.initState();
    ....
    _initProcessTextActions();
  }

  /// Query the engine to initialize the list of text processing actions to show
  /// in the text selection toolbar.
  Future<void> _initProcessTextActions() async {
    _processTextActions.clear();
    _processTextActions.addAll(await _processTextService.queryTextActions());
  }

 List<ContextMenuButtonItem> get contextMenuButtonItems {
    return buttonItemsForToolbarOptions() ??
          EditableText.getEditableButtonItems(
            ...
          )
      ..addAll(_textProcessingActionButtonItems); <--- add them here.
  }

Reference

  • package:flutter/src/widgets/editable_text.dart:2946

I already added them to my app but it will be great to have them directly in Flutter Quill so I don't have to customize & will also benefit all Quill users.

@theachoem theachoem added the enhancement New feature or request label Mar 17, 2025
@CatHood0
Copy link
Collaborator

I'll pay attention to this as soon as I have the time. Let us finish the fixes we're working on first, and we'll likely add this (at least I'll take it into consideration for future PRs).

@CatHood0 CatHood0 self-assigned this Mar 17, 2025
@CatHood0 CatHood0 pinned this issue Mar 17, 2025
@EchoEllet EchoEllet added moderate Issues that are important for improving functionality or user experience. good first issue Good for newcomers labels Mar 24, 2025
@EchoEllet EchoEllet assigned EchoEllet and unassigned CatHood0 Mar 27, 2025
@EchoEllet EchoEllet linked a pull request Mar 27, 2025 that will close this issue
8 tasks
@EchoEllet EchoEllet removed their assignment Mar 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers moderate Issues that are important for improving functionality or user experience.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants