UI design

 

Can we achieve this in an interface?Only the red part. I need underline only under EMPLOYEES. Bullet must be of red color.

 

Thanks in advance.

  Discussion posts and replies are publicly visible

Parents
  • Hi ,
    I hope below code is help to you....

    {
    a!richTextDisplayField(
    value: {
    a!richTextItem(
    text: "List of",
    style: "NEGATIVE"
    ),
    a!richTextItem(
    style: "NEGATIVE",
    text: {
    a!richTextItem(
    style:"EMPHASIS",
    text:
    a!richTextItem(
    text: " Employee",
    style:{ "UNDERLINE"}
    )
    )
    }
    )

    }
    ),
    a!richTextDisplayField(
    value: {
    a!richTextIcon(
    icon: "circle",
    color: "NEGATIVE"
    ),
    a!richTextItem(
    style:"EMPHASIS",
    text:
    a!richTextItem(
    text:" Tushar",
    style: "NEGATIVE"
    )
    )
    }
    ),
    a!richTextDisplayField(
    value: {
    a!richTextIcon(
    icon: "circle",
    color: "NEGATIVE"
    ),
    a!richTextItem(
    style: "EMPHASIS",
    text:

    a!richTextItem(
    text:" Pawan",
    style: "NEGATIVE"
    )
    )
    }
    )
    }
Reply
  • Hi ,
    I hope below code is help to you....

    {
    a!richTextDisplayField(
    value: {
    a!richTextItem(
    text: "List of",
    style: "NEGATIVE"
    ),
    a!richTextItem(
    style: "NEGATIVE",
    text: {
    a!richTextItem(
    style:"EMPHASIS",
    text:
    a!richTextItem(
    text: " Employee",
    style:{ "UNDERLINE"}
    )
    )
    }
    )

    }
    ),
    a!richTextDisplayField(
    value: {
    a!richTextIcon(
    icon: "circle",
    color: "NEGATIVE"
    ),
    a!richTextItem(
    style:"EMPHASIS",
    text:
    a!richTextItem(
    text:" Tushar",
    style: "NEGATIVE"
    )
    )
    }
    ),
    a!richTextDisplayField(
    value: {
    a!richTextIcon(
    icon: "circle",
    color: "NEGATIVE"
    ),
    a!richTextItem(
    style: "EMPHASIS",
    text:

    a!richTextItem(
    text:" Pawan",
    style: "NEGATIVE"
    )
    )
    }
    )
    }
Children
No Data