Here
TextField.TextFieldStyle textFieldStyle = skin.get(TextField.TextFieldStyle.class);
textFieldStyle.font.scale(1.6f);
I can't find font.scale();
my code
username = new TextField("", skin);
username.setMessageText("");
You need to get the data from the font first, then you can set the scale. But the recommended way is to create different sizes of the same font.
font.getData().setScale(1.0f);
Here is a link to same question Changing font size in skin
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With