possible it is simple but i didn't find the solution : can we make a string or byte array with a text on multiple lines like in arduino ?
arduino example :
arduino example :
B4X:
const char MAIN_page[] PROGMEM = R"=====(
<!DOCTYPE html>
<html>
<style>
.card{
max-width: 400px;
min-height: 250px;
background: #02b875;
padding: 30px;
box-sizing: border-box;
color: #FFF;
margin:20px;
box-shadow: 0px 2px 18px -4px rgba(0,0,0,0.75);
}
</style>
<body>
<div class="card">
<h4>The ESP32 Update web page without refresh</h4><br>
<h1>Sensor Value:<span id="ADCValue">0</span></h1><br>
<br><a href="https://circuits4you.com">Circuits4you.com</a>
</div>
</body>
</html>
)=====";