Reputation: 13131
In flutter, how to get height of a TextFormField.
Upvotes: 0
Views: 763
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