I create default "empty" qml app in the QtCreator. Then I just add the button and run it:
import QtQuick 2.11
import QtQuick.Window 2.11
import QtQuick.Controls 2.4
Window {
visible: true
width: 640
height: 480
title: qsTr("Hello World")
Button {
text: "Button1"
}
}
But the button looks fantastically ugly:
What I should to do (turn on or add or smth) to bring it look to more attractive?
For example, even the default Win10 view will suit me.
Answer addition: Its sad to me but there are no way to make the QtQuick app looks better than to implement all of the comtrols by self. The answer below explain how to do that.