Parameters
The tag value to assign to this view. Can be any type.
Assigns a tag value to this view for identification purposes.
.tag(value: any): Component;
Text("Tagged text")
.tag("important")
Button("Action", () => {})
.tag({ category: "navigation", priority: "high" })
Image("photo.jpg")
.tag(42)