Skip to content

Instantly share code, notes, and snippets.

@arnab
Created May 29, 2024 21:24
Show Gist options
  • Save arnab/77d3a44c17dbfdf958f1dab9e5e948f3 to your computer and use it in GitHub Desktop.
Save arnab/77d3a44c17dbfdf958f1dab9e5e948f3 to your computer and use it in GitHub Desktop.
Quickly explore complex data, by creating a button to copy the data as JSON
_copyJsonButton() => TextButton(
onPressed: () => Clipboard.setData(
ClipboardData(
text: const JsonEncoder.withIndent(' ').convert(complexData),
),
),
child: const Text('Copy JSON'),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment