Search code examples
flutter-web

Is there a way to disable the app download option on flutter web?


When opening the application on a computer or browser in mobile a option for download or saving the page in desktop appear. There is some solution to disable this option?


Solution

  • You can add this to your <script> tag in your index.html:

    window.addEventListener('beforeinstallprompt', function (e) {
        e.preventDefault();
        return false;
    });