You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
samples/experimental/context_menus
Brett Morgan 0ccc283a4e
Fixup for failing Beta CI (#2092)
8 months ago
..
android Rebuild runners (#1725) 1 year ago
ios Rebuild runners (#1725) 1 year ago
lib Flutter beta (#1952) 11 months ago
linux Rebuild runners (#1725) 1 year ago
macos Rebuild runners (#1725) 1 year ago
screenshots Fill out the README, and add screenshots (#1555) 2 years ago
test Update Samples for 3.16 (#2085) 8 months ago
web Custom context menu example (#1463) 2 years ago
windows Rebuild runners (#1725) 1 year ago
.gitignore Custom context menu example (#1463) 2 years ago
.metadata Rebuild runners (#1725) 1 year ago
README.md Enable the context menu examples on web (#1687) 1 year ago
analysis_options.yaml Create `analysis_defaults` package (#1654) 1 year ago
pubspec.yaml Fixup for failing Beta CI (#2092) 8 months ago

README.md

Custom Context Menus

This sample shows how to create and customize cross-platform context menus, such as the text selection toolbar on mobile or the right click menu on desktop.

Cascading example screenshot Custom button example screenshot Email example screenshot Widget example screenshot

Running the sample

Just run flutter run in the same directory as this README file.

The examples

Anywhere

Shows how to create a context menu in the parts of an app that don't related to text selection. For example, a menu in a desktop app that shows when the background of the app is right clicked.

Cascading menus

Shows how to create a context menu with cascading submenus using SubmenuButton.

Custom buttons

Shows how to customize the default buttons in the existing context menus.

Custom menu

Shows how to use any custom widgets as the menu itself, including the option to keep the default buttons.

Default values

Demonstrates how the contextMenuBuilder property works with various possible values.

Email button

Shows how to create an "email" button in the default context menu that shows only when an email address is selected.

Field types

Shows how context menus work in the various different field widgets: EditableText, TextField, and CupertinoTextField.

Global selection

Shows how to create a custom context menu in non-editable selection with SelectionArea.

On a widget

Shows how to make a widget show a context menu on right click or long press, in this case an Image widget.

Modified action

Shows how to modify an existing button so that a custom action is performed when it is tapped.

Reordered buttons

Shows how to change the order of the default buttons.