FLUTTER ECOSYSTEM

lijy91-archives-repos/contextual_menu

이 플러그인을 사용하면 Flutter 데스크톱 앱에서 네이티브 컨텍스트 메뉴를 생성할 수 있습니다.

컨텍스트 메뉴 프로젝트 이미지
Stars
88
Forks
13
최근 푸시(UTC)
2025. 11. 1.
프로젝트 상태
보관됨
lijy91-archives-repos GitHub avatar
GITHUB Organization

lijy91-archives-repos ↗

언어C++CMakeDartSwiftCRuby

사용 중인 의존성

의존성 목록 5 개

원본 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?

Related Links

  • https://github.com/leanflutter/menu_base

License

MIT