How to make menu in SwiftUI?

1 min read

@State private var selectedView: LayoutOption = .list var body: some View { Menu(content: { ControlGroup { Button(action: { // Code }) { Image(systemName: "pin.fill")…

SwiftUI Button With Customized Style

2 min read

// // ContentView.swift // Buttons // // Created by WilliamJiamin on 2024/6/20. // // //You can check more on Button at //https://developer.apple.com/documentation/swiftui/button import SwiftUI…