Press "Enter" to skip to content

【SwiftUI】カプセル型のボタン

ButtonbackgroundCapsule を指定します。あとは程よく Padding を入れましょう。

Button(action: {}, label: {
    Text("ログインする")
        .foregroundColor(.blue)
        .padding(.vertical, 10)
        .padding(.horizontal)
        .background(
            Capsule()
                .stroke(Color.blue)
        )
})

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です