help in setting stylesheet for Links
Solved
General and Desktop
-
You can create a javascript file to import your themes in qml but this approach goes against logic of qml...
import "myThemes.js" as Themes ... Item { Component.onComplete: Themes.loadThemeFromNet("http://myServer.com/theme.x"); Rectangle { color : Themes[Themes.theme].color
myThemes.js
var theme = "themeDefault" var themes = { "themeDefault" : { "color": "red" }} function loadThemeFromNet( url) { ... .. get file from net .. .. parce file .. .. set object of theme from net in var themes .. apply .. theme = "newTheme" }
but this way is very bad ....
if you want get to stylesheet from internet you need first get the file from internet and parce the file and transform in some logic to apply the style ... is one idea ..
qml is more to local files and pre-compiled files ...