Libgdx TextField set size

I’m trying to set the size of a TextField, but it doesn’t seem to change the size.
I’d also like to know how to increase the font size inside the TextField.

Here is the code I’m using:


TextField textField = new TextField("", skin");
textField.setSize(100, 100);
textField.setPosition(10, 390);
textField.pack();

stage.addActor(textField);

Thanks!