skip to Main Content

Xcode – SwiftUI NavigationLink for iOS 14.5 not working

I had the following code in Xcode 12.4 that worked perfectly ScrollView(.horizontal, showsIndicators: false) { LazyHGrid(rows: rows, spacing: 0) { HStack { if (type == "Quiz") { NavigationLink(destination: Quiz(id: quiz.id)) { VStack(alignment: .leading) { Text("Quiz") .font(.headline) .foregroundColor(.white) .padding(.top, 8) .padding(.leading)…

VIEW QUESTION

Get xcodeproj and ruby 2.7.0 into the PATH

I would like to use ruby 2.7.0 and xcodeproj to get Nativescript work on macOS (version Big Sur 11.2.3). I did a clear install on my MacBook Air 13" 2014, following this links' instructions: https://github.com/NativeScript/docs-new/blob/develop/environment-setup.md After all these steps NativeScript…

VIEW QUESTION
Back To Top
Search