flutter_context_menu 0.1.3 copy "flutter_context_menu: ^0.1.3" to clipboard
flutter_context_menu: ^0.1.3 copied to clipboard

Create and display a customizable context menus in your app.

example/lib/main.dart

import 'package:example/pages/demo_page.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Context Menu Demo',
      theme: ThemeData.dark(useMaterial3: true),
      home: const DemoPage(),
    );
  }
}
45
likes
160
pub points
92%
popularity
screenshot

Publisher

unverified uploader

Create and display a customizable context menus in your app.

Repository (GitHub)
View/report issues

Topics

#context-menu #options-menu #command #menu #editor

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

equatable, flutter, provider

More

Packages that depend on flutter_context_menu