I have something like this:
<Stage>
<Layer>
<Rect />
<Text
ref={this.text}
draggable
align="center"
/>
</Layer>
</Stage>
The text is aligned in the center, but I need to align it vertically. How can I do this?
I know with plain canvas you can do textBaseline="center"
, but what's the equivalent for Konva?