lijy91-archives-repos/contextual_menu
此外掛程式允許 Flutter 桌面應用程式建立原生上下文選單。
- Stars
- 88
- Forks
- 13
- 最近推送(UTC)
- 2025年11月1日
- 專案狀態
- 已封存
語言C++CMakeDartSwiftCRuby
使用的依賴
依賴清單 5 項
- flutter
{"sdk":"flutter"} - menu_base
^0.1.1 - flutter_test開發依賴
{"sdk":"flutter"} - flutter_lints開發依賴
^2.0.0 - dependency_validator開發依賴
^3.0.0
原始 README
以下為英文專案原文快照,最新內容請造訪 GitHub。
展開 / 收合專案 README
⚠️ Migration Notice: This plugin is being migrated to libnativeapi/nativeapi-flutter
The new version is based on a unified C++ core library (libnativeapi/nativeapi), providing more complete and consistent cross-platform native API support.
contextual_menu
pub version https://img.shields.io/discord/884679008049037342.svg
This plugin allows Flutter desktop apps to create native context menus.
English | 简体中文
Platform Support
| Linux | macOS | Windows |
|---|---|---|
| ✔️ | ✔️ | ✔️ |
Screenshots
| macOS | Linux | Windows |
|---|---|---|
| https://github.com/leanflutter/contextual_menu/blob/main/screenshots/macos.png?raw=true | https://github.com/leanflutter/contextual_menu/blob/main/screenshots/linux.png?raw=true | image |
Quick Start
Installation
Add this to your package's pubspec.yaml file:
dependencies:
contextual_menu: ^0.1.2
Or
dependencies:
contextual_menu:
git:
url: https://github.com/leanflutter/contextual_menu.git
ref: main
Usage
import 'package:flutter/material.dart' hide MenuItem;
import 'package:contextual_menu/contextual_menu.dart';
Menu menu = Menu(
items: [
MenuItem(
label: 'Copy',
onClick: (_) {
print('Clicked Copy');
},
),
MenuItem(
label: 'Disabled item',
disabled: true,
),
MenuItem.checkbox(
key: 'checkbox1',
label: 'Checkbox1',
checked: true,
onClick: (menuItem) {
print('Clicked Checkbox1');
menuItem.checked = !(menuItem.checked == true);
},
),
MenuItem.separator(),
],
);
popUpContextualMenu(
_menu!,
placement: Placement.bottomLeft,
);
Please see the example app of this plugin for a full example.
Who's using it?
- Biyi (比译) - A convenient translation and dictionary app.
Related Links
- https://github.com/leanflutter/menu_base