Post

Replies

Boosts

Views

Activity

Reply to SwiftUI's SidebarListStyle breaks color in iOS 14.2 beta 2
I am also seeing some anomalies in Xcode 13.Beta3 // Renders image red struct ListSingleView: View {   var body: some View {     List {       Label("SINGLE", systemImage: "map").listItemTint(.red)     }   } } // Renders image default struct ListRangeView: View {   var body: some View {     List(0 ..< 3) { _ in       Label("RANGE", systemImage: "map").listItemTint(.red)     }   } }
Jul ’21
Reply to SwiftUI shadow - spread parameter
Not sure if this is what your after, but it might help ... struct ContentView: View {   var body: some View {     VStack(spacing: 100) {       ShadowView(color: .red)         .shadow(color: .black, radius: 10, x: 0.0, y: -5.0)       ShadowView(color: .green)         .shadow(color: .black, radius: 10, x: 0.0, y: 0.0)         .shadow(color: .black, radius: 10, x: 0.0, y: 0.0)       ShadowView(color: .blue)         .shadow(color: .black, radius: 30, x: 0.0, y: 20.0)     }   } } struct ShadowView: View {   var color: Color   var body: some View {     RoundedRectangle(cornerRadius: 25.0)       .fill(color)       .frame(width: 200, height: 100)   } }
Mar ’21
Reply to SF Symbols 2 crashes
The solution would seem to be to completely delete the application and re-install. I suspect there might have been something hanging around from the previous SF Symbols 2 Beta install. Give that a try its seems to have worked for me.
Sep ’20