context_menu_android 1.0.1
context_menu_android: ^1.0.1 copied to clipboard
A Flutter package that brings iOS-style context menu to Android.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:context_menu_android/context_menu_android.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Context Menu Example',
theme: ThemeData.light(),
home: const ContextMenuDemo(),
);
}
}
class ContextMenuDemo extends StatelessWidget {
const ContextMenuDemo({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('iOS Style Context Menu')),
body: Center(
child: GestureDetector(
onLongPress: () {
showDialog(
context: context,
builder: (ctx) => iOSStyleContextMenu(
ctx,
child: Container(
width: double.infinity,
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(12),
),
margin: const EdgeInsets.symmetric(horizontal: 24),
padding: const EdgeInsets.all(16),
child: Text(
'Long press to open context menu',
style: Theme.of(ctx).textTheme.bodyLarge,
),
),
actions: [
ContextMenuAndroid(
icon: Icons.share,
label: 'Share',
onTap: () => debugPrint('Share pressed'),
),
ContextMenuAndroid(
icon: Icons.copy,
label: 'Copy',
onTap: () => debugPrint('Copy pressed'),
),
ContextMenuAndroid(
icon: Icons.delete,
label: 'Delete',
onTap: () => debugPrint('Delete pressed'),
),
],
),
);
},
child: Container(
padding: const EdgeInsets.all(24),
decoration: BoxDecoration(
color: Colors.blueAccent,
borderRadius: BorderRadius.circular(12),
),
child: const Text(
'Long Press Me',
style: TextStyle(color: Colors.white, fontSize: 18),
),
),
),
),
);
}
}