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. aznric3boi91
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 8
    • Best 1
    • Groups 0

    aznric3boi91

    @aznric3boi91

    1
    Reputation
    226
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    aznric3boi91 Follow

    Best posts made by aznric3boi91

    • RE: Quasar v0.15 is out!

      I’m a bit confused with he back button post. Could you provide us with an example of how we should implement back button into our layout when stack or a demo on how to do this? Thanks!

      posted in Announcements
      A
      aznric3boi91

    Latest posts made by aznric3boi91

    • RE: Quasar v0.15 is out!

      Does 0.15 pertain to quasar cli or quasar ?

      posted in Announcements
      A
      aznric3boi91
    • RE: Quasar v0.15 is out!

      @dnix Without a back button, how do we handle back navigation?

      posted in Announcements
      A
      aznric3boi91
    • RE: Quasar v0.15 is out!

      I’m a bit confused with he back button post. Could you provide us with an example of how we should implement back button into our layout when stack or a demo on how to do this? Thanks!

      posted in Announcements
      A
      aznric3boi91
    • RE: Router View and Back button (or swipe)

      @terumi were you able to find a workaround? I’m having a similar issue with backbuttons. was wondering if you could share how you implemented your back button from q-tabs coming from a child route. Thanks!

      posted in Framework
      A
      aznric3boi91
    • RE: Transitions between pages, routes, vues

      @greene48 said in Transitions between pages, routes, vues:

      I know this was a while ago, but in case anyone comes along, this is how I got the “subpage” sliding in from the right to work:

      <template>
        <div>
          <transition :name="transitionName">
            <keep-alive>
              <router-view class="child-slide"></router-view>
            </keep-alive>
          </transition>
        </div>
      </template>
      <script>
      export default {
        data () {
          return {
            transitionName: ''
          }
        },
        beforeRouteUpdate (to, from, next) {
          const toDepth = to.path.split('/').length
          const fromDepth = from.path.split('/').length
          this.transitionName = toDepth < fromDepth ? 'overlap-left' : 'overlap-right'
          next()
        }
      }
      </script>
      
      <style>
      .child-slide {
        width: 100%;
        position: absolute;
        transition: all 0.3s;
      }
      .overlap-left-enter, .overlap-left-enter-active {
        opacity: 0;
      }
      .overlap-left-enter-to {
        opacity: 1;
      }
      .overlap-left-leave-active {
        transform: translate(100%, 0);
      }
      .overlap-right-leave-active {
        z-index: -1;
        opacity: 1;
        transform: translate(-30px, 0);
      }
      .overlap-right-enter {
        transform: translate(100%, 0);
      }
      </style>
      

      This is a bit jumpy. Was wondering if you had to a more updated version of this. Thanks!

      posted in Help
      A
      aznric3boi91
    • RE: Restore from git

      @NT Did you finnd a solution? I’m getting the same error.

      posted in Help
      A
      aznric3boi91
    • How to prevent scrolling in cordova hybrid app?

      How to prevent scrolling in cordova hybrid app?0_1523119001195_Screen Shot 2018-04-07 at 11.34.49 AM.png

      It is very annoying to be able to pull the view… is there a way to lock it in place? Thanks!

      posted in Help
      A
      aznric3boi91
    • RE: How to access cordova AdMobPro plugin?

      @mustotto Do you mind sharing your code base? I’m having some difficulty in integrating admob as well. Thanks!

      posted in Framework
      A
      aznric3boi91