5
4

More than 1 year has passed since last update.

【SwiftUI】Viewに丸角背景を追加する

Posted at

はじめに

Viewの背景に色をつける方法は様々あります。
ただ、どれがベストな方法かわからないのでコメントで教えていただきたいです

作りたいUI

Simulator Screenshot - iPhone 14 Pro - 2023-08-04 at 22.27.43.png

実装

良さそう

Text("テキスト")
    .frame(width: 120, height: 60)
    .background(Color.cyan, in: RoundedRectangle(cornerRadius: 10))

これも良さそう

Text("テキスト")
    .frame(width: 120, height: 60)
    .background(Color.cyan)
    .cornerRadius(10)

たぶん良くない

ZStack {
    RoundedRectangle(cornerRadius: 10)
        .frame(width: 120, height: 60)
        .foregroundStyle(.cyan)
    
    Text("テキスト")
}

これも良くさなそう

RoundedRectangle(cornerRadius: 10)
    .frame(width: 120, height: 60)
    .foregroundStyle(.cyan)
    .overlay(Text("テキスト"))

おわり

これは好き嫌いの問題?

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