No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. driedler
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 6
    • Best 1
    • Groups 0

    driedler

    @driedler

    1
    Reputation
    247
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    driedler Follow

    Best posts made by driedler

    • RE: HTTPS Dev server with Cordova

      The https option appears to be disabled for cordova and electron builds, commenting out ‘cfg.devServer.https = false’ in <project>/node_modules/quasar-cli/lib/quasar-config.js eveything works:

        if (this.ctx.mode.cordova || this.ctx.mode.electron) {
          // cfg.devServer.https = false
          cfg.devServer.open = false
          cfg.devServer.compress = false
        }
      posted in Help
      D
      driedler

    Latest posts made by driedler

    • Bring attention to page control

      When a user first opens a page, I’d like to bring their attention to a button on the bottom of the page (which is not immediately visible, they must first scroll to it).

      I was thinking of adding a bouncing, sticky notification with a message. The notification goes away when the user dismisses it or clicks the button.

      Does anyone have any tips on the best way to do this?

      posted in Help
      D
      driedler
    • RE: How does quasar-framework.org convert markdown to html?

      This is exactly what I was looking for, thanks for the reply!

      posted in Help
      D
      driedler
    • How does quasar-framework.org convert markdown to html?

      I am curious how quasar-framework.org converts the markdown text on github to what is displayed on the website?

      I really like how the md is nicely integrated into the website. Is a standard library used? Is there any reference code available?

      Any help is appreciated.

      Thanks!

      posted in Help
      D
      driedler
    • RE: HTTPS Dev server with Cordova

      The https option appears to be disabled for cordova and electron builds, commenting out ‘cfg.devServer.https = false’ in <project>/node_modules/quasar-cli/lib/quasar-config.js eveything works:

        if (this.ctx.mode.cordova || this.ctx.mode.electron) {
          // cfg.devServer.https = false
          cfg.devServer.open = false
          cfg.devServer.compress = false
        }
      posted in Help
      D
      driedler
    • HTTPS Dev server with Cordova

      Chrome requires an https domain to access the media APIs.

      The last comment of this post:
      https://github.com/quasarframework/quasar/issues/701
      Seems to indicate that https is now supported.

      I see quasar 0.15.14 has a ‘https’ option in the ‘dev’ section of the quasar.conf.js. However, setting it to ‘true’ doesn’t seem to have any effect after running:
      quasar dev -m cordova -T browser

      Does anyone have any pointers on how to enable https for the dev server?

      posted in Help
      D
      driedler
    • RE: Authenticate Using OAuth Providers with Cordova

      @LaurentPayot What was your setup?

      Following the instructions here:
      https://firebase.google.com/docs/auth/web/cordova

      Using Quasar-0.15.14

      and running:
      quasar dev -m cordova -T android

      It seems to be redirecting the dev server URL in a new browser window (rather than the actual app).

      Running:
      const provider = new firebase.auth.GoogleAuthProvider()
      self.auth.signInWithRedirect(provider)
      return self.auth.getRedirectResult()

      opens a new browser to the google oauth page, but then redirects to the dev server URL (instead reopening the app).

      I strongly suspect this has to with the way Quasar does hot reload (which fricking awesome btw!).

      If I run:
      quasar build -m cordova -T android

      Then download the app, .auth.signInWithRedirect(provider) works as expected.

      Does anyone know how to do OAuth in a cordova dev build on android?

      posted in Help
      D
      driedler