Questions tagged [v-play]

Felgo (former V-Play Engine) is a cross-platform app development tool and game engine, based on the Qt framework. Use the tag to ask Felgo specific questions.

Felgo (former V-Play Engine) is a cross-platform app development tool and game engine, based on the Qt framework.

Felgo apps and games run on iOS, Android, Windows Phone, embedded devices and desktop devices. Felgo developers use QML, JavaScript and C++ to create mobile apps and games.

19 questions
3
votes
1 answer

Setting calendar.selectedDate from the Selected Date of a SimpleRow

I am opening a calendar pop-up helpItem1 when selecting a date from a listView, which all works fine! What I am trying to do is set the calendar.selectedDate, to the date of the listView item each time a different list item is selected. An extract…
Ldweller
  • 327
  • 2
  • 16
3
votes
1 answer

Change colour from bool within array in QML

I am looking to change the colour of a Calendar cell from a Boolean within an array (calendarListModel). Here's a sample of the…
Ldweller
  • 327
  • 2
  • 16
2
votes
1 answer

sending OneSignal notification with QML

I am integrating OneSignal into my app built with Felgo, when building my app for test purposes I am able to manually send notifications from my OneSignal dashboard, but obviously I want these to be automatic when an event happens in app. I am truly…
Ldweller
  • 327
  • 2
  • 16
1
vote
1 answer

V-Play generates too big APKs

I am new to V-Play. I just wanted to test it with Hello World app. My Single page app's Main.qml is 523 bytes only. But V-Play is building 20+ MB APK. Are Qt libraries that big?
1
vote
1 answer

Can not get contacts using qml and v-play

I cannot get android contacts using v-play nativeUtils. Is there something wrong with this code? App { AppListView { anchors.fill: parent model:nativeUtils.getContacts() delegate:SimpleRow { text: modelData.name …
amr hashem
  • 11
  • 1
1
vote
1 answer

Cross push notifications from Qt to iOS & Android with V-Play (Felgo) and google cloud message (firebase)

I try to create a push notifications project that send to iOS and Android concurrently in the same moment. I'm going to try V-Play plugin: https://v-play.net/doc/plugin-gcm/ but from guide, I can't find how to set Google Cloud Messaging in…
Mr. Developer
  • 3,295
  • 7
  • 43
  • 110
1
vote
1 answer

v-play installation - Cant deploy on desktop and device

I’ve just installed v-play but when i compile to desktop i get error :-1: error: cannot find -lGL and exits. Then if i compile to android it will compile and install but the it never successfully opens the app and it exits on deployment. These are…
TheMan68
  • 1,429
  • 6
  • 26
  • 48
0
votes
1 answer

QML AppSwitch sending onCheckedChanged signal each time page is opened?

I have an AppSwitch, which is being used to 'activate/deactivate' user accounts in my app, It's checked status is read from a database, which works as intended, changing both the switch and text depending on the bool per user. My problem is Each…
Ldweller
  • 327
  • 2
  • 16
0
votes
1 answer

Can I Replace SimpleRow with Image if no modelData avaliable

I have a ListView, where the currently displayed modelData changes as a button cycles through several department options. If one of these departments has no data, my delegate continues showing the previous list data until it reaches a new section of…
Ldweller
  • 327
  • 2
  • 16
0
votes
2 answers

handling nested JSON data for ListView

I am looking to access nested JSON data from a firebase database to use within a listView, this is something I have applied throughout my app, but am now having trouble having to access children of the data with dynamic properties. An export of my…
Ldweller
  • 327
  • 2
  • 16
0
votes
1 answer

Loop through ListView for matching calendar selectedDate

I am looking to populate a listView of events on the currently selectedDate of a calendar with data from an array(calendarListModel) When a new date is selected from the calendar, I need the list to update, clearing and remaining empty if no events…
Ldweller
  • 327
  • 2
  • 16
0
votes
1 answer

How to convert a qml file from V-Play into python?

I have a qml file, it looks like the below (created by V-Play): import VPlayApps 1.0 import QtQuick 2.0 App { // You get free licenseKeys from https://v-play.net/licenseKey // With a licenseKey you can: // * Publish your games & apps…
U13-Forward
  • 69,221
  • 14
  • 89
  • 114
0
votes
0 answers

In 'AppListView' are empty places where Loader should load Component with 'SimpleRow'

I have a code application written in QT/QML and V-PLAY on the github here: My problem: I want to use AppListView to display different elements (like Button or SwitchApp) in 'Ustawienia' (Settings) page dependent on elements in array: property var…
pyroxar
  • 1
  • 2
0
votes
1 answer

what does v-play config contains?

I started with v-play and create a new v-play project in Qt creater. First, I looked at the generated code and tried to understand it. I have a little idea of Qt and Qml and understand the generated main.cpp and Main.qml Then I looked at the .pro…
Morchul
  • 1,987
  • 1
  • 7
  • 21
0
votes
1 answer

V-Play TabControl to bottom in Android

I am trying to work with V-Play App QML control and to use very usual design pattern like tabs with pages. I started with a snippet from official doc page https://v-play.net/doc/vplayapps-tabcontrol/ Page { TabControl { NavigationItem { …
atlascoder
  • 2,746
  • 3
  • 26
  • 34
1
2