I’m reading this: https://github.com/mapsplugin/cordova-plugin-googlemaps
Best posts made by xereda
-
RE: Example use cordova plugin
I need a simple example of an implementation. I did not find anything with Quasar, nor in the issues, nor here in the forum.
Latest posts made by xereda
-
RE: [ios] App does not open on Iphone 4s
This is an app finished with Apache Cordova and I am trying to run on an Iphone 4s.
-
[ios] App does not open on Iphone 4s
I opened a issue in github, but for the moment the author is involved with many other tasks. So I took the initiative to post my question here in the forum. Does anyone have information that can help me?
Issue: https://github.com/quasarframework/quasar/issues/219#issuecomment-264451797
App does not open on Iphone 4s
I have not tested on a real device yet, but I believe there are issues with opening the application on the Iphone 4s model. The simulation I did was with the website appetize.io.
Note:
-
Custom webview for iOS devices
Hi,
Just as it is for Android, is there still a need to install a plugin to implement a custom webview for iOS devices?
Is there an officially iOS version of the crosswalk for Cordova?
How to deal with this now !?
Thank you for your help,
-
RE: Card component flashes (blinking)
I was wondering if you understood what happens reported on this issue.
-
RE: Bottom Tabs in Content Component
@rstoenescu said in Bottom Tabs in Content Component:
And also absolute position those tabs on the bottom of the container. Sorry for not saying full story from the beginning. I’m jumping from one work item to another and getting exhausted
I can imagine how much it is working! I see that your effort will bring excellent results in the future.
With regard to “tabs” being absolutely at the bottom, within a component, there is no way to do. It is!?
Thank you for your help.
-
RE: Bottom Tabs in Content Component
@rstoenescu said in Bottom Tabs in Content Component:
Put it outside of layout-padding div when you don’t need that padding.
Its not working.
<template> <div> <div class="layout-padding"> </div> <div slot="footer" class="toolbar"> <quasar-tabs slot="footer"> <quasar-tab icon="view_quilt" route="/showcase/layout" exact replace>About</quasar-tab> <quasar-tab icon="view_day" route="/showcase/layout/toolbar" replace>Toolbar</quasar-tab> <quasar-tab icon="view_day" route="/showcase/layout/tabs" replace>Tabs</quasar-tab> <quasar-tab icon="input" route="/showcase/layout/drawer" replace>Drawer</quasar-tab> </quasar-tabs> </div> </div> </template> <script> import { mapActions } from 'vuex' import DmButton from './buttonFullWidth.vue' // import { Toast, Dialog } from 'quasar' export default { data () { return { } }, mounted () { this.setHeaderTitle('Contato') }, methods: { ...mapActions([ 'setHeaderTitle' ]) }, components: { DmButton }, computed: { }, watch: { } } </script> <style> </style>
-
RE: Bottom Tabs in Content Component
But I need inside a component and not in the main layouyt. Look how it looks inside my component: