EditTagDialog
fun EditTagDialog(modifier: Modifier = Modifier, prompt: String, negativePrompt: String, tag: String, isNegative: Boolean, onDismissRequest: () -> Unit, onNewPrompts: (String, String) -> Unit)(source)
Renders the EditTagDialog UI for the SDAI presentation layer.
Author
Dmitriy Moroz
Parameters
modifier
Compose modifier applied to the rendered UI.
prompt
positive prompt text for image generation.
negativePrompt
negative prompt text for image generation.
tag
tag value consumed by the API.
isNegative
is negative value consumed by the API.
onDismissRequest
callback invoked by the component.
onNewPrompts
callback invoked by the component.