-
Type:
Enhancement
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: None
-
Component/s: javafx
Writing this code all the time:
var i = ImageView { image: Image { url: "blah" } }
is both tedious and clutters the code. Would be nicer to have:
var i = ImageView.image("blah")
This is similar in style to the Font.font creation functions.
var i = ImageView { image: Image { url: "blah" } }
is both tedious and clutters the code. Would be nicer to have:
var i = ImageView.image("blah")
This is similar in style to the Font.font creation functions.