4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

JetpackCompose背景にグラデーションを設定する方法

Posted at

今回は、JetpackComposeで背景にグラデーションを設定する方法です。
グラデーションを使用する機会があったので、メモです。

Gradation.kt
@Composable
fun Gradation(
    modifier: Modifier = Modifier
) {
    Row(
        modifier = modifier
            .fillMaxSize()
            .background(
                brush = Brush.verticalGradient(
                    colors = listOf(
                        Color.White,
                        Color.Black
                    )
                )
            )
    )
    {
        //TODO 表示したいView
    }
}

backgroundbrushを設定するとグラデーションを表示することができます。

スクリーンショット 2023-02-26 12.33.03.png

4
2
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
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?