Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Florentin
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Florentin

    @Florentin

    A French student who work on a mobile quasar project for his company.

    1
    Reputation
    9
    Posts
    37
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online
    Location France

    Florentin Follow

    Best posts made by Florentin

    • RE: Pdf in mobile from blob

      Hi, I found a solution here : Android: URL.createObjectURL does not work properly

      let url = (window.URL || window.webkitURL || window || {}).createObjectURL(blob);
      // workaround for mobile playback, where it didn't work on chrome/android.
      // fetch blob at url using xhr, and use url generated from that blob.
      // see issue: https://code.google.com/p/chromium/issues/detail?id=227476
      // thanks, gbrlg
      var xhr = new XMLHttpRequest();
      xhr.open('GET', url, true);
      xhr.responseType = 'blob';
      xhr.onreadystatechange = function() {
          if (xhr.readyState === 4 && xhr.status == 200) {
              var url = (window.URL || window.webkitURL || window || {}).createObjectURL(xhr.response);
      
              // now url is ready
          }
      };
      xhr.send();
      
      posted in Help
      Florentin
      Florentin

    Latest posts made by Florentin

    • RE: Waiting for emulator to start...

      Hi, if your emulator is still open this may not working. Try to turn it of before using the quasar dev command.

      If you get the waiting for emulator to start message, you can try to change to quick boot or cold boot. It solved the problem for me.

      posted in Help
      Florentin
      Florentin
    • RE: Problems to run cordova on Android Studio

      Hi, it seems that your quasar.conf.js has errors.
      Did you modify it ?

      posted in Help
      Florentin
      Florentin
    • RE: Cordova build dev "No target specified and no devices found, deploying to emulator"

      PS: If you want to disapear the android_home is deprecated. You can just replace it by ANDROID_SDK_ROOT in your environnement variables.

      posted in Help
      Florentin
      Florentin
    • RE: Cordova build dev "No target specified and no devices found, deploying to emulator"

      Hi,
      you can try this :

      • turn off you emulator (cordova/quasar will open it for you)
      • run this command : quasar dev -m cordova -T android --e emulator_name
      posted in Help
      Florentin
      Florentin
    • RE: Loader at splash screen

      Hi, if you use cordova plugin splashscreen you can manage spinner in config.xml
      <preference name="ShowSplashScreenSpinner value=“false”/>

      posted in Framework
      Florentin
      Florentin
    • RE: Pdf in mobile from blob

      Hi, I found a solution here : Android: URL.createObjectURL does not work properly

      let url = (window.URL || window.webkitURL || window || {}).createObjectURL(blob);
      // workaround for mobile playback, where it didn't work on chrome/android.
      // fetch blob at url using xhr, and use url generated from that blob.
      // see issue: https://code.google.com/p/chromium/issues/detail?id=227476
      // thanks, gbrlg
      var xhr = new XMLHttpRequest();
      xhr.open('GET', url, true);
      xhr.responseType = 'blob';
      xhr.onreadystatechange = function() {
          if (xhr.readyState === 4 && xhr.status == 200) {
              var url = (window.URL || window.webkitURL || window || {}).createObjectURL(xhr.response);
      
              // now url is ready
          }
      };
      xhr.send();
      
      posted in Help
      Florentin
      Florentin
    • Unexpected return to the line with suffix on q-input

      Hi,
      I recently upgrade from V0.17 to V1.
      Since V1 my q-input suffix return to the line when using a space.
      When i was using V0.17 this doesn’t happend.

      Here is an example :
      q-input_suffix_spaces.PNG

      Here is a Codepen showing it.

      Is this normal since V1 ?
      Thanks.

      posted in Help
      Florentin
      Florentin
    • RE: cordova plugins not working

      Hi, did you try with other plugins like the ones in the quasar guide : https://quasar-framework.org/guide/cordova-plugins.html ?

      Are they aded to your config.xml in your codova folder ?

      posted in Help
      Florentin
      Florentin
    • RE: Sqlite cordova plugin

      Hi thamibn, you don’t need these document.addEventListener().

      Ues the vuex store instead.
      Here is a guide https://www.nativescript.org/blog/data-management-with-sqlite-and-vuex-in-a-nativescript-vue-app.
      It’s perfectly working for me.

      posted in Help
      Florentin
      Florentin