article

Monday, August 9, 2021

SwiftUI Simple Custom View Modifier

SwiftUI Simple Custom View Modifier
SwiftUI Views can be changed by using modifiers. To apply the same style to a particular view a custom view modifier can be used.
ContentView.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//
//  ContentView.swift
//  swiftuidev
//
//  Created by Cairocoders
//
 
import SwiftUI
 
struct ContentView: View {
     
    var body: some View {
         
        NavigationView {
             VStack {
                HStack {
                    Button("One") {
                         
                    }
                    .modifier(CustomButton())
                     
                    Button("Two") {
 
                    }
                    .modifier(CustomButton(buttonForegroundColor: Color.red))
                     
                    Button("Three") {
                         
                    }
                    .modifier(CustomButton(buttonForegroundColor: Color.yellow))
                     
                }
                Spacer()
            }
            .navigationTitle("Custom View Modifiers")
        }
    }
}
 
struct CustomButton: ViewModifier {
    var buttonForegroundColor = Color.blue
     
    func body(content: Content) -> some View {
        return content
            .font(.largeTitle)
            .background(Color.black)
            .foregroundColor(buttonForegroundColor)
            .cornerRadius(8.0)
            .padding(.top, 50.0)
    }
}
 
struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}

Related Post