Bixby Developer Center

Guides

6816 (Remove Non-Card Components From List)

Within Bixby Views, you can now only use card components within a list-of or selection-of list. For example, you can no longer use *-area, paragraph, and single-line components within a list.

Deprecated:

list-of (this) {
where-each(item) {
paragraph: value ("#{value(item)}")
}
}
list-of (this) {
where-each(item) {
title-area {
slot1: text: value ("#{value(item)}")
}
}
}

New:

list-of (this) {
where-each(item) {
compound-card {
content {
paragraph: value ("#{value(item)}")
}
}
}
}
list-of (this) {
where-each(item) {
title-card {
title-area {
slot1: text: value ("#{value(item)}")
}
}
}
}

Deprecation Stages

Learn more about the deprecation stages.

  • Stage 1: R20H
  • Stage 2: R20K
  • End of Life: None