Skip to main content
January 27, 2023
Solved

customize textbox color outline

  • January 27, 2023
  • 2 replies
  • 0 views

Hi,

Is there a way to change or customize texbox outline color? 

Best answer by amans0009

nope , but you can put the text field inside a card and change the background color of card according you your need

 a!cardLayout(
            contents: {
              a!textField(
                label: "",
                labelPosition: "ABOVE",
                saveInto: {},
                refreshAfter: "UNFOCUS",
                validations: {}
              )
            },
            height: "AUTO",
            style: "ACCENT",
            marginBelow: "STANDARD"
          )

2 replies

amans0009
amans0009Answer
January 27, 2023

nope , but you can put the text field inside a card and change the background color of card according you your need

 a!cardLayout(
            contents: {
              a!textField(
                label: "",
                labelPosition: "ABOVE",
                saveInto: {},
                refreshAfter: "UNFOCUS",
                validations: {}
              )
            },
            height: "AUTO",
            style: "ACCENT",
            marginBelow: "STANDARD"
          )

January 27, 2023

Thank You!