Bixby Developer Center

References

allow-dialogs-on-detail-pages

optionalvalue optional

Allows capsules to present dialogs on detail pages. When enabled, capsules can show dialogs when they progress to a detail view from a summary view.

If you do not want a dialog to display on a specific details page when this runtime flag is enabled, you can use the isElement() Expression Language function to test whether the view's matched node is an element of an array—that is, if it is one result from a node that contains multiple results. This is true if the user opens a detail view for a specific element from a result view.

Note

If you want dialog to appear for the details page during ordinal selection or when tapping on a summary item, and your capsule is running runtime version 7 or later, you must set this flag to true.

This runtime flag is disabled by default in all runtime versions.

Examples

capsule {
...
runtime-version (2) {
overrides {
allow-dialogs-on-detail-pages (true)
}
}
}
  runtime-version (2) {
overrides {
allow-dialogs-on-detail-pages (true)
no-fallback-to-result-collections (true)
}
}

View 56b77ba on GitHub