Will give it a try, thx!
Latest posts made by perelin
-
Disable LoadingBar plugin for certain Ajax calls
Hi all,
I´m using the LoadingBar plugin but would like to disable it for certain Ajax calls. E.g. I´m polling some status from the backend server every few seconds and displaying a loading bar for every poll request doesnt make sense.
Whats the recommended approach here?
Thanks!
-
RE: Customizing Colors Using Sass Variables
I encountered the same issue. The proposed solution works but adds (imho) unnecessary code duplication. As far as I can see the clean approach [1] would be to import the file with the SASS variable definitions [2]. But I have no idea how that import path should look like.
Any ideas?
[1] https://sass-lang.com/documentation/at-rules/use+
[2] https://quasar.dev/style/sass-scss-variables -
RE: Disable q-menu for some breakpoints
Brilliant! https://quasar.dev/options/screen-plugin was Exactly what I needed
Thx!
It might be helpful for some people to add a hint to this to https://quasar.dev/style/visibility#Window-Width-Related - Ill create a PR for this.
-
Disable q-menu for some breakpoints
Hi all,
any ideas how I can disable a q-menu for some breakpoints? For example:
I want the q-menu only to appear when the viewport is larger than md.I tried to use the visibility classes like
<q-menu class="gt-lg">
but the menu is still shown when clicking on the parent.Any pointer is appreciated!
-
RE: How to make a quasar app a share target on iOS/Android?
Thx! Will check them out
-
RE: How to make a quasar app a share target on iOS/Android?
Hi dobbel, thanks for the reply. It seems you are right I need to handle it in three places:
- Android Manifest to register my app as a share target (intent)
- Capacitor to receive the shared content (getIntent()) and pass it to my app
- Quasar/Vue app to handle the passed content
I figured out 1. (https://developer.android.com/training/sharing/receive), but I´m completely stuck with 2.
Any idea? Anyone?
-
How to make a quasar app a share target on iOS/Android?
Hi all, I just started qith Quasar and want to build an app that has the capability to receive input (files, images, etc) from other app via the platform (iOS/Android) native share functionality. I found this here so far https://github.com/marwonline/capacitor-share-target but it´s not really in a usable state. So I wonder what would be the canonical way for a Quasar app to implement such functionality.
Where can I read up on this? Any pointers are appriciated!