android_generate_material_form
Automate the creation of Android Jetpack Compose forms with Material Design patterns. Customize forms with validation, date pickers, multi-select options, dynamic colors, light/dark themes, RTL support, and snackbar feedback.
Instructions
Generate Android Jetpack Compose form patterns (Material Design)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dynamicColor | No | Use Material 3 dynamic color | |
includeDatePicker | No | ||
includeMultiSelect | No | ||
includeValidation | No | ||
lightDark | No | Include light/dark theme setup | |
rtl | No | Add RTL considerations | |
screenName | No | Composable name | |
snackbar | No | Include snackbar feedback example |
Input Schema (JSON Schema)
{
"properties": {
"dynamicColor": {
"description": "Use Material 3 dynamic color",
"type": "boolean"
},
"includeDatePicker": {
"type": "boolean"
},
"includeMultiSelect": {
"type": "boolean"
},
"includeValidation": {
"type": "boolean"
},
"lightDark": {
"description": "Include light/dark theme setup",
"type": "boolean"
},
"rtl": {
"description": "Add RTL considerations",
"type": "boolean"
},
"screenName": {
"description": "Composable name",
"type": "string"
},
"snackbar": {
"description": "Include snackbar feedback example",
"type": "boolean"
}
},
"type": "object"
}