Reply To: Issue with ‘.before()’

PennController for IBEX Forums Support Issue with ‘.before()’ Reply To: Issue with ‘.before()’

#10830
Larissa_Cury
Participant

UPDATE:

It worked like this:

,
newVar("hi--text").set(getVar("fantasy--name")).set(v=>`Olá, ${v} !😄`) // create new var to show text.
,
newText("welcome--fantasy--name--msg").text( getVar("hi--text") ) // show text.
  .cssContainer({
    "font-size": "60px", 
    'color':'white',
    "background-image": "linear-gradient(to top left, #0099CC, #66CCFF)",
    "border-radius": "25px"})

Is this the best way to do it, tho?