Prototürkdeki Uygulamayı indir butonunu nasıl yaptınız.
@tayfunerbilen Bana cevap yazabilirmisiniz.
Not: Bunu react ile yapıcam.
siteni pwa yaptıktan sonra beforeinstallprompt
eventını dinleyip işlem yapabilirsin. Örneğin;
const installButton = document.querySelector('.install-app'); // uygulamayı yükle butonu
let beforeInstallPromptEvent
window.addEventListener("beforeinstallprompt", function(e) {
e.preventDefault();
beforeInstallPromptEvent = e
installButton.style.display = 'block'
installButton.addEventListener("click", function(mouseEvent) {
e.prompt();
});
installButton.hidden = false;
});
installButton.addEventListener("click", function(mouseEvent) {
beforeInstallPromptEvent.prompt();
});