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. sonicviz
    S
    • Profile
    • Following 0
    • Followers 0
    • Topics 6
    • Posts 16
    • Best 3
    • Groups 0

    sonicviz

    @sonicviz

    4
    Reputation
    444
    Profile views
    16
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    sonicviz Follow

    Best posts made by sonicviz

    • Fopra - Focused Practice

      Here’s my first Quasar work in progress prototype : http://sonicviz.com/project/fopra-focused-practice/

      Any feedback or bug reports welcome!

      Thanks for the cool tools Quasar!

      posted in Show & Tell
      S
      sonicviz
    • RE: PWA - Add to home screen issues

      Resolved. Seemed to be an issue purely with gitlab pages as when I deployed to netlify the offline add to homepage works just fine.

      posted in Help
      S
      sonicviz
    • RE: HN-PWA (HackerNews Progressive Web App) using Quasar, feedback required

      Nice one!

      posted in Show & Tell
      S
      sonicviz

    Latest posts made by sonicviz

    • RE: Align to center within Grid Column

      text-center

      posted in Help
      S
      sonicviz
    • Align to center within Grid Column

      Any clues on how to do this?
      It might seem obvious but none of the regular position/align things seem to work.

      I have a row
      I have a column

        <q-list bordered separator>
          <q-item class="row q-col-gutter-sm justify-center align-center"
          v-for="x in y" :key='x'>
            <div class="col-1"
              v-for="a in b" :key='a'
            > <div class="align-center">{{ x[a] }}</div>
            </div>
          </q-item>
        </q-list>
      

      Am I missing something?

      posted in Help
      S
      sonicviz
    • RE: conversion from bootstrap themes/templates

      @qyloxe said in conversion from bootstrap themes/templates:

      @lucasfernog sure, but please read the thread carefully - we’re not talking about components but about thousands of free bootstrap themes, used as a base for frontend sites in business, blogs, landing pages and many other categories of sites.
      It is possible to get those momentum in frontend technology because Quasar has a set of compatible with B4 CSS classes which means, that if there would be a clear or relatively easy path of conversion from B4 to Quasar, there is a big chance of putting Quasar mainstream and let the world use it instead of B4. Why? Because B4 has poor components but it’s very easy to start with good looking theme or template but when it comes to really making a site it is very hard. So, as you can see, CSS classes for layout, typography and colors are not a “developer” problem but rather a “marketing” problem.

      I’ve just come across this issue converting a project that uses Bootstrap css, which I’m converting into Quasar.
      It would have been helpful to have a guide. The point that @qyloxe makes above is very smart business sense as well.

      posted in Framework
      S
      sonicviz
    • RE: PWA - Add to home screen issues

      Resolved. Seemed to be an issue purely with gitlab pages as when I deployed to netlify the offline add to homepage works just fine.

      posted in Help
      S
      sonicviz
    • RE: Quasar live apps/website [submit to https://github.com/quasarframework/quasar-awesome]

      Fopra - Focused Music Practice Timer https://fopra.live/
      Project page: http://sonicviz.com/project/fopra-focused-practice/

      posted in Show & Tell
      S
      sonicviz
    • RE: Audio not playing on mobile

      Fixed: https://www.codeproject.com/Tips/677451/Workaround-to-Fix-Audio-Autoplay-on-Mobile-Browser

      posted in Help
      S
      sonicviz
    • Fopra - Focused Practice

      Here’s my first Quasar work in progress prototype : http://sonicviz.com/project/fopra-focused-practice/

      Any feedback or bug reports welcome!

      Thanks for the cool tools Quasar!

      posted in Show & Tell
      S
      sonicviz
    • RE: HN-PWA (HackerNews Progressive Web App) using Quasar, feedback required

      Nice one!

      posted in Show & Tell
      S
      sonicviz
    • RE: import js file into hello.vue

      You need to read and understand the lint errors, not ignore them.
      It’s quite restrictive and in most cases they are exactly what they say they are.

      posted in Help
      S
      sonicviz
    • RE: PWA - Add to home screen issues

      Updated the manifest file with full start url but it’s still getting the url wrong for static icons

      {
        "name": "Fopra App",
        "short_name": "Fopra-PWA",
        "icons": [
          {
            "src": "/statics/icons/icon-192x192.png",
            "sizes": "192x192",
            "type": "image/png"
          },
          {
            "src": "/statics/icons/icon-512x512.png",
            "sizes": "512x512",
            "type": "image/png"
          }
        ],
        "start_url": "https://sonicviz.gitlab.io/fopra",
        "display": "standalone",
        "background_color": "#ffffff",
        "theme_color": "#027be3"
      }
      
      posted in Help
      S
      sonicviz