Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Update: Forum Guidelines & Code of Conduct

    QrwAndroid - QML plugin

    Showcase
    qml android extensionplugin qrwandroid google
    5
    15
    10737
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • GrecKo
      GrecKo Qt Champions 2018 last edited by

      Fair enough, I understand and respect your position : )

      1 Reply Last reply Reply Quote 1
      • raven-worx
        raven-worx Moderators last edited by

        bump.
        Updated state of implemented features.

        --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
        If you have a question please use the forum so others can benefit from the solution in the future

        raven-worx 1 Reply Last reply Reply Quote 1
        • raven-worx
          raven-worx Moderators @raven-worx last edited by raven-worx

          • implemented Google Mobile Ads (Banners only)
            (The native AdView android view is rendered into an QML item)
          • dropped QZXing integration - since it can be easily added by the enduser on demand

          --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
          If you have a question please use the forum so others can benefit from the solution in the future

          1 Reply Last reply Reply Quote 1
          • Attila Santo
            Attila Santo last edited by

            this plugin sounds great. I would love to see your masonry implementation.

            raven-worx 1 Reply Last reply Reply Quote 0
            • raven-worx
              raven-worx Moderators @Attila Santo last edited by raven-worx

              @Attila-Santo
              i will release the plugin for testing purposes during alpha/beta phase at some point when it makes sense.
              Watch this thread to get the notification.

              --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
              If you have a question please use the forum so others can benefit from the solution in the future

              Attila Santo 1 Reply Last reply Reply Quote 1
              • K
                kangherr last edited by

                @GrecKo said in QrwAndroid - QML plugin:

                https://github.com/lirios/fluid/

                Noted

                1 Reply Last reply Reply Quote 0
                • D
                  Davidjames3321 Banned last edited by Davidjames3321

                  This post is deleted!
                  1 Reply Last reply Reply Quote 0
                  • Attila Santo
                    Attila Santo @raven-worx last edited by

                    @raven-worx did your plugin ever make it to alpha / beta?

                    I would still love to see the implementation of your masonry

                    raven-worx 1 Reply Last reply Reply Quote 1
                    • raven-worx
                      raven-worx Moderators @Attila Santo last edited by

                      @Attila-Santo
                      Hi, no i didnt find time to finish this plugin.

                      Anyway here is the implementation of this layout:
                      https://gist.github.com/raven-worx/28a737f7333480cfac418b42480093fc

                      Example:

                      GridFlow {
                          anchors.fill: parent
                          
                          columnCount: 2
                          horizontalSpacing: 5
                          verticalSpacing: 5
                          spanningEnabled: true
                          margin: 5
                          rowHeight: 50
                          keepChildOrder: true
                      
                          Rectangle {
                                GridFlow.sizeHint: Qt.size(40,50)
                                GridFlow.spanningChance: 0.2
                                GridFlow.minimumHeight : 10
                                GridFlow.maximumHeight: 10
                          }
                      }
                      

                      The implementation can easily adapted to set the row/column span explicitly via the attached property class and applied in the GridFlow::doLayout() method.

                      --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
                      If you have a question please use the forum so others can benefit from the solution in the future

                      Attila Santo 1 Reply Last reply Reply Quote 3
                      • Attila Santo
                        Attila Santo @raven-worx last edited by

                        @raven-worx you're a hero 🙌

                        1 Reply Last reply Reply Quote 0
                        • First post
                          Last post