The current Fuse syntax for Data-Binding is:
Panel ux:Name=“panel1” Width=“100”
DataBinding Target=“panel1.Width” Key=“panelWidth”
I think the syntax would be more correct / consistent
if we replace the keyword ‘Target’ with ‘Key’ and the existing ‘Key’ with the ‘Value’ ?
Panel ux:Name=“panel1” Width=“100”
DataBinding Key=“panel1.Width” Value=“panelWidth”