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?

Androidアプリ開発 備忘録

Last updated at Posted at 2024-12-08

Jetpack Compose 備忘録

image.png
上記画面に対して上下左右まとめて統一した間隔を設定したいとき

 modifier = modifier.padding(4.dp)

image.png
こうすることで等間隔で設定が行える
下記のように上下同士で統一させ、左右同士で統一させる場合は、"vertical" "horizontal"で値を指定する。

 modifire = modifier.padding(vertical = 4.dp, horizontal = 50.dp)

image.png

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?