0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

13. 最終仕上げ

ボタンをアイコンで置き換える

  • ボタンをアイコンにしようするには、material-icons-extendedアーティファクトを使用する
  • app/build.gradle.kts(:app)ファイルの依存関係に次の行を追加
dependencies {
// 他の依存関係
implementation("androidx.compose.material:material-icons-extended")
}
  • MainActivity.ktに次の行を追加する
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.ExpandLess
import androidx.compose.material.icons.filled.ExpandMore
import androidx.compose.material3.Icon
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?