update-profile
Configuration options
Core structure
Examples and code snippets
Update-profile button in a jig

title: Update user profile
type: jig.default
header:
type: component.jig-header
options:
height: medium
children:
type: component.image
options:
source:
uri: https://cdn.pixabay.com/photo/2016/09/15/18/28/update-1672346_640.png
# Use a form to capture the user's profile details.
children:
- type: component.form
instanceId: user
options:
isDiscardChangesAlertEnabled: false
children:
- type: component.avatar-field
instanceId: user-avatar
options:
label: Photo
- type: component.text-field
instanceId: firstName
options:
label: First Name
- type: component.text-field
instanceId: LastName
options:
label: Last Name
- type: component.text-field
instanceId: displayName
options:
label: App Name
actions:
- children:
# Configure the action to save the details captured in the form.
- type: action.update-profile
options:
lastName: [email protected]
firstName: [email protected]
displayName: [email protected]
avatarUrl: [email protected]
style:
# Style the button to use the secondary button color.
isSecondary: true
# Provide text that displays on the action button.
title: UpdateUpdate-profile in a jig-header link

Update-profile in a jig-header icon

Update-profile with onPress event

Last updated
Was this helpful?