Kyaw Tun
Kyaw Tun

Reputation: 13131

How to get height of a TextFormField

In flutter, how to get height of a TextFormField.

Upvotes: 0

Views: 763

Answers (1)

Rémi Rousselet
Rémi Rousselet

Reputation: 277057

You can get the size of any widgets using context.size. You can get a specific widget's context by setting a GlobalKey on the desired widget.

Upvotes: 1

Related Questions