User Settings
A User Settings extension lets users configure their personal preferences for your app from within the Showpad app.
Declare in Manifest
Add the userSettings property to your manifest.json:
{
"userSettings": [
{
"extensionKey": "my-user-settings",
"name": "My App Preferences",
"description": "User settings for My App",
"resources": {
"folder": "my-user-settings"
}
}
]
}
Required Files
The source code for your User Settings extension lives in the resources folder you defined in the manifest. The folder contains all of your extension's files (JS, CSS, images, etc.), including one required file:
index.html- The entry point of your User Settings extension. Showpad renders it inside an iframe in the Showpad app.
Next Steps
- User Settings concept - full reference for the extension type
- Build - write your extension code
Was this page helpful?