Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
Is it possible to use QtQuick emulate HTML like QtQuick.Controls emulate Qt Widgets?
-
for example, translate
@<html>
<head>
<title>QtQuick.Html</title>
</head>
<body>Hello World!</body>
</html>
@to
@import QtQuick.HtmlHtml {
Head {
title: "QtQuick.Html"
}Body {
text: "Hello World"
}
}
@
-
There is no such module in Qt right now. But for sure, it can be created.
-
Awsome!