I'm targeting iOS18 and above, I'm trying to achieve this effect
The app displayed is Revolut, I want to create a similar effect but I can't seem to find a starting point I also need it to be in sync with a ScrollView which I can do once I get those tabs in that place
My problem is getting the tabs in that place (in the navigation stack), I tried with
NavigationStack {
ScrollView {}
.toolbar{
ToolbarItem(placement: .navigation) { // tried a different placements
ScrollView {
// buttons
}
}
}
}
In my case it actually starts from left to right which should be even easier but I can't seem to get the tabs there.
Any help would be appreciated even a link pointing somewhere that can get me started


VStackas the top-level container belowNavigationStack. TheVStackcan then contain the buttons and the outerScrollView.