为什么此Bixby文本没有彩色显示?

时间:2019-11-30 20:32:38

标签: bixby

我正在尝试使标题显示为彩色,但它不在乎我。我在文档中看到它解释了颜色与“柔和”冲突,但这不是柔和的样式。

https://bixbydevelopers.com/dev/docs/reference/type/result-view.render.layout.section.content.map-card.title-area.slot3.single-line.text.color

我还看到也许标题应该不带颜色(因为颜色用于状态更改?),但是我觉得这个标题需要更多的装饰。想法?

render {
    layout {
      section {
        content { 
          title-area
          { 
          slot1 {
              text {
                color (Blue)
                { style (Title_M)
                }
                value ("#{value(this.title)}")
              }
          }

        }
      }
      }

screenshot

1 个答案:

答案 0 :(得分:1)

尼莱·帕特尔(Nilay Patel)给了我这个方法,它奏效了。我忘记了在文本{....

之前添加单行指令。
render {
    layout {
      section {
        content { 
          title-area
          { 
          slot1 {
              **single-line**: text {
                color (Blue)
                style (Title_M)
                value ("#{value(this.title)}")
              }
          }

        }
      }
      }