Developer utilitiesOffline documentationAndroid + Windows

Snippets and Notes#

Snippets/Notes stores reusable developer text locally.

Create a snippet#

  1. Add a title.
  2. Choose or enter a language or category.
  3. Add the reusable content.
  4. Save and search it later.

Good uses#

  • Command examples
  • Boilerplate
  • Checklists
  • Small private notes
  • Troubleshooting steps

Sensitive values#

Do not save production credentials in an ordinary snippet. Protected API variables are a better location for supported request credentials.

Export and clipboard#

Review content before copying or exporting. Clipboard managers and synchronized clipboards can retain copied text.

Useful snippet format#

Title: Flutter release checks
Language/category: PowerShell
Content:
flutter clean
flutter pub get
flutter analyze
flutter test
flutter build appbundle --release

Keep sensitive values in a supported protected API variable rather than an ordinary snippet.