Bixby Developer Center

References

display

optionalvalue required

An expression that will resolve to a result that should be rendered when execution halts. The value being passed determines which result view displays.

Example

...
input (value) {
type (MyValue) {
validate {
if (...) {
halt {
dialog ("halting due to condition")
display (value.property)
}
}
}
}
}
...