Clipboard
Set Clipboard
Copy specified text to the device clipboard so users can paste it in other apps.
Overview
The Set Clipboard action copies text to the system clipboard for cross-app sharing:
- Copy content: Place text on the clipboard with one tap
- Quick sharing: Users can paste into messaging, email, or other apps
- UX improvement: Eliminates manual text selection and copy steps
- Information transfer: Help users save and share important details
Configuration
| Parameter | Type | Required | Description |
|---|---|---|---|
| Copy content | String | Yes | Text to copy. Supports fixed text, page variable binding, and component data binding. Text only |
Output
- No direct output
- Content is written to the system clipboard
Recommended Setup
Add a Show Toast action after Set Clipboard to confirm the copy succeeded:
Platform Support
- Web
- Native App
Examples
Copy contact number
Trigger: Copy phone number button
Copy content: +1-800-123-4567
Follow-up: Show toast "Phone number copied"Copy share link
Trigger: Share button
Copy content: Page variable share_link
Follow-up: Show toast "Link copied — share it with friends"Copy promo code
Trigger: Copy promo code button
Copy content: Current promo code from page data
Follow-up: Show toast "Promo code copied"Copy user ID
Trigger: Copy my ID button
Copy content: current user.id
Follow-up: Show toast "User ID copied"Copy address
Trigger: Copy address button
Copy content: Full address from page data
Follow-up: Show toast "Address copied"Last updated on