💾 Copy to Clipboard
Copies the content of this string to the system clipboard. Must be awaited as it interacts with platform services.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
🚀 Flutter_Extend Version 0.3.0 is now live! See our changelog for details.
Asynchronous String manipulation
💾 Copy to Clipboard
ElevatedButton(
onPressed: () async {
const secretCode = 'ABC-123-XYZ';
await secretCode.copyToClipboard();
},
child: const Text('Copy Code'),
);
Was this page helpful?
