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.
Questions tagged [felgo]
16 questions
3
votes
1 answer
Using Nested JSON as section.property in listView QML
I am creating a listView where my delegate and it's information comes from JSON - My issue is I am trying to set the section.property from a nested area within the JSON. The nested data will be dynamic so I need to work in a way that adapts to each…

Ldweller
- 327
- 2
- 16
2
votes
1 answer
How to set custom Image on NavigationItem of Felgo/QML
I am using qt, and my navigation item need to set custom image from the device, How to set Image on NavigationItem?
App {
Navigation {
NavigationItem {
title: "Main"
//I need set Image on this item, kindly…

FATHIMA NOURIN T R
- 21
- 2
1
vote
0 answers
How to pass two arguments to AppListView separator
I would like to display AppListView with separators of custom delegates. Separators should have 2 properties - color defined as string and text also defined as a string - both coming from my model as roles and they always come in pairs so for…

Tom Sevet
- 25
- 6
1
vote
1 answer
How to use Felgo with PySide2
I am wanting to use the Felgo tool kit to extend Qt's qml types when writing a python application but keep running into issues and haven't had much luck getting it up and running. I am curious if others have been able to successfully use the Felgo…

Jeff B
- 33
- 4
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
0
votes
1 answer
QML Felgo - Pass parameter to previuos page when popping navigationStack (or Stackview)
I have a QML (Felgo) application and I would like to pass parameter to the previous page of the stack in navigationStack when popping. I would like to populate "myVar" property of Page2.qml (which is '0' by default) with the value '1' passed from…

Lam
- 39
- 7
0
votes
1 answer
Why does Qt Webassembly app start too long?
I am checking the examples (QtQuickControls 2.0) with QT Webassembly (6.3), and it takes too long to load the app in webbrowser over LAN, especially on smartphones compared to the laptop.
Too slow is around 40 seconds.
Most of the time as I can see…

rightaway717
- 2,631
- 3
- 29
- 43
0
votes
1 answer
QML – how to go back to previous page (felgo)
I have an application with several pages. One of them is a settings page where the user can select various settings. There are various buttons on the pages with which I can open the different pages.
Currently I always switch between the pages…

learningToCode
- 11
- 3
0
votes
1 answer
QML Firebase startAt returns undefined
I am working on a 'typeahead’ type function which will check my Database with the current typed text to provide search suggestions of users using Felgo.
Here is the link for Felgos Firebase documentation
As to not search every entry I am looking to…

Ldweller
- 327
- 2
- 16
0
votes
1 answer
Prevent fonts and sizes to change on deployment in Qt/Felgo
I recently distributed my app made with Felgo (and Qt) to Android using Microsoft App Store. Until now, I have been testing using a Felgo live client. However, though everything else works, one big thing I noticed is that all the fonts and font…

arjun30
- 107
- 1
- 8
0
votes
2 answers
Felgo live custom module not installed error
I have an app based on Felgo.
I added an implementation of some object via C++. It works ok than using Desktop client in Felgo Server, but when i try to use Felgo Live or connect Mobile device, i have an error:
module "com.company.name" is not…

mylibh
- 153
- 9
0
votes
2 answers
The element size in the Felgo simulator is quite different from the display size on the real machine
I found that the size of the element displayed on the Felgo Live Client is very different from the size displayed on the real device, which is much larger on the Felgo Live Client.The key is that the display ratios on both sides are not the…

senlinmu
- 141
- 2
- 11
0
votes
0 answers
Restrict/change angle of body in Felgo
I have created a body in Felgo that, as a result of physical interaction with other objects, flips over. I want to prevent the body from flipping over by limiting angle +/- 60' from horizontal. Or, I would be happy to rotate the body (restore…

TSG
- 4,242
- 9
- 61
- 121
0
votes
2 answers
What is the EASIEST/QUICKIEST way to generate an android APK using Felgo Qt Creator?
There is no such android options and menus here: https://stackoverflow.com/a/28292048/5648245 :(
Duplicate? Issues to build apk with qt creator why there is no answer there after one year!?
At menu "Tools/Options/Kits" the only auto detected is…

VeganEye
- 66
- 7
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