Closed1
Jetpack ComposeのTextのincludeFontPaddingの動向
簡単なメモ
概要
- ComposeのTextでincludeFontPaddingをfalseにしたい時がたまにある
- 特に日本語を扱う場合
- includeFontPaddingはComposeのバージョンによって扱いが異なるので簡単にまとめる
includeFontPaddingの動向
- 2023年6月におけるCompose BOMで対応しているandroidx.compose.uiのバージョンである1.4.3ではincludeFontPaddingはdepricated
- androidx.compose.uiのVersion 1.5.0-beta01でincludeFontPaddingがundeprecatedに
- androidx.compose.uiのVersion 1.6.0-alpha01でincludeFontPaddingのデフォルト値がfalseに
まとめ
- ComposeのTextのincludeFontPaddingは非推奨のまま使い続けることができる
補足
- ComposeのTextでフォントのパディングを扱いたい場合はLineHeightStyle APIも利用できる
- Fixing Font Padding in Compose Textの記事にほとんど全てがまとまっている
このスクラップは2023/07/25にクローズされました