Getting system's default font size in qml
Unsolved
QML and Qt Quick
-
I have noticed that macOS and linux/windows handle fontsizes differently. E.g. 11pt is perfectly fine on linux and windows but too small on macOS, thus I was planning to base my font sizes on the default system font size. I know that you can get it via
QFontDatabase::systemFont(QFontDatabase::GeneralFont);
in c++, would there be a similar way to get this in qml?