Postato su 26. luglio 2024 da Jan Bunk
A volte potresti voler che l'app mostri un titolo diverso da quello sul tuo sito web. Ad esempio perché vuoi un titolo più corto che non venga tagliato o perché non vuoi alcun titolo nella barra dell'app come scelta di design.
executeWhenAppReady()
del nostro helper script per le app. Assicura che il tuo sito web non cerchi di interagire con l'applicazione prima che sia pronta o quando il sito web viene caricato con un normale browser (ReferenceError, function is not defined). setSpecialTitle
Usa questa funzione per impostare il titolo sulla stringa desiderata.
<script>
try {
// if you want to remove the title from the app bar, pass "" as the argument
setSpecialTitle("Title for the App Bar");
}
catch (e) {
// Can occur if:
// - the app couldn't connect to the native code. Should be very unlikely.
console.log(e);
}
</script>