QML TableView on Android device
Unsolved
QML and Qt Quick
-
Hello @Yashpal,
I have this problem with this code :
import QtQuick 2.7 import QtQuick.Controls 1.4 import QtQuick.Layouts 1.1 import QtQuick.Window 2.2 ApplicationWindow { visible: true width: Screen.width < 1280 ? Screen.width : 1280 height: Screen.height < 800 ? Screen.heght : 800 TableView { anchors.fill: parent TableViewColumn { title: "Col1" } TableViewColumn { title: "Col2" } TableViewColumn { title: "Col3" } TableViewColumn { title: "Col4" } TableViewColumn { title: "Col5" } TableViewColumn { title: "Col16" } TableViewColumn { title: "Col7" } TableViewColumn { title: "Col8" } TableViewColumn { title: "Col9" } TableViewColumn { title: "Col10" } } }