Any news here ? 🙏
Post
Replies
Boosts
Views
Activity
Hello @Jordan,
Mmh, I'll try to think my feature differently. Maybe I need a random part only when the user doesn't interact, and for other case (like when he likes an item), I need to save items I want to display next like you said.
Thanks for your response,
Alexandre
Update :
Something exist on iOS 16+ with SwiftUI : you can use the modifier .toolbar(.hidden, for: .tabBar).
Here's an example :
struct ContentView: View {
var body: some View {
TabView {
view1
.tabItem { Label("View 1", systemImage: "house") }
view2
.tabItem { Label("View 2", systemImage: "square.and.pencil") }
}
}
var view1: some View {
NavigationStack {
NavigationLink("Push") {
Text("View 2!")
.toolbar(.hidden, for: .tabBar)
}
}
}
var view2: some View {
NavigationStack {
Text("Another view")
}
}
}
It works, but it's not perfect :
the tab view disappear without any animation (with UIKit the tab view was going with the view who disappear)
wen you go back to the previous view, the tab view come back after the view appeared (who move all of your content to the top)
In video :
Hello everyone!
It seems that this issue is fixed by Apple from iOS 16.4!
At least, the code I posted previously is now working fine and the bug is not reproducible anymore.
Hi @baldursson 👋
I tried to set .textContentType(.username) on my email text field, but the behavior is the same... 😢
Hi @southbayj,
Thanks for you answer.
I tried to do that, but because you have only one NavigationView, you also have only one title.
So if you set a title to your NavigationVIew, you can't edit it anymore.
To fix this, I tried to use a @State variable, and at first it was working, but then I have some UI glitch with the NavigationView (like in my GIF).
So it was not a solution for me...