flutter_root_context_menu 0.6.0 copy "flutter_root_context_menu: ^0.6.0" to clipboard
flutter_root_context_menu: ^0.6.0 copied to clipboard

A customizable context menu package for Flutter with animation support, flexible styling, and web-like behavior.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_root_context_menu/flutter_root_context_menu.dart';

import 'pages/playground_page.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Context Menu Playground',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      navigatorObservers: [ContextMenuRouteObserver()],
      home: const PlaygroundPage(),
    );
  }
}
0
likes
160
points
77
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A customizable context menu package for Flutter with animation support, flexible styling, and web-like behavior.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_root_context_menu