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

Update context-menus.md link references #11602

Merged
merged 1 commit into from
Jan 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/content/release/breaking-changes/context-menus.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ context menu widgets.
Here's an example that shows how to add a **Send email** button to the default
context menus whenever an email address is selected. The full code can be found
in the samples repository in
[email_button_page.dart]({{site.repo.samples}}/blob/main/experimental/context_menus/lib/email_button_page.dart)
[email_button_page.dart]({{site.repo.samples}}/blob/main/context_menus/lib/email_button_page.dart)
on GitHub.

```dart
Expand Down Expand Up @@ -65,7 +65,7 @@ TextField(
```

A large number of examples of different custom context menus are available
[in the samples repo]({{site.repo.samples}}/tree/main/experimental/context_menus)
[in the samples repo]({{site.repo.samples}}/tree/main/context_menus)
on GitHub.

All related deprecated features were flagged with the deprecation warning "Use
Expand Down Expand Up @@ -219,7 +219,7 @@ TextField(

A full example of modifying a built-in context menu action can be found in the
samples repository in
[modified_action_page.dart]({{site.repo.samples}}/blob/main/experimental/context_menus/lib/modified_action_page.dart)
[modified_action_page.dart]({{site.repo.samples}}/blob/main/context_menus/lib/modified_action_page.dart)
on GitHub.

### [`buildToolbar`]({{site.api}}/flutter/widgets/TextSelectionControls/buildToolbar.html)
Expand Down Expand Up @@ -312,7 +312,7 @@ class _MyTextField extends StatelessWidget {

A full example of building a custom context menu can be found in the samples
repository in
[`custom_menu_page.dart`]({{site.repo.samples}}/blob/main/experimental/context_menus/lib/custom_menu_page.dart)
[`custom_menu_page.dart`]({{site.repo.samples}}/blob/main/context_menus/lib/custom_menu_page.dart)
on GitHub.

## Timeline
Expand Down
Loading