Great tutorial, thank you! If anybody stumbles on the same issue, in my case to make the capsule animation between tabs work, I had to wrap the button action in a withAnimation block: Button { withAnimation { tabSelection = index + 1 } }
Great video!! Extremely helpful!! Although I was trying to add a different photo to each page, and I'm not quite sure how to do it. I have tried doing it using TabView but it gets rid of all the icons. Any suggestions on how I can fix that?
Great video! , if we using custom tabview how we can persist the navigation state because if i switched the bottom tabs the navigation state gets reset
This is really great, using it for a project. However as overlay, I cant hide the customtabbar when I navigate into a nested View. Example: HomeView() contains a NavigationView and several different navigation Links In my MainView() I have a Tabview than includes HomeView and other views. When I select the Home tab in the tabbar, and then press a navigationLink, I enter a nested View with the overlay (Customtabbar) still still visible.
Sorry for the delay, but hopefully this live stream answers your question. Live Coding: Hide Custom TabView in SwiftUI th-cam.com/users/livebGSp2kRsawQ?feature=share
Hi, updating xcode to 14.3 i receive the log "[PipelineLibrary] Mapping the pipeline data cache failed, errno22" when adding the MapView in the viewcontroller. I Receive this error only when i test on a real device not in the simulator. Can i fix it ? Is a common problem? Thanks for the time I appreciate so much.
I haven’t run into this problem, so I’m not sure how I would fix it. Probably check out the Apple Developer forms or stack overflow. See if it’s something others have run into.
Great tutorial, thank you!
If anybody stumbles on the same issue, in my case to make the capsule animation between tabs work, I had to wrap the button action in a withAnimation block:
Button {
withAnimation {
tabSelection = index + 1
}
}
Nice! Thank you for sharing.
Subscribed. Will watch this in a few hours in the morning.
Thank you. Hope it is helpful.
Great tutorial thanks. Love you teaching style.
Thank you.
Thanks a lot! Nice video and I liked the way you explain without any haste. Most videos from others are as if they are always in a hurry :)
Thank you.
Thanks a lot! Nice video and I liked the way you explain.
Thank you so much. Hopefully I can be informative and do some live streams during the week of WWDC23.
Custom tabs for sure.
If you like custom tab views this takes a slightly different approach.
th-cam.com/video/gJyjpyBWAEo/w-d-xo.html
Great video!! Extremely helpful!!
Although I was trying to add a different photo to each page, and I'm not quite sure how to do it. I have tried doing it using TabView but it gets rid of all the icons. Any suggestions on how I can fix that?
Just make a new SwiftUI View and add it to the ContentView inside the TabView like this:
TabContentViewOne() // Add a better View name here.
.tag(1)
thanks for video 😍
You’re welcome.
Audio is sounding better! Did you change up your mic placement, or doing some editing in post?
Changed my mic position.
Nice tutorial! Thank you! I have a small question: what does .tag() mean and work in your code?
It’s a unique identifier for the tab view.
@@a_swiftly_tilting_planetgood
Great video! , if we using custom tabview how we can persist the navigation state because if i switched the bottom tabs the navigation state gets reset
Good question, I'd have to look at the code again and think about it.
This is really great, using it for a project. However as overlay, I cant hide the customtabbar when I navigate into a nested View.
Example: HomeView() contains a NavigationView and several different navigation Links
In my MainView() I have a Tabview than includes HomeView and other views. When I select the Home tab in the tabbar, and then press a navigationLink, I enter a nested View with the overlay (Customtabbar) still still visible.
Would really appreciate feedback/ solutions on how I can hide the overlay of the tabview as well. Thanks!
Sorry for the delay, but hopefully this live stream answers your question.
Live Coding: Hide Custom TabView in SwiftUI
th-cam.com/users/livebGSp2kRsawQ?feature=share
Can I add 6 items on the tab bar??
Building out a custom tab bar would allow you to put as many that can fit on screen, or if you really wanted to you could make a scrolling tab bar.
Hi, updating xcode to 14.3 i receive the log "[PipelineLibrary] Mapping the pipeline data cache failed, errno22" when adding the MapView in the viewcontroller. I Receive this error only when i test on a real device not in the simulator. Can i fix it ? Is a common problem? Thanks for the time I appreciate so much.
I haven’t run into this problem, so I’m not sure how I would fix it. Probably check out the Apple Developer forms or stack overflow. See if it’s something others have run into.