barryalan2633
barryalan2633

Reputation: 840

How do you change TextField value fontSize?

I want to change the font size of my textfield which is usually done with fontSize attribute in a text composable, however textfield composable does not come with that attribute, how do I change the font size then?

Upvotes: 0

Views: 707

Answers (1)

Richard Onslow Roper
Richard Onslow Roper

Reputation: 6817

TextField(
  textStyle = TextStyle(fontSize = 45.sp)
)

Upvotes: 1

Related Questions