I have tried to remove the text area( frame, border, shadow) not sure what it is called with the “none”
Is there a way to make a text area just show the text without the border.
Building Apps Lesson 3 #4
setProperty(“text_area2”,“background-color”, rgb(245, 163, 194),“border”, “none”, “!important”,“box-shadow”,“none”);
onEvent(“Saladstartbutton”, “click”, function(event) {
console.log(“SaladButtontoscreen2 clicked!”);
setScreen(“Food1”);
});
onEvent(“NextButton”, “click”, function(event) {
console.log(“NextButton clicked!”);
setScreen(“Food2”);
});
onEvent(“HomeButton”, “click”, function(event) {
console.log(“HomeButton clicked!”);
setScreen(“Home”);
});
thank you
Lindy