@metalsadman Nice workaround! Thanks.
Posts made by jvmonjo
-
RE: [V1][Feature request] Make badge compatible with icon component
-
[V1][Feature request] Make badge compatible with icon component
I think this was working in previous versions prior to v1. This is especially useful in a drawer menu. It should be possible to place a floating badge on the menu icon. Now it’s only possible in a button.
-
RE: Close drawer swiping on the drawer itself
@metalsadman I mean, try https://v1.quasar-framework.org/start/pick-quasar-flavour
You can open the drawer. But to close it you have to swipe OUTSIDE the drawer. You can’t do it by swiping on the drawer itself. At least from my Android 9. I’ve tried Chrome and Firefox.
-
Close drawer swiping on the drawer itself
I have looked for it in the documentation and in the GitHub issues and I have found nothing about it.
In previous versions to 1.0 it was possible to close the drawer by swiping “on” the drawer itself. Now it’s only possible by doing it outside the drawer.
Am I missing something? Is there any settings to change this behavior?
-
RE: Can't scroll after clicking button on the side nav
Anyway I solved changing the button with a q-side-link with button tag in case anyone else have the same issue:
<q-side-link tag="button" to="/login" class="q-btn q-btn-standard text-white relative-position login-btn bg-primary">Login</q-side-link>
-
Can't scroll after clicking button on the side nav
I don’t know if this is a bug or an intended behavior. If I click a q-side-link the new page opens and I can scroll normally. But if I click to a button instead of a q-side-link I go to the page but I can’t scroll. This happens only if the sidenav is collapsed. Anybody can reproduce this “glitch”?
<template> <div class="sidenav" ref="sidenav"> <!-- Scroll won't work on login page --> <q-btn v-else color="primary" class="login-btn" @click="$router.push('/login')"> Login </q-btn> <!-- Scroll will work on login page --> <q-side-link to="/login" item exact>Login</q-side-link> (...)
-
JS Date support for time ago format
I haven’t found any reference in the docs of the “Handling JS Date” section about supporting “time ago” format of dates.
Is it included in date module or do we need to use external libraries such as “timeagojs”?
-
Too difficult to open the Drawer with swipe
First of all, I have to say that quasar drawer is one of the best that I have tried. Very similar to a native one.
But I was wondering if it is possible to change the swipe too open the drawer so you don’t need to do it too close to the edge of the screen? I think that it is difficult to open the drawer if you have to do it so close to the edge.
-
RE: Q-Uploader with firebase storage
Thanks I managed to write my own uploader and it works but it is not looking good. I’ll try your q-uploader pr.
-
RE: Q-Uploader with firebase storage
Thanks. I was afraid of that being the case, but I asked just in case I was missing something. I’ll try both solutions.
-
Q-Uploader with firebase storage
Since url property is required in q-uploader, I’m trying to figure out what is the proper way to configure it to work with firebase storage.
I managed to upload to Firebase Storage using custom method, but still don’t know how to make it work with the built in url property so the user can see the upload progress and success.
-
Address bar auto hide not working
Hi.
It is expected that address bar on Android browsers to auto hide when user scrolls down, but in my app it remains always visible.Am I doing something wrong?