Skip to content

Instantly share code, notes, and snippets.

@tech-andgar
Forked from justinmc/main.dart
Created February 13, 2023 15:51
Show Gist options
  • Save tech-andgar/7d51547284b9aee09a6a6b42a3a3b601 to your computer and use it in GitHub Desktop.
Save tech-andgar/7d51547284b9aee09a6a6b42a3a3b601 to your computer and use it in GitHub Desktop.
Flutter Forward 2023: Example of adding a custom button to a TextField's context menu on all platforms.
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Forward 2023'),
);
}
}
class MyHomePage extends StatelessWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(title),
),
body: Center(
child: Padding(
padding: const EdgeInsets.all(12.0),
child: TextField(
contextMenuBuilder: (context, editableTextState) {
return AdaptiveTextSelectionToolbar.buttonItems(
anchors: editableTextState.contextMenuAnchors,
buttonItems: [
...editableTextState.contextMenuButtonItems,
ContextMenuButtonItem(
label: 'Share',
onPressed: () { },
),
],
);
},
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment