All Questions
5 questions
0
votes
2
answers
187
views
How to keep NavigationLink active while closing or switching to another app in SwiftUI
I have a problem when navigating to the details page, but when I try to open another application or close the application, the navigation link that was initially active suddenly closes by itself. ...
7
votes
2
answers
4k
views
Swiftui: align selected text in picker to leading edge
Currently I've a picker included in a Section included in a Form what I'm trying to reach is to align the selected value of the picker to the leading in both iOS 13 and 14, I've tried many solutions ...
2
votes
1
answer
320
views
swiftUI - can't close modal screen after force screen to Landscape
I open a full modal view
.fullScreenCover(isPresented: self.$isPresentedPlayerView){
NavigationLazyView((MainPlayerView(playerVM: PlayerVM(asset: self.mediaVM.asset), showModal: self.$...
1
vote
3
answers
3k
views
SwiftUI Navigation bar items disappear on iOS 14
Discovered in my app that navigation bar items in some views disappear when orientation of the device changes. This seems to occur only in a view that is opened using NavigationLink, on main view ...
29
votes
1
answer
7k
views
SwiftUI iOS14 - NavigationView + List - Won't fill space
I'm having an issues with a List inside a NavigationView since iOS 14 update.
Here is a simple breakdown of the code - I've striped everything that doesn't show the issue
struct ContentView: View {
...