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. Sifarid
    S
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 4
    • Best 0
    • Groups 0

    Sifarid

    @Sifarid

    0
    Reputation
    1
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Sifarid Follow

    Latest posts made by Sifarid

    • RE: Cordova plugin android wifi manager

      @dobbel yes. but plugin doesnt work.

      posted in Help
      S
      Sifarid
    • RE: Cordova plugin android wifi manager

      @dobbel no difference when im using @click=“myClickFunction” or @click=“myClickFunction()”. Its still work in my pc.

      posted in Help
      S
      Sifarid
    • Cordova plugin android wifi manager

      i try this code

      <template>
        <q-page class="column">
          <div class="col-1">a = {{a}}</div>
          <div class="col-1">b = {{b}}</div>
          <q-btn label="CLICK TO GET RESPOND" color="primary" @click="click()" />
        </q-page>
      </template>
      
      <script>
      export default {
        name: 'PageIndex',
        data () {
          return {
            a: '-',
            b: '-'
          }
        },
      
        methods: {
          click () {
            var WifiManager = window.cordova.plugins.WifiManager
      
            WifiManager.isWifiEnabled(function (err, info) {
              console.log(err, info)
              this.a = err
              this.b = info
            })
          }
        }
      }
      </script>
      

      after i build to android with command “quasar build -m android” and install to my android device, open app, and click button ‘click’, nothing happened on there.

      Could someone tell me How working with this plugin?

      posted in Help
      S
      Sifarid
    • RE: Cordova - How to get device IP address?

      @wwwizzarrdry could you give code example pls? i was try using example code from documentation that plugin, but still not working

      posted in Framework
      S
      Sifarid