Post

Replies

Boosts

Views

Activity

Reply to Hiding chevron from list, SwiftUI
Since ZStack stacks views on top of each other you can take advantage of that! Place a Text view on top of NavigationLink and replace Text view in the body of NavigationLink with an EmptyView List(items, id: \.self) { item in ZStack(alignment: .leading) { Text(item.name) NavigationLink(destination: Text(item.name)) { EmptyView() } .opacity(0.0) } }
Topic: UI Frameworks SubTopic: SwiftUI
Jun ’24
Reply to Privacy Policy URL
You could add a link to you settings page. Link | Apple Docs Link("View Our Terms of Service", destination: URL(string: "https://www.example.com/TOS.html")!) Link("Visit Our Site", destination: URL(string: "https://www.example.com")!) .environment(\.openURL, OpenURLAction { url in print("Open \(url)") return .handled }) If you are using Subscriptions or In App Purchases you could also display this link on the product page.
Jun ’24
Reply to Hiding chevron from list, SwiftUI
Since ZStack stacks views on top of each other you can take advantage of that! Place a Text view on top of NavigationLink and replace Text view in the body of NavigationLink with an EmptyView List(items, id: \.self) { item in ZStack(alignment: .leading) { Text(item.name) NavigationLink(destination: Text(item.name)) { EmptyView() } .opacity(0.0) } }
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Jun ’24
Reply to Privacy Policy URL
You could add a link to you settings page. Link | Apple Docs Link("View Our Terms of Service", destination: URL(string: "https://www.example.com/TOS.html")!) Link("Visit Our Site", destination: URL(string: "https://www.example.com")!) .environment(\.openURL, OpenURLAction { url in print("Open \(url)") return .handled }) If you are using Subscriptions or In App Purchases you could also display this link on the product page.
Replies
Boosts
Views
Activity
Jun ’24
Reply to App stuck "In Review" for over a week
Have you tried removing it and re submitting it? 🤔
Replies
Boosts
Views
Activity
Jun ’24