Closed Jinsujin closed 1 year ago
π Document
Buttonμ μμ±νλ λ€μν λ°©λ²λ€
(default)λ¬Έμμ΄μ μ λ ₯νμ¬ Label μ μμ±νλ λ²νΌ
Button("λ²νΌμ νμ΄ν") { // λ²νΌμ λλ μλ λμν Action μ μ }
Custom Label μ νμνλ λ²νΌ μμ±
Button { // λ²νΌμ λλ μλ λμν Action μ μ } label: { // λ²νΌμ μκΉμ μ μ }
Custom Label μ νμνλ roleμ κ°μ§ λ²νΌ μμ±
Button("Delete", role: .desctructive) { // λ²νΌμ λλ μλ λμν Action μ μ }
λΌμ΄λ μ²λ¦¬λ λ²νΌ λ§λ€κΈ°
Button { print("Hello world!") } label: { Text("Touch Me") .frame(width: 200, height: 40, alignment: .center) .foregroundColor(.white) .background(.purple) .cornerRadius(20) }
μ΄λ―Έμ§ λ²νΌ
Button { print("hello") } label: { Image(systemName: "folder") .resizable() // μ΄λ―Έμ§ μ¬μ΄μ¦λ₯Ό νλ μ ν¬κΈ°μ λ§μΆλ€. .frame(width: 80, height: 60, alignment: .center) }
ν μ€νΈμ μ΄λ―Έμ§λ₯Ό ν¨κ» μ¬μ©νκΈ°
Button { print("hello") } label: { HStack { Image(systemName: "folder") .resizable() .frame(width: 80, height: 60, alignment: .center) Text("Save File") .foregroundColor(.brown) } }
π Document
(default)λ¬Έμμ΄μ μ λ ₯νμ¬ Label μ μμ±νλ λ²νΌ
Custom Label μ νμνλ λ²νΌ μμ±
Custom Label μ νμνλ roleμ κ°μ§ λ²νΌ μμ±
μμ
λΌμ΄λ μ²λ¦¬λ λ²νΌ λ§λ€κΈ°
μ΄λ―Έμ§ λ²νΌ
ν μ€νΈμ μ΄λ―Έμ§λ₯Ό ν¨κ» μ¬μ©νκΈ°