LoginSignup
1
0

JetpackCompose TextViewの文字間隔を変更する

Posted at

JetpackComposeで文字と文字の間のスペースを変更しようと思います。
あまり使用しないので、忘れてしまう前に残しておきます。

.kt
Text(
    modifier = Modifier.padding(top = 10.dp),
    style = androidx.compose.material3.Typography().headlineLarge,
    letterSpacing = 24.sp,
    text = "文字間隔"
)

Screenshot_20230602_172607.png

letterSpacingを設定してあげると変更できるので必要がある際は試してみてください。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0