Label property for perspective Text Field component?

I may be missing something here, but It seems like there should be a "Label" property on some of the perspective input components such as Text Field like there is on others such as Checkbox and Toggle Switch. I can obviously add a label component to describe the text field, but I would much prefer not to add a separate component just for a label. Label seems to be so well implemented in say the Checkbox component (though there the property is called "text"), and it allows 4 "textPosition" selections to boot.

No, you haven't missed anything. It's not there.
You can make your own "component" quite easily by creating a view with the Label and Text Field components and then use the Embedded View component. You may find that you need to pass parameters in and out.

Try it and call back if you get stuck.

Thanks. I'll give it a go. I had already considered it, but it seemed sort of "excessive" (a view as opposed to just a property) so I was kinda fishing for other ideas. Thanks again!

It is. Excess nesting of views has negative performance implications, too. Wrapping a label and a field in a flex row and copying that around (for non-dynamic stuff) is more performant.

Thanks. I'll try that. What I have been doing before now is creating a coordinate container that contained a label and text component. This at least helped with organization within the project browser, but is still a bit messy, and has more "reference levels" than should be necessary.