Parameters
The unique identifier for this view.
Assigns a unique identifier to this view.
.id(value: string | number): Component;
Text("Identified text")
.id("my-text-element")
Rectangle()
.fill(Color("blue"))
.id(12345)
Button("Button", () => {})
.id(`button-${index}`)